/* -------------------------------- */
/* 1. Importación de Fuentes        */
/* -------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* -------------------------------- */
/* 2. Reset & Base Global           */
/* -------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
}

/* -------------------------------- */
/* 3. Utilidades Globales           */
/* -------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* -------------------------------- */
/* 4. Tipografías Base              */
/* -------------------------------- */
h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

/* -------------------------------- */
/* 5. Espaciado Común               */
/* -------------------------------- */
.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

/* -------------------------------- */
/* 6. Botones Globales              */
/* -------------------------------- */
button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.02s ease;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.02s ease;
}

/* -------------------------------- */
/* 7. Placeholders Vacíos           */
/* -------------------------------- */
.logo {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


/* Header Start */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #E3E6F3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: relative;
  top: 0;
  left: 0;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;

}

/* ✅ Ajuste del menú de usuario para alinearse con el navbar */
#user-menu {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* ✅ Estilo del texto del usuario */
#user-menu .dropdown-toggle {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 10px 20px;
  transition: 0.3s ease;
}

#user-menu .dropdown-toggle:hover {
  color: #088178;
}

/* ✅ Estilo del dropdown */
#user-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  list-style: none;
  padding: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  min-width: 180px;
  text-align: left;
  z-index: 1000;
}

/* ✅ Mostrar menú al pasar el mouse */
#user-menu:hover .dropdown-menu {
  display: block;
}

/* ✅ Estilo de los elementos del dropdown */
#user-menu .dropdown-menu li {
  padding: 8px 0;
}

#user-menu .dropdown-menu a {
  text-decoration: none;
  color: #1a1a1a;
  display: block;
  padding: 8px 15px;
  transition: 0.3s ease;
}

#user-menu .dropdown-menu a:hover {
  background: #f0f0f0;
  color: #088178;
}


#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

#hamburger-menu {
  cursor: pointer;
}

/*SECCION DE AUTENTICACION*/
/* Contenedor más compacto y bien centrado de la pagina de autenticacion */
/* 🔐 SECCIÓN DE AUTENTICACIÓN CON VIDEO DE FONDO */

/* 🎥 Video de fondo a pantalla completa */
.auth-page #auth-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

/* 📦 Contenedor centrado sobre el video */
#auth-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding-top: 300px;
  /* 📦 Baja el cuadro hacia abajo */
}

/* 💎 Caja blanca con transparencia para el contenido */
#auth-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.35);
  /* 🌫️ Mucho más transparente */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  /* Sombra más suave y profunda */
  backdrop-filter: blur(12px);
  /* Cristal más difuminado */
  -webkit-backdrop-filter: blur(12px);
  /* Para Safari */
  width: 650px;
  position: relative;
  z-index: 2;
}



/* ✨ Título estilizado */
#auth-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #3a506b;
  margin-bottom: 15px;
}

/* 🔘 Botón de inicio de sesión */
#login-btn {
  background-color: #3a86ff;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

#login-btn:hover {
  background-color: #295bb0;
  transform: scale(1.05);
}




/* Home Page */

#hero {
  background-image: url("img/home/hero5.webp");
  height: 90vh;
  width: 100%;
  background-size: contain;
  background-color: #cee4e5;
  background-repeat: no-repeat;
  background-position: center right;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#hero h4 {
  padding-bottom: 15px;
}

#hero h1 {
  color: #088178
}

#hero button {
  background-image: url("img/home/button.webp");
  background-color: transparent;
  color: #088178;
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

#hero button:hover {
  transform: scale(1.1);
  /* Agranda el botón al 110% de su tamaño original */
  color: #fff;
  /* Cambia el color del texto al pasar el cursor */
}

#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.01);
}

#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1.5;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #cdebbc;
}

#feature .fe-box:nth-child(3) h6 {
  background-color: #d1e8f2;
}

#feature .fe-box:nth-child(4) h6 {
  background-color: #cdd4f8;
}

#feature .fe-box:nth-child(5) h6 {
  background-color: #f6dbf6;
}

#feature .fe-box:nth-child(6) h6 {
  background-color: #fff2e5;
}

#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgba(243, 181, 25);
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  color: #088178;
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  font-weight: 500;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;

}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(img/banner/b2.webp);
  width: 100%;
  height: 40vh;
  border-radius: 1%;
  background-size: cover;
  background-position: center;
}

#banner h4 {
  color: #fff;
  font-size: 16px;
}

#banner h2 {
  color: #fff;
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span {
  color: #ef3636;

}

#banner button:hover {
  background: #088178;
  color: #fff;
}

#sm-banner {
  /*display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  /* Adds space between the two banners */
  /*padding: 20px;
  /* Adds padding to the entire section */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;

}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url('img/banner/b17.webp');
  background-color: #f4f4f4;
  /* Fallback color mientras carga */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: clamp(300px, 60vh, 600px);
  /* Más flexible en distintos tamaños */
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  /* Toque visual moderno */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Más profundidad */
  color: #fff;
  /* Asegúrate de contraste si hay texto encima */
}



#sm-banner .banner-box2 {
  background-image: url(img/banner/b10_3_.webp);
}

#sm-banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background-color: #088178;
  box-shadow: 1px solid #088178;
}





/* 🧱 Sección principal de banners pequeños */
.section-banner {
  display: flex;
  /* 🧭 Usa Flexbox para alinear cajas horizontalmente */
  justify-content: center;
  /* Centrado horizontal */
  gap: 20px;
  /* 🔄 Espacio entre cajas reducido */
  flex-wrap: wrap;
  /* ↩️ Permite que se envuelvan en pantallas pequeñas */
  padding: 0 20px;
  /* 📏 Igual que el banner principal */
  margin-bottom: 40px;
  /* ⬇️ Espacio inferior simétrico */
}

/* 📦 Caja base para cada banner */
.section-banner__box {
  flex: 1 1 100%;
  /* 📐 Tres por fila con gap respetado */
  display: flex;
  /* 🧭 Usa Flexbox para alinear contenido */
  flex-direction: column;
  /* 🧱 Apila el contenido verticalmente */
  justify-content: flex-end;
  /* Texto abajo como en el grande */
  align-items: flex-start;
  /* ⬅️ Alinea texto a la izquierda */
  width: 100%;
  /* Asegura proporción fluida con max-width */
  max-width: 420px;
  /* 🧩 Uniformidad en ancho */
  aspect-ratio: 16/10;
  /* 🟦 Hace las cajas más cuadradas y proporcionadas */
  height: auto;
  /* 🔄 Deja que la altura la maneje el aspect-ratio */
  background-size: cover;
  /* 🌄 Ajusta el fondo a cubrir la caja */
  background-position: center;
  /* 🎯 Centra la imagen de fondo */
  background-repeat: no-repeat;
  /* ❌ Evita que la imagen se repita */
  padding: 20px;
  /* 🧷 Espacio interno para el contenido */
  margin-bottom: 10px;
  /* 🧹 Separación entre banners cuando hacen wrap */
  border-radius: 20px;
  /* 🔘 Bordes redondeados */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  /* 🌫️ Sombra para profundidad */
  transition: transform 0.3s ease;
  /* 🎞️ Animación suave al hacer hover */
}

/* 🎨 Modificadores con diferentes fondos */
/* 🔷 Banner 1: Colecciones Nuevas */
.section-banner__box--1 {
  background-image: url('img/banner/b4.webp');
}

/* 🔶 Banner 2: Chaquetas */
.section-banner__box--2 {
  background-image: url('img/banner/sagrada-familia.webp');
}

/* 🟢 Banner 3: Edición bebes */
.section-banner__box--3 {
  background-image: url('img/banner/juan-banner\ .webp');
}

/* 📝 Título principal del banner */
.section-banner h2 {
  color: #fff;
  /* 🎨 Color blanco para visibilidad */
  font-weight: 900;
  /* 🅱️ Negrita extrema */
  font-size: 22px;
  /* 🔠 Tamaño de fuente */
}

/* 📝 Subtítulo del banner */
.section-banner h3 {
  color: hsl(117, 94%, 50%);
  /* 🎨 Verde vibrante */
  font-weight: 800;
  /* 🔠 Negrita sólida */
  font-size: 15px;
  /* 📏 Tamaño moderado */
}



#newslatter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url("img/banner/b14.webp");
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #041e42;
}

#newslatter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;

}

#newslatter p {
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}

#newslatter p span {
  color: #ffbd27;
}

#newslatter .form {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 600px;
  margin-top: 1rem;
}


#newslatter input {
  height: 3.125rem;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newslatter button {
  background-color: #088178;
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;

}

footer .logo {
  margin-bottom: 30px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .install .row img {
  border: 2px solid #088178;
  border-radius: 6px;
}

footer .install img {
  margin: 15px 0 20px 0;
}

footer .follow i:hover,
footer a:hover {
  color: #088178;
}

footer .copyright {
  width: 100%;
  text-align: center;
}


/* Shop page */


/* 🌐 Estilo base */
#page-header {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 60px;
}



#page-header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 5%;
  /* 💥 centrado visual corregido */
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}


#page-header h2 {
  font-size: 2.5rem;
  margin: 0;
  color: #fff;
  font-size: 700;
}

#page-header p {

  display: block;
  font-size: 1.2rem;
  margin: 0;
  color: white;
  /* por si acaso no hereda */
}


#pagination {
  text-align: center;
}

#pagination a {
  text-decoration: none;
  background-color: #088178;
  padding: 15px 20px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;

}

#pagination a i {
  font-size: 16px;
  font-weight: 600;

}

/* Single Product */

#prodetails {
  display: flex;
  margin-top: 20px;

}


#prodetails .single-pro-image {
  width: 40%;
  margin-right: 50px;
}

.small-img-group {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}


#prodetails .simgle-pro-details {
  width: 50%;
  padding-top: 30px;
}

#prodetails .simgle-pro-details h4 {
  padding: 40px 0 20px 0;
}

#prodetails .simgle-pro-details h2 {
  font-size: 26px;
}


#prodetails .simgle-pro-details select {
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

#prodetails .simgle-pro-details input:focus {
  outline: none;
}

#prodetails .simgle-pro-details input {
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
  cursor: pointer;


}

#prodetails .simgle-pro-details button {
  background: #088178;
  color: #fff;
  cursor: pointer;

}


#prodetails .simgle-pro-details span {
  line-height: 25px;
}

/* Blog page */

#page-header.blog-header {
  background-image: url("img/banner/b19.webp");
  background-size: 100%;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  text-align: center;
}

#blog {
  padding: 150px 150px 0 150px;
}

#blog .blog-box {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  padding-bottom: 90px;
}

#blog .blog-img {
  width: 50%;
  margin-right: 40px;
}

#blog img {
  width: 100%;
  height: 300px;
  object-position: center top;

  object-fit: cover;
}

#blog .blog-details {
  width: 50%;

}

#blog .blog-details a {
  text-decoration: none;
  font-size: 11px;
  color: #000;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}

#blog .blog-details a::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 4px;
  right: -60px;
}

#blog .blog-details a:hover {
  color: #088178;
}

#blog .blog-details a:hover::after {
  background-color: #088178;
}

#blog .blog-box h1 {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 70px;
  font-weight: 700;
  color: #c9cbce;
  z-index: -9;
}

/* about-header */


/* Estilo específico solo para el about */
#page-header.about-header {
  background-image: url("img/banner/about-banner.webp");
  background-size: cover;
  background-position: center;

  /* Layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 20px;

  /* Espaciado */
  padding: 40px 60px;

  /* Altura más reducida */
  height: 50vh;
  /* 🔽 antes era 75vh, esto lo hace más bajo */
}

#page-header.about-header h2 {
  font-size: 40px;
  color: white;
  margin: 0;
}

#page-header.about-header p {
  font-size: 16px;
  color: white;
  max-width: 800px;
  line-height: 1.6;
  margin: 0;
  padding-right: 20px;
}


#about-head {
  display: flex;
  align-items: center;
}

#about-head img {
  width: 50%;
  height: auto;
}

#about-head div {
  padding-left: 40px;
}

#about-app {
  text-align: center;
}

#about-app .video {
  width: 70%;
  height: 100%;
  margin: 30px auto 0 auto;
}

#about-app .video video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}


/* CONTACT PAGE */

/* Imagen solo para CONTACT */
#page-header.contact-header {
  background-image: url("img/banner/contact-banner.webp");
  background-size: cover;
  background-position: center;

  /* Layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 20px;

  /* Espaciado */
  padding: 40px 60px;

  /* Altura más reducida */
  height: 50vh;
  /* 🔽 antes era 75vh, esto lo hace más bajo */
}

#page-header.contact-header h2 {
  font-size: 40px;
  color: white;
  margin: 0;
}

#page-header.contact-header p {
  font-size: 16px;
  color: white;
  max-width: 800px;
  line-height: 1.6;
  margin: 0;
  padding-right: 20px;
}

#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-details .details {
  width: 40%;
}

#contact-details .details span,
#form-details form span {
  font-size: 12px;
}

#contact-details .details h2,
#form-details form h2 {
  font-size: 26px;
  line-height: 35px;
  padding: 20px 0;
}

#contact-details .details h3 {
  font-size: 16px;
  padding-bottom: 15px;
}

#contact-details .details li {
  list-style: none;
  display: flex;
  padding: 10px 0;
}

#contact-details .details li i {
  font-size: 14px;
  padding-right: 22px;
}

#contact-details .details li p {
  margin: 0;
  font-size: 14px;
}

#contact-details .map {
  width: 55%;
  height: 400px;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
}

/* Detalles del Formulario */

#form-details {
  display: flex;
  justify-content: space-around;
  margin: 30px;
  padding: 80px;
  border: 1px solid #e1e1e1;
}

#form-details form {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#form-details form input,
#form-details form textarea {
  width: 100%;
  padding: 12px 15px;
  outline: none;
  margin-bottom: 20px;
  border: 1px solid #e1e1e1;
}

#form-details form button {
  background-color: #088178;
  color: #fff;
}

#form-details .people div {
  padding-bottom: 25px;
  display: flex;
  align-items: flex-start;
  padding: 10px;
}

#form-details .people div img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 15px;
}

#form-details .people div p {
  margin: 0;
  font-size: 13px;
  line-height: 25px;
}

#form-details .people div p span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}


/* CART PAGE*/

#page-header.cart-header {
  background-image: url("img/banner/cart-banner.webp");
  background-size: cover;
  background-position: center;

  /* Layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 20px;

  /* Espaciado */
  padding: 40px 60px;

  /* Altura más reducida */
  height: 50vh;
  /* 🔽 antes era 75vh, esto lo hace más bajo */
}

#page-header.cart-header h2 {
  font-size: 40px;
  color: white;
  margin: 0;
}

#page-header.cart-header p {
  font-size: 16px;
  color: white;
  max-width: 800px;
  line-height: 1.6;
  margin: 0;
  padding-right: 20px;
}

#cart {
  overflow-x: auto;
}

#cart table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  white-space: nowrap;
}

#cart table img {
  width: 150px;
  /* Aumenta el tamaño */
  height: auto;
  /* Mantiene la proporción */
  border-radius: 10px;
  /* Suaviza las esquinas */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  /* Agrega una sombra suave */
}

#cart table img:hover {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
}


#cart table td:nth-child(1) {
  width: 180px;
  /* Ajusta el ancho */
  text-align: center;
  padding: 10px 0;
  /* Agrega espacio arriba y abajo */
}

#cart table td:nth-child(2) {
  width: 150px;
  text-align: center;
}

#cart table td:nth-child(3) {
  width: 250px;
  text-align: center;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
  width: 150px;
  text-align: center;
}

#cart table td:nth-child(5) input {
  width: 70px;
  padding: 10px 5px 10px 15px;
}

#cart table thead {
  border: 1px solid #e2e9e1;
  border-left: none;
  border-right: none;
}

#cart table thead td {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 18px 0;
}

#cart table body tr td {
  padding-top: 15px;
}

#cart table tbody td {
  font-size: 13px;
}

/* Section totales Tabla*/

#cart-add {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


#coupun {
  width: 50%;
  margin-bottom: 30px;
}

#coupun h3,
#subtotal h3 {
  padding-bottom: 15px;
}

#coupun input {
  padding: 10px 20px;
  outline: none;
  width: 60%;
  margin-right: 10px;
  border: 1px solid #e2e9e1;
}

#coupun button,
#subtotal button {
  background-color: #088178;
  color: #fff;
  padding: 12px 20px;
}

/* =============================== */
/* ✉️ Estilos para el formulario de dirección */
/* =============================== */
#form-direccion {
  margin-top: 20px;
}

#form-direccion h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
}

#form-direccion form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  /* ✅ Nuevo margen para evitar que se monte */
}


#form-direccion input {
  padding: 12px 15px;
  border: 1px solid #e2e9e1;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}


/* Subtotal */

#subtotal {
  width: 50%;
  margin-bottom: 30px;
  border: 1px solid #e2e9e1;
  padding: 30px;
}

#subtotal table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

#subtotal table td {
  width: 50%;
  border: 1px solid #e2e9e1;
  padding: 10px;
  font-size: 13px;
}

/* Estilo para el contador en el carrito */
/* Contador del carrito */
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  /* Color rojo */
  color: white;
  /* Color del texto (número) */
  border-radius: 50%;
  /* Hace que el contador sea circular */
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  width: 18px;
  /* Tamaño fijo para asegurar la consistencia */
  height: 18px;
  text-align: center;
  line-height: 18px;
  /* Centra el texto dentro del círculo */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* Agrega sombra para visibilidad */
}

/* WhatsApp Floating Action Button */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.whatsapp-fab img {
  width: 32px;
  height: 32px;
}

/* Animación de rebote */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}







/* Start Media Queries */
/* Home page */
/* =============================== */
/* ✅ ESTILOS BASE (Desktop) */
/* =============================== */
/* =============================== */
/* ✅ ESTILOS BASE (Desktop) */
/* =============================== */
/* Todo lo que no esté dentro de media queries aplica para pantallas grandes */

/* =============================== */
/* ✅ ESTILOS BASE (Desktop) */
/* =============================== */
/* Todo lo que no esté dentro de media queries aplica para pantallas grandes */

/* Ajuste del newslatter para escritorio y responsivo */
#newslatter {
  padding: 40px 80px;
}

#newslatter .form {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

#newslatter input[type="text"],
#newslatter input[type="email"] {
  flex: 1;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 5px 0 0 5px;
  border: 1px solid #ccc;
  min-width: 0;
}

#newslatter button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 0 5px 5px 0;
  border: none;
  background-color: #088178;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

/* =============================== */
/* 🎯 Tablets LANDSCAPE y VERTICAL (Evita afectar Desktop >=1280px) */
/* Tamaños: 780x1024, 800x1280, 912x1368, 1024x600, 712x1138, 820x1180 */
/* =============================== */
@media (min-width: 712px) and (max-width: 1279px) {
  #hero {
    height: 60vh;
    background-size: cover;
    background-position: 70% center;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* si el texto debe ir centrado */
  }

  .section-banner__box {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }

  #sm-banner .banner-box {
    height: 30vh;
    padding: 1rem;
    background-position: center top;
    border-radius: 1rem;
    max-width: 90%;
    margin: 0 auto 2rem auto;
  }

  #newslatter .form {
    flex-direction: row;
  }

  #newslatter input[type="text"],
  #newslatter input[type="email"] {
    width: auto;
    border-radius: 5px 0 0 5px;
  }

  #newslatter button {
    width: auto;
    border-radius: 0 5px 5px 0;
    margin-top: 0;
  }
}

/* =============================== */
/* 🟧 Teléfonos Medianos: hasta 768px */
/* Tamaños: 480x854, 430x932, 414x896, 412x823, 412x735, 600x960 */
/* =============================== */
@media (max-width: 768px) {
  #navbar li a {
    font-size: 16px;
  }

  #sm-banner .banner-box {
    min-width: 100%;
    height: 30vh;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }

  #sm-banner.banner-box.banner-box2 {
    background-size: 100% auto;
  }

  .section-banner__box {
    flex: 1 1 calc(50% - 20px);
  }

  #newslatter .form {
    flex-direction: column;
  }

  #newslatter input[type="text"],
  #newslatter input[type="email"] {
    width: 100%;
    border-radius: 5px;
  }

  #newslatter button {
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;
  }
}

/* =============================== */
/* 🟨 Teléfonos Pequeños: hasta 600px */
/* Tamaños: 393x786, 390x844, 375x667, 360x640, 360x740, 353x745, 384x640, 320x658, 320x533 */
/* =============================== */
@media (max-width: 600px) {
  .section-banner__box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* =============================== */
/* 🟥 Teléfonos Muy Pequeños: hasta 477px */
/* Tamaños: 360x640, 320x658, 320x533, 240x320 */
/* =============================== */
@media (max-width: 477px) {
  .section-p1 {
    padding: 20px;
  }

  #header {
    padding: 10px 30px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 25px;
  }

  #hero {
    padding: 0 20px;
    background-position: 70% center;
    background-size: cover;
  }

  #feature {
    justify-content: space-between;
  }

  #feature .fe-box {
    width: 155px;
    margin: 0 0 15px 0;
  }

  #banner {
    height: 40vh;
  }

  #sm-banner .banner-box {
    width: 100%;
  }

  #sm-banner.banner-box.banner-box2 {
    width: 100% !important;
    height: 70vh !important;
  }

  #banner3 {
    padding: 0 20px;
  }

  #banner3 .banner-box {
    width: 100%;
    background-size: 80% !important;
    background-position: center;
    background-repeat: no-repeat;
    height: 30vh;
  }

  #banner3 .banner-box2 {
    background-size: cover !important;
  }

  #banner3 .banner-box3 {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat;
    height: 30vh;
  }
}

/* =============================== */
/* 🟩 Pantallas muy pequeñas: hasta 360px */
/* Tamaños: 320x533, 240x320 */
/* =============================== */
@media (max-width: 360px) {
  #sm-banner .banner-box2 {
    height: 30vh;
    padding: 20px;
    justify-content: flex-start;
  }

  #sm-banner .banner-box2 h4,
  #sm-banner .banner-box2 h2,
  #sm-banner .banner-box2 span,
  #sm-banner .banner-box2 button {
    position: relative;
    z-index: 2;
    max-width: 100%;
  }
}

/* =============================== */
/* 🟫 Navegación móvil global: hasta 799px */
/* =============================== */
@media (max-width: 799px) {
  .section-p1 {
    padding: 40px 40px;
  }

  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #E3E6F3;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active {
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #1a1a1a;
    font-size: 25px;
    padding: 20px;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }

  #lg-bag {
    display: none;
  }

  #hero {
    height: 70vh;
    width: 100%;
    padding: 0 20px;
    background-size: cover;
    background-position: 70% center;
  }

  #feature {
    justify-content: center;
  }

  #feature .fe-box {
    margin: 15px 15px;
  }

  #product1 .pro-container {
    justify-content: center;
  }

  #product1 .pro {
    margin: 15px;
  }
}




/*Shop header image*/

/* 📱 Teléfonos pequeños */
@media (max-width: 480px) {
  #page-header {
    padding: 0 20px;
    height: 55vh;
    align-items: center;
  }

  .header-content {
    text-align: left;
    align-items: flex-start;
  }

  #page-header h2 {
    font-size: 1.3rem;
  }

  #page-header p {
    font-size: 0.95rem;
    display: block;
    /* 👈 Asegúrate que no esté oculto */
  }
}

/* 📱 Teléfonos medianos */
@media (min-width: 481px) and (max-width: 767px) {
  #page-header {
    padding: 0 30px;
  }

  #page-header h2 {
    font-size: 1.5rem;
  }

  #page-header p {
    font-size: 1rem;
  }
}

/* 📱 Tablets */
@media (min-width: 768px) and (max-width: 1136px) {
  #page-header {
    height: 60vh;
    padding: 0 40px;
  }

  .header-content {
    align-items: flex-start;
  }

  #page-header h2 {
    font-size: 2rem;
  }

  #page-header p {
    font-size: 1.1rem;
  }
}

/* Teléfonos pequeños */
@media (max-width: 480px) {
  #page-header {
    padding: 0 20px;
    height: 55vh;
  }

  #page-header h2 {
    font-size: 1.3rem;
  }

  #page-header p {
    font-size: 0.95rem;
  }
}

/*@QUERIES DEL ABOUT-HEADER🔧 y el h2 y el parrafo. Media Queries Responsivas
📱 //* Queries para teléfonos – pantallas pequeñas*/
/* 🌐 Tablets y pantallas medianas */
/* 393 x 786, 390 x 844, 375 x 667, 360 x 640, 360 x 740, 353 x 745, 320 x 658, 384 x 640, 320 x 533, 240 x 320 */
@media (max-width: 393px) {
  #page-header.about-header {
    background-position: 65%;
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }

  #page-header.about-header h2 {
    font-size: 22px;
  }

  #page-header.about-header p {
    font-size: 13px;
    padding: 0;
  }
}

/* 480 x 854, 430 x 932, 414 x 896, 412 x 823, 412 x 735, 600 x 960 */
@media (max-width: 600px) {
  #page-header.about-header {
    background-position: 65%;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  #page-header.about-header h2 {
    font-size: 26px;
  }

  #page-header.about-header p {
    font-size: 14px;
    padding: 0;
  }
}

/* 780 x 1024, 800 x 1280, 640 x 360, 912 x 1368, 1024 x 600, 712 x 1138, 820 x 1180, 1024 x 1366 */
@media (max-width: 1366px) {
  #page-header.about-header {
    background-position: 65%;
    align-items: flex-start;
    text-align: left;
    padding: 0 40px;
  }

  #page-header.about-header h2 {
    font-size: 32px;
  }

  #page-header.about-header p {
    font-size: 15px;
  }
}


/*@QUERIES DEL CONTACT-HEADER🔧 y el h2 y el parrafo. Media Queries Responsivas
📱 //* Queries para teléfonos – pantallas pequeñas*/
/* 🌐 Tablets y pantallas medianas */
/* 393 x 786, 390 x 844, 375 x 667, 360 x 640, 360 x 740, 353 x 745, 320 x 658, 384 x 640, 320 x 533, 240 x 320 */
@media (max-width: 393px) {
  #page-header.contact-header {
    background-position: center;
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }

  #page-header.contact-header h2 {
    font-size: 22px;
  }

  #page-header.contact-header p {
    font-size: 13px;
    padding: 0;
  }
}

/* 480 x 854, 430 x 932, 414 x 896, 412 x 823, 412 x 735, 600 x 960 */
@media (max-width: 600px) {
  #page-header.contact-header {
    background-position: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  #page-header.contact-header h2 {
    font-size: 26px;
  }

  #page-header.contact-header p {
    font-size: 14px;
    padding: 0;
  }
}

/* 780 x 1024, 800 x 1280, 640 x 360, 912 x 1368, 1024 x 600, 712 x 1138, 820 x 1180, 1024 x 1366 */
@media (max-width: 1366px) {
  #page-header.contact-header {
    background-position: center;
    align-items: flex-start;
    text-align: left;
    padding: 0 40px;
  }

  #page-header.contact-header h2 {
    font-size: 32px;
  }

  #page-header.contact-header p {
    font-size: 15px;
  }
}




/* Single Product */

@media ((max-width: 477px)) {
  #prodetails {
    display: flex;
    flex-direction: column;
  }

  #prodetails .single-pro-image {
    width: 100%;
    margin-right: 0px;
  }

  #prodetails .simgle-pro-details {
    width: 100%;

  }
}


/* @media Blog header image*/

#page-header.blog-header {
  background-image: url("img/banner/b19.webp");
  background-size: cover;
  background-position: center;

}

/* @media Blog responsive */
@media ((max-width: 477px)) {
  #blog {
    padding: 100px 20px 0 20px;
  }

  #blog .blog-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

  }

  #blog .blog-img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 30px;
  }

  #blog .blog-details {
    width: 100%;
  }
}


/* @media About responsive */


@media ((max-width: 477px)) {
  #about-head {

    flex-direction: column;

  }

  /*Photography responsive*/


  #about-head img {
    width: 100%;
    margin-bottom: 20px;
  }

  #about-head div {
    padding-left: 0px;
  }


  /* Video Responsive */

  #about-app .video {
    width: 100%;

  }



  /* @media Contact page + the form and the faceses*/
  @media (max-width: 799px) {
    #form-details {
      padding: 40px;
    }

    #form-details .people {
      margin: 0;
      padding: 7px;
      box-sizing: border-box;
      font-family: "Spartan", sans-serif;
    }

    #form-details form {
      width: 50%;
      justify-content: space-between;
    }



  }
}


/* CONTACT PAGE */
/* @media CONTAC PAGE*/

@media ((max-width: 477px)) {
  #contact-details {
    flex-direction: column;
  }

  #contact-details .details {
    width: 100%;
    margin-bottom: 30px;
  }

  #contact-details .map {
    width: 100%;
  }

  #form-details {

    margin: 10px;
    padding: 30px 10px;
    flex-wrap: wrap;
  }

  #form-details form {
    width: 100%;
    margin-bottom: 30px;
  }

}

/* CART PAGE */

/*@QUERIES DEL CART-HEADER🔧 y el h2 y el parrafo. Media Queries Responsivas
📱 //* Queries para teléfonos – pantallas pequeñas*/
/* 🌐 Tablets y pantallas medianas */
/* 393 x 786, 390 x 844, 375 x 667, 360 x 640, 360 x 740, 353 x 745, 320 x 658, 384 x 640, 320 x 533, 240 x 320 */
@media (max-width: 393px) {
  #page-header.cart-header {
    background-position: 65%;
    align-items: center;
    text-align: center;
    padding: 0 16px;
  }

  #page-header.cart-header h2 {
    font-size: 22px;
  }

  #page-header.cart-header p {
    font-size: 13px;
    padding: 0;
  }
}

/* 480 x 854, 430 x 932, 414 x 896, 412 x 823, 412 x 735, 600 x 960 */
@media (max-width: 600px) {
  #page-header.cart-header {
    background-position: 65%;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  #page-header.cart-header h2 {
    font-size: 26px;
  }

  #page-header.cart-header p {
    font-size: 14px;
    padding: 0;
  }
}

/* 780 x 1024, 800 x 1280, 640 x 360, 912 x 1368, 1024 x 600, 712 x 1138, 820 x 1180, 1024 x 1366 */
@media (max-width: 1366px) {
  #page-header.cart-header {
    background-position: 65%;
    align-items: flex-start;
    text-align: left;
    padding: 0 40px;
  }

  #page-header.cart-header h2 {
    font-size: 32px;
  }

  #page-header.cart-header p {
    font-size: 15px;
  }
}



@media (max-width: 477px) {
  #cart-add {
    flex-direction: column;
  }

  #coupun {
    width: 100%;
  }

  #subtotal {
    width: 100%;
  }
}


/*Cart-cout*/
/* Asegúrate de que no se superponga el número en pantallas pequeñas */
/* Asegurar que el contador se vea bien en pantallas pequeñas */
/* Asegurarse de que el contador sea visible en pantallas pequeñas */
@media (max-width: 768px) {
  .cart-count {
    font-size: 12px;
    /* Tamaño del texto igual al de escritorio */
    width: 18px;
    /* Igual que en escritorio */
    height: 18px;
    line-height: 18px;
    /* Centrado verticalmente */
    top: -5px;
    /* Ajuste de la posición */
    right: -5px;
    /* Ajuste de la posición */
  }

  #lg-bag {
    position: relative;
    /* Asegura que el contador se posicione correctamente */
    padding-right: 25px;
    /* Asegura que haya espacio suficiente para el contador */
  }
}

/* Asegurar que el contador sea visible en pantallas más pequeñas */
@media (max-width: 600px) {
  .cart-count {
    font-size: 10px;
    /* Reducir el tamaño de la fuente en pantallas muy pequeñas */
    width: 16px;
    /* Ajustar el tamaño del círculo */
    height: 16px;
    line-height: 16px;
    /* Centrado verticalmente */
    top: -3px;
    /* Ajuste de la posición */
    right: -3px;
    /* Ajuste de la posición */
  }

  #lg-bag {
    position: relative;
    padding-right: 20px;
    /* Asegura que el contador se vea sin problemas */
  }
}

/* Asegurar que el contador sea visible en tablets y pantallas medianas */
@media (min-width: 768px) and (max-width: 1024px) {
  .cart-count {
    font-size: 12px;
    /* Mantener el mismo tamaño de texto */
    width: 18px;
    /* Tamaño consistente */
    height: 18px;
    line-height: 18px;
    /* Centrado vertical */
  }

  #lg-bag {
    position: relative;
    padding-right: 25px;
    /* Asegura que haya espacio para el contador */
  }
}









/* 🎯 Media Queries - Página de Autenticación */

/* 📱 Para pantallas pequeñas (móviles) */
@media (max-width: 600px) {
  #auth-wrapper {
    align-items: flex-end;
    /* Baja la caja para no tapar la cara */
    padding-bottom: 60px;
    /* Agrega espacio abajo */
  }

  #auth-section {
    width: 90%;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.65);
    /* Más transparente aún */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  #auth-section h2 {
    font-size: 1.5rem;
  }

  #login-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* 🎯 Media Queries - Página de Autenticación */

/* 📱 Para pantallas pequeñas (móviles) */
@media (max-width: 600px) {
  #auth-wrapper {
    align-items: flex-end;
    /* Baja la caja para no tapar la cara */
    padding-bottom: 60px;
    /* Agrega espacio abajo */
  }

  #auth-section {
    width: 95%;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.65);
    /* Más transparente aún */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  #auth-section h2 {
    font-size: 1.6rem;
  }

  #login-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* 📱 Media Query: Dispositivos con ancho máximo de 360px (Ej: Galaxy S9+, móviles pequeños) */
@media (max-width: 360px) {

  /* 🎯 Banner pequeño (segunda caja) */
  #sm-banner .banner-box2 {
    height: 30vh;
    /* Altura reducida del banner */
    padding: 20px;
    /* Espaciado interno para contenido */
    justify-content: flex-start;
    /* Alineación del contenido al inicio */
  }

  /* 📝 Textos y elementos del banner */
  #sm-banner .banner-box2 h4,
  #sm-banner .banner-box2 h2,
  #sm-banner .banner-box2 span,
  #sm-banner .banner-box2 button {
    position: relative;
    /* Para mantener su flujo normal */
    z-index: 2;
    /* Encima de cualquier fondo */
    max-width: 100%;
    /* Evita desbordes horizontales */
  }

  /* 🔐 Sección de Autenticación */
  #auth-section {
    width: 96%;
    /* Casi ancho completo para margen lateral */
    padding: 20px 15px;
    /* Espaciado interno equilibrado */
    border-radius: 10px;
    /* Bordes suavizados */
  }

  /* 🔡 Título de autenticación */
  #auth-section h2 {
    font-size: 1.4rem;
    /* Tamaño de fuente adaptado al móvil */
  }

  /* 🔘 Botón de iniciar sesión */
  #login-btn {
    padding: 12px 24px;
    /* Botón más cómodo al tacto */
    font-size: 0.95rem;
    /* Texto legible en pantallas pequeñas */
  }

  /* ✨ Sección de características */
  #feature {
    display: flex;
    /* Flexbox para alineación */
    flex-wrap: wrap;
    /* Permite saltos de línea */
    justify-content: center !important;
    /* Centrado horizontal forzado */
    align-items: center;
    /* Centrado vertical */
    gap: 16px;
    /* Separación entre elementos */
    padding: 20px 10px;
    /* Espaciado general */
  }

  /* 🔳 Caja individual de feature */
  #feature .fe-box {
    width: 50%;
    /* Dos cajas por fila */
    max-width: 140px;
    /* Tamaño máximo para evitar que se estire */
    margin: 10px auto;
    /* Margen vertical + centrado horizontal */
    text-align: center;
    /* Contenido centrado dentro de la caja */
  }
}


/* 🎯 Media Queries - WhatsApp*/