* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
}

/* Hero principal */
.hero-header {
  position: relative;
  width: 100%;
  height: 100svh; /* Mejora para móviles */
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  color: white;
}

/* Logo */
.top-image-container {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}


.top-image-container img {
  max-width: 180px;
  height: auto;
}

/* Navegación */
.navbar-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.navbar-left a {
  margin-right: 20px;
  text-decoration: none;
  color: #e84980;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
  padding: 10px 0;
}

.navbar-left a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #e84980;
  transition: transform 0.3s ease;
}

.navbar-left a:hover {
  color: #383737;
}

.navbar-left a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar-right span {
  font-size: 16px;
  color: #383737;
}

.navbar-right button {
  background-color: #ffffff;
  border: 2px solid #e84980;
  padding: 10px 20px;
  color: #e84980;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: 'Bebas Neue', sans-serif;
  width: 150px;
}

.navbar-right button:hover {
  background-color: #e84980;
  color: #383737;
  border: #ffffff 2px solid;
}

/* numero telefonico */
.telefono {
  font-size: 20px;
  vertical-align: middle;
  margin-left: 5px;
  color: #383737;
}

/* Texto centrado en medio */
.hero-main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #383737;
  max-width: 800px;
  padding: 20px;
  z-index: 1;
}

.hero-main-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero-main-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero-main-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Ubicación */
.ubicacion-section {
  padding: 40px 20px;
  background-color: #fff;
  color: #383737;
  text-align: center;
}

.ubicacion-section h2 {
  margin-bottom: 10px;
}

.boton-maps {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f3af07;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin: 15px 0;
}

.ubicacion-section iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: none;
  margin: 20px 0;
}

.ubicacion-section p.ubicacion {
  font-size: 1.2em;
  font-style: italic;
  color: #555;
}

/* Fondo oscuro semitransparente */

/* beneficios  */
.beneficios-masajes {
  padding: 60px 20px;
  background-color: #f4f4f4;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.beneficios-masajes h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color:  #383737;
  text-align: center;
}

.beneficios-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.beneficio {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #FFDCDC ;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 20px;
}

/* Alternar la posición para variedad visual */
.beneficio:nth-child(even) {
  flex-direction: row-reverse;
}

.beneficio:hover img {
  transform: scale(1.05);
}

.beneficio img {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

.beneficio-texto {
  width: 50%;
  padding: 0 30px;
  text-align: left;
}

.beneficio h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #007bff;
}

.beneficio p {
  font-size: 16px;
  color: #383737;
}
/* seccion de redes sociales e informacion del sitio */

.footer {
  background-color: #383737; 
  color: #ffffff; 
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.footer-info h3 {
  font-size: 24px;
  color: #f3af07; 
  margin-bottom: 10px;
}

.footer-info p {
  font-size: 16px;
  color: #ffffff;
}

.footer-social h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e84980; 
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
  color: #ffffff;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #e84980; 
}

.footer-copy {
  margin-top: 30px;
  font-size: 14px;
  color: #f3af07;
}
.whatsapp-float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
}
/* === MEDIA QUERIES RESPONSIVE === */
/* Desde 1024px hacia abajo */
@media (max-width: 1024px) {
  .navbar-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 8px;
  }

  .navbar-left,
  .navbar-right {
    gap: 8px;
    width: auto;
    align-items: center;
  }

  .telefono,
  .navbar-right button {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .top-image-container {
    display: none;
  }

  .hero-main-text h1 {
    font-size: 1.8rem;
  }

  .hero-main-text h2 {
    font-size: 1.3rem;
  }

  .hero-main-text p {
    font-size: 1rem;
  }

  /* BENEFICIOS - Se fuerza layout en columna desde aquí */
  .beneficio {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

   .beneficio,
  .beneficio:nth-child(even) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .beneficio img,
  .beneficio-texto {
    width: 100%;
    padding: 10px;
  }

  .beneficio h3 {
    font-size: 20px;
  }

  .beneficio p {
    font-size: 14px;
  }
}

/* Desde 768px hacia abajo */
@media (max-width: 768px) {
  .hero-main-text h1 {
    font-size: 1.6rem;
  }

  .hero-main-text h2 {
    font-size: 1.1rem;
  }

  .hero-main-text p {
    font-size: 0.9rem;
  }

  iframe {
    height: 280px;
  }

  .navbar-content {
    padding: 8px 16px;
  }

  .beneficio h3 {
    font-size: 18px;
  }

  .beneficio p {
    font-size: 13.5px;
  }

  .beneficios-masajes h2 {
    font-size: 24px;
  }
}

/* Desde 600px hacia abajo */
@media (max-width: 600px) {
  .material-symbols-outlined {
    font-size: 26px;
  }

  .navbar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; /* más separación entre bloques */
    padding: 12px;
  }

  .navbar-left,
  .navbar-right {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 12px; /* más separación entre enlaces y botón */
  }

  .navbar-left a {
  font-size: 15px;
  padding: 10px 0;
  line-height: 1.5;
  margin-bottom: 6px; /* Espacio adicional entre enlaces */
}

  .navbar-right {
    align-items: flex-start;
  }

  .navbar-right button {
    font-size: 0.9rem;
    width: 100%;
    padding: 10px 0;
  }

  .telefono {
    font-size: 0.95rem;
    margin-top: 5px;
  }

  .top-image-container img {
    max-width: 100px;
  }

  .hero-main-text h1 {
    font-size: 1.4rem;
  }

  .hero-main-text h2 {
    font-size: 1rem;
  }

  .hero-main-text p {
    font-size: 0.85rem;
  }

  .beneficio p {
    font-size: 13px;
  }

  .beneficio img {
    border-radius: 6px;
  }
}


/* Desde 375px hacia abajo */
@media (max-width: 375px) {
  .navbar-content {
    padding: 6px 10px;
  }

  .navbar-left,
  .navbar-right {
    gap: 6px;
  }

  .telefono,
  .navbar-right button {
    font-size: 0.8rem;
  }

  .hero-main-text h1 {
    font-size: 1.1rem;
  }

  .hero-main-text h2 {
    font-size: 0.9rem;
  }

  .hero-main-text p {
    font-size: 0.75rem;
  }

  .beneficio h3 {
    font-size: 16px;
  }

  .beneficio p {
    font-size: 12px;
  }

  .beneficios-masajes {
    padding: 30px 8px;
  }
}
