body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #181818;
  color: #f5f5f5;
  min-height: 100vh;
  padding-top: 70px;
}

header.hero {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}
.hero-content {
  text-align: center;
  z-index: 2;
}
.logo-svg {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 8px #0008);
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin: 0 0 0.5rem 0;
}
.animated-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1) forwards;
}
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 0;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInUp 1.2s 0.7s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(34,34,34,0.97);
  box-shadow: 0 2px 12px #0003;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, background 0.2s;
  padding-left: 2.5rem;
  padding-right: 0;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 1rem 0 1rem 0;
}
.main-nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.main-nav a:hover {
  color: #fff;
  text-shadow: 0 2px 8px #fff2;
}
.reserva-btn {
  margin-left: auto;
  margin-right: 2.5rem;
  padding: 0.7rem 1.4rem;
  background: #fff;
  color: #181818;
  border: none;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #0002;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.reserva-btn:hover {
  background: #222;
  color: #fff;
  box-shadow: 0 4px 16px #0004;
}

.main-nav.sticky {
  box-shadow: 0 6px 24px #0006;
  background: rgba(34,34,34,0.99);
}

section {
  padding: 3rem 1.5rem 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.servicios-lista {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.servicio-card {
  background: #232323;
  border-radius: 16px;
  box-shadow: 0 2px 12px #0003;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 180px;
  flex: 1 1 220px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.servicio-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px #0005;
}
.servicio-card svg {
  margin-bottom: 1rem;
}
.servicio-card h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.2rem;
  color: #fff;
}
.servicio-card p {
  color: #ccc;
  font-size: 1.1rem;
}

.servicio-precio {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin: 0.7rem 0 1.1rem 0;
  letter-spacing: 1px;
}
.servicio-reserva-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: #181818;
  border: none;
  border-radius: 22px;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.7rem 0;
  margin-top: 0.2rem;
  box-shadow: 0 2px 8px #0002;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.servicio-reserva-btn:hover {
  background: #222;
  color: #fff;
  box-shadow: 0 4px 16px #0004;
  transform: translateY(-2px) scale(1.03);
}

.barberos-lista {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.barbero-card {
  background: #232323;
  border-radius: 16px;
  box-shadow: 0 2px 12px #0003;
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 180px;
  flex: 1 1 220px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.barbero-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px #0005;
}
.barbero-card svg {
  margin-bottom: 1rem;
}
.barbero-card h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.2rem;
  color: #fff;
}
.barbero-card p {
  color: #ccc;
  font-size: 1.1rem;
}

.vape-cuts {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 2px 12px #0002;
  margin-bottom: 2rem;
}
.vape-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.vape-info svg {
  flex-shrink: 0;
}
.vape-info p {
  color: #ccc;
  font-size: 1.1rem;
  margin: 0;
}

.testimonios-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.testimonio-card {
  background: #232323;
  border-radius: 14px;
  box-shadow: 0 2px 8px #0002;
  padding: 1.5rem 1.2rem;
  min-width: 200px;
  max-width: 260px;
  flex: 1 1 220px;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonio-card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px #0005;
}
.testimonio-card span {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: block;
  margin: 0.5rem 0 0.2rem 0;
}
.testimonio-card small {
  color: #aaa;
}

.contacto-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.contacto-info > div {
  flex: 1 1 260px;
}
.mapa iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0002;
}

footer.footer {
  background: #111;
  color: #ccc;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
  border-top: 1px solid #222;
}
.copyright p {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  color: #aaa;
}
.footer-frase p {
  font-size: 1.1rem;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

.logo-img {
  display: block;
  margin: 0 auto 1.5rem auto;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px #0006;
  background: #222;
}

.modal-reserva {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.modal-reserva-content {
  background: #232323;
  border-radius: 18px;
  box-shadow: 0 8px 32px #0008;
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 320px;
  max-width: 95vw;
  width: 100%;
  max-width: 400px;
  position: relative;
  color: #fff;
  animation: modalFadeIn 0.4s cubic-bezier(.77,0,.18,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.modal-reserva-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
}
.modal-reserva-close:hover {
  opacity: 1;
}
#formReserva {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
#formReserva label {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.1rem;
}
#formReserva input,
#formReserva select {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #444;
  background: #181818;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  outline: none;
  transition: border 0.2s;
}
#formReserva input:focus,
#formReserva select:focus {
  border: 1.5px solid #fff;
}
.enviar-reserva-btn {
  background: #fff;
  color: #181818;
  border: none;
  border-radius: 22px;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.7rem 0;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px #0002;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.enviar-reserva-btn:hover {
  background: #222;
  color: #fff;
  box-shadow: 0 4px 16px #0004;
  transform: translateY(-2px) scale(1.03);
}
.reserva-feedback {
  margin-top: 0.7rem;
  font-size: 1rem;
  color: #6ee7b7;
  min-height: 1.2em;
  text-align: center;
}
@media (max-width: 600px) {
  .modal-reserva-content {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    min-width: 0;
    max-width: 98vw;
  }
}

@media (max-width: 900px) {
  .servicios-lista, .barberos-lista, .testimonios-lista, .contacto-info {
    flex-direction: column;
    align-items: center;
  }
  .vape-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav ul {
    gap: 1rem;
  }
  .reserva-btn {
    margin-right: 1rem;
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }
  .main-nav {
    padding-left: 1rem;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .servicio-card, .barbero-card, .testimonio-card {
    min-width: 140px;
    padding: 1.2rem 0.7rem;
  }
  .main-nav ul {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.7rem 0 0.7rem 0;
  }
  .reserva-btn {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
  }
  .main-nav {
    padding-left: 0.5rem;
  }
} 