@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: url('./Imagenes/fondo_inicial.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.intro img {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 10px;
  display: block;
}
/* Capa oscura overlay para oscurecer el fondo un 30% */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); /* negro al 30% */
  z-index: -1;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  margin: 0;
  font-weight: 600;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between; /* Logo - Menú - Iconos */
  align-items: center;           /* Centra verticalmente todos */
  padding: 0.8rem 1.5rem;
  background-color: rgba(0, 0, 0, 1);
}
/* Logo estilo */
.navbar-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #90ee90;
  letter-spacing: 1.5px;
  user-select: none;
}
/* Menu container */
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0 auto;        /* Empuja el menú al centro */
  padding: 0;
  align-items: center;   /* Alinea verticalmente con logo e iconos */
}

/* Links estilo */
.navbar-menu .nav-link {
  color: white;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
/* Hover */
.navbar-menu .nav-link:hover {
  color: #90ee90;
}

/* Línea que aparece solo en el link activo */
.navbar-menu .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #90ee90;
  border-radius: 2px;
}

/* Responsive - en móvil menú compacto */
@media (max-width: 768px) {
  .navbar {
    padding: 0.6rem 1rem;
  }

  .navbar-menu {
    gap: 1rem;
  }

  .navbar-logo {
    font-size: 1.3rem;
  }
}
nav a:hover {
  color: #a3d5a3;
}

main {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-weight: 800;
  margin-bottom: 0.5rem;
}

p {
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.boton-reserva {
  display: inline-block;
  background-color: #2e7d32;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
}

.boton-reserva:hover {
  background-color: #1b4d1b;
}

.imagenes-masajes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.imagenes-masajes img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.imagenes-masajes img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .imagenes-masajes img {
    width: 90vw;
    height: auto;
  }
}
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  z-index: 10000;
  flex-wrap: wrap;
}

.cookie-consent p {
  margin: 0;
  flex: 1 1 auto;
}

.cookie-consent a {
  color: #90ee90;
  text-decoration: underline;
}

.cookie-consent button {
  background-color: #2e7d32;
  border: none;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.cookie-consent button:hover {
  background-color: #1b4d1b;
}
.masajes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.masaje {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.masaje img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.masaje h2 {
  margin-top: 0.5rem;
  color: #fff;
}

.masaje p {
  color: #fff;
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .masajes-grid {
    grid-template-columns: 1fr;
  }
}
.reserva-main {
  max-width: 600px;
  margin: 2rem auto;
  background-color: rgba(0, 0, 0, 0.65); /* fondo más oscuro */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  color: #fff; /* texto blanco sobre fondo oscuro */
}

.selector-paso {
  margin-bottom: 2rem;
}

.selector-paso label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2e7d32;
}

.selector-paso input,
.selector-paso select,
.selector-paso textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
}

.selector-paso textarea {
  resize: vertical;
  min-height: 80px;
}

button[type="submit"] {
  background-color: #2e7d32;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #1b4d1b;
}
/* Título "Esencia Amazónica" en la intro */
.intro-titulo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #90ee90;
  margin-bottom: 1rem;
}

.intro-texto {
  text-align: justify;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 20px;
}

/* Imágenes más grandes */
.imagenes-masajes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.imagenes-masajes img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}


.imagenes-masajes img:hover {
  transform: scale(1.05);
}
.contacto-cuadro {
  max-width: 600px;
  margin: 3rem auto 4rem auto;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro con opacidad */
  padding: 2.5rem 3rem;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
}

.contacto-cuadro h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #90ee90;
  text-align: center;
}

.contacto-cuadro p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.5;
}

.contacto-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #90ee90;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
  background-color: #222;
  color: #fff;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  box-shadow: 0 0 8px #90ee90;
  background-color: #333;
}

.contacto-form textarea {
  resize: vertical;
}

.boton-enviar {
  background-color: #2e7d32;
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 0;
  width: 100%;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
}

.boton-enviar:hover {
  background-color: #1b4d1b;
}

/* Responsive */
@media (max-width: 600px) {
  .contacto-cuadro {
    margin: 2rem 1rem 3rem 1rem;
    padding: 2rem 1.5rem;
  }
}
/* Formulario - ahora con flex 2 para que sea más ancho */
.contact-container {
  flex: 2 1 600px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2.5rem 3rem;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  color: #eee;
  font-weight: 300;
  text-align: left;
}

/* Título */
.contact-container {
  flex: 1 1 auto;
  max-width: 750px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2.5rem 3rem;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  color: #eee;
  font-weight: 300;
  text-align: left;
}
/* Párrafo intro */
.contact-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Formulario */
.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #b5d6b5;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  background-color: #1c1c1c;
  border: none;
  padding: 0.9rem 1rem;
  margin-bottom: 1.6rem;
  border-radius: 8px;
  color: #ddd;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  resize: vertical;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  background-color: #2a2a2a;
  color: #90ee90;
}

/* Botón enviar */
.btn-submit {
  background-color: #2e7d32;
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  user-select: none;
}

.btn-submit:hover {
  background-color: #1b4d1b;
}

/* Captcha centrado y con margen */
.g-recaptcha {
  margin-bottom: 1.8rem;
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 850px) {
  .contact-wrapper {
    flex-direction: column;
    margin: 2rem 1rem 3rem 1rem;
    flex-wrap: wrap;
  }
}
/* Contenedor principal con flex para info + formulario */
.contact-wrapper {
  max-width: 1100px;
  margin: 3rem auto 5rem auto;
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
  flex-wrap: nowrap;
  justify-content: center;
}

/* En escritorio, que ocupen menos ancho */
.contact-info {
  flex: 0 1 auto; /* toma sólo el ancho necesario */
  background-color: rgba(0,0,0,0.7);
  border-radius: 15px;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  color: #eee;
  font-weight: 300;
  overflow-wrap: break-word;
  white-space: nowrap; /* evita que el texto se parta */
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #90ee90;
  margin-bottom: 1.5rem;
  user-select: none;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info ul li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-info ul li i {
  color: #90ee90;
  font-size: 1.5rem;
  width: 28px;
  text-align: center;
}

.contact-info ul li a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info ul li a:hover {
  color: #a3d5a3;
}
.navbar-icons {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  align-items: center;   /* Asegura alineación vertical */
}

.navbar-icons li a img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}



/* En móviles, que se reduzca el tamaño de los iconos */
@media (max-width: 768px) {
  .navbar-icons li a img {
    width: 20px;
    height: 20px;
  }
}
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}
.masaje h2 a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.masaje h2 a:hover {
  color: #90ee90; /* Verde claro */
}
.detalle-masaje-container {
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.detalle-masaje-texto {
  flex: 1;
  min-width: 250px;
  color: white;
}

.detalle-masaje-texto h1 {
  margin-top: 0;
  font-size: 2rem;
  color: #2e7d32;
}

.detalle-masaje-texto p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: #fff;
}


.contenedor-principal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

@media (max-width: 768px) {
  .detalle-masaje-texto h1 {
    font-size: 1.5rem;
    text-align: center;
    word-break: break-word;
  }

  .detalle-masaje-texto {
    padding: 0 1rem;
  }
}
/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1); /* lo hace blanco */
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}
.whatsapp-btn {
  display:inline-block;
  background-color:#25d366;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  border-radius:30px;
  padding:1rem 1.6rem;
  transition:transform .2s ease, background-color .2s ease;
  margin-top: .5rem;
}
.whatsapp-btn:hover { background-color:#20ba5a; transform:translateY(-1px); }
/* Ajustes para móvil */
@media (max-width: 768px) {
  /* Menú de navegación centrado */
  .navbar-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 1rem;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
  }

  .navbar-menu .nav-link {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* Texto de detalle del masaje centrado */
  .detalle-masaje-texto {
    text-align: center;
  }

  .detalle-masaje-texto h1 {
    text-align: center;
  }

  .detalle-masaje-texto p {
    text-align: center;
  }
}
@media (max-width: 768px) {
  /* Contenedor de detalle de masaje centrado en móviles */
  .detalle-masaje-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .detalle-masaje-container img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
  }
}
