*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Jost', sans-serif;
    list-style: none;
    text-decoration: none;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}


header{
  position: fixed; 
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10%;
}

.logo img{
  max-width: 120px;
  height: auto;
}

.navmenu{
  display: flex;
}

.navmenu a{
  color: #2c2c2c;
  font-size: 16px;
  text-transform: capitalize;
  padding: 10px 20px;
  font-weight: 400;
  transition: all .42s ease;
}

.navmenu a:hover{
  color: #3dae2b;
}

.nav-icon{
  display: flex;
  align-items: center;
}

.nav-icon i{
  margin-right: 20px;
  color: #2c2c2c;
  font-size: 25px;
  font-weight: 400;
  transition: all .42s ease;
}

.nav-icon i:hover{
  transform: scale(1.1);
  color: #3dae2b;
}

#menu-icon{
  font-size: 35px ;
  color: #2c2c2c;
  z-index: 10001;
  cursor: pointer;
}

section{
  padding: 5% 10%;
}

.main-home {
  position: relative;
  width: 100vw; /* usa el ancho real de la ventana */
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
  background-image: url(../images/principal.webp);
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex; /* centra el contenido del hero */
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* o center si prefieres centrado total */
  padding: 0 10%;
}

.main-text h5{
  color: #3dae2b;
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 500;
}

.main-text h1{
  color: #000;
  font-size: 65px;
  text-transform: capitalize;
  line-height: 1.1;
  font-weight: 600;
  margin: 6px 0 10px;
}

.main-text p{
  color: #2c2c2c;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 20px;
}

.main-btn{
  display: inline-block;
  padding: 12px 25px;
  color: #111;
  font-size: 16px;
  text-transform: capitalize;
  border: 2px solid #111;
  font-weight: 500;
  transition: all .42s ease;
}

.main-btn:hover{
  background-color: #3dae2b;
  color: #fff;
  border-color: #3dae2b;
}

.main-btn i{
  vertical-align: middle;
}

.down-arrow{
  position: absolute;
  top: 85%;
  right: 11%;
}

.down i{
  font-size: 30px;
  color: #2c2c2c;
  border: 2px solid #2c2c2c;
  border-radius: 50px;
  padding: 12px 12px;
}

.down i:hover{
  background-color: #2c2c2c;
  color: #fff;
  transition: all .42s ease;
  cursor: pointer;
}

header.sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}


/* seccion de trends  */

.center-text h2{
  color: #111;
  font-size: 28px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 30px;
}

.center-text span{
  color: #3dae2b;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.products .row {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

/* contenedor fijo */
.products .row .img-wrap {
  width: 100%;
  height: 240px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products .row img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}

.row{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.row img{
  width: 100%;
  height: 260px;          /* controla el tamaño */
  object-fit: contain;     /* recorta sin deformar */
  object-position: center;
  transition: all .40s;
  display: block;
}


.row:hover img{
  transform: scale(0.9);
  filter: brightness(0.9);
}

.product-text h5{
  position: absolute;
  top: 13px;
  left: 13px;
  color: #fff;
  font-size: 12px;
  font-weight: 500 ;
  text-transform: uppercase;
  background-color: #ff3d3d;
  padding: 3px 10px;
  border-radius: 2px;
}

.price h4{
  color: #111;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 400;
}

.price p{
  color: #3dae2b;
  font-size: 18px;
  font-weight: 700;
}


.client-reviews{
  background-color: #f3f4f6;

}

.reviews{
  text-align: center;
}

.reviews h3{
  color: #111;
  font-size: 25px;
  text-transform: capitalize;
  text-align: center;
  font-weight: 700;
}

.reviews img{
  width: 100px;
  height: auto;
  border-radius: 50px;
  margin: 10px 0;
}

.reviews p{
  color: #707070;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;

}

.reviews{
  font-size: 22px;
  color: #0000;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 2px;
}

/* actualizaciones css */

.up-center-text h2{
  text-align: center;
  color: #111;
  font-size: 28px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 30px;

}

.cart img{
  width: 380px;
  height: auto;
  border-radius: 5px;
}

.update-cart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.cart img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}


.cart h5{
  color: #636872;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;

}

.cart h4{
  color: #111;
  font-size: 18px;
  font-weight: 600;
}

.cart p{
  color: #707070;
  font-size: 15px;
  max-width: 380px;
  line-height: 25px;
  margin-bottom: 12px;
}

.cart h6{
  color: #151515;
  font-size: 14px;
  font-weight: 500;
}

/* contacto seccion  */

.contact{
  background-color: #f3f4f6;

}

.contact-info{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,auto));
  gap: 3rem;
}

.first-info img{
  width: 140px;
  height: auto;

}

.contact-info h4{
  color: #212521;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-info p{
  color: #565656;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.5;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .42s;
}

.contact-info p:hover{
  color: #3dae3d;
}

.social-icon i{
  color: #565656;
  margin-right: 10px;
  font-size: 20px;
  transition: all .42s;

}

.social-icon i:hover{
  transform: scale(1.3);
}

.end-text{
  background-color: #edfff1;
  text-align: center;
  padding: 20px;
}

.end-text p{
  color: #111;
  text-transform: capitalize;
}


.new-products {
  background-color: #f9fafb;
}

.new-products .product-text h5 {
  background-color: #0077b6; /* azul para diferenciar "Nuevo" */
}


/* categorias  */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.cat {
  border-radius: 12px;
  overflow: hidden;
}

.cat img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .3s ease;
}
.cat img:hover {
  transform: scale(1.05);
}
.cat p {
  margin-top: 10px;
  font-weight: 500;
  text-transform: capitalize;
}



/* ======== RESPONSIVE ======== */



/* Responsive CSS */

@media(max-width:890px){
  header{
    padding: 20px 3%;
    transition: .4s;

  }
}

@media(max-width:630px){
  .main-text h1{
    font-size: 50px;
    transition: .4s;
  }

  .main-text p{
    font-size: 18px;
    transition: .4s;
  }

  .main-btn{
    padding: 10px 20px;
    transition: .4s;
  }
}

@media(max-width:750px){
  .navmenu{
    position: absolute;
    top: 100%;
    right: -100%;
    width: 300px;
    height: 130vh;
    background: rgba(255,255,255,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 30px;
    transition: all .42s;
  }
  .navmenu a{
    display: block;
    margin: 18px 0;
  }
  .navmenu.open{
    right: 0;
  }
}

@media (max-width: 480px) {
  .main-text h1 {
    font-size: 38px;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .row img {
    width: 100%;
  }
  .cart img {
    width: 100%;
  }
}

.footer {
  background: #111;
  color: #fff;
  padding: 60px 10%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-info p {
  margin-bottom: 15px;
  max-width: 260px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  padding: 10px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 500;
}

.whatsapp-btn i {
  font-size: 20px;
  margin-right: 8px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ddd;
}

.footer-links a:hover {
  color: #3dae2b;
}

.store-col h4 {
  margin-bottom: 6px;
  font-weight: 600;
}

.store-col p {
  font-size: 14px;
  margin-bottom: 6px;
  color: #ccc;
}

.store-col iframe {
  width: 100%;
  height: 180px;
  border-radius: 6px;
  border: 0;
  margin: 8px 0;
}

.map-link {
  display: inline-block;
  color: #3dae2b;
  margin-top: 5px;
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  opacity: .7;
  font-size: 14px;
}

/* Responsive */
@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-info p {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  transition: .3s;
}

.footer-social a:hover {
  background: #3dae2b;
  color: #111;
  transform: translateY(-3px);
}

/* ====== BOTÓN FLOTANTE DE WHATSAPP ====== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20b358;
  transform: scale(1.1);
}

/* Ajuste para móviles */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37,211,102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102, 0); }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

.image-banner {
  width: 100%;
  min-height: clamp(240px, 35vw, 420px);
  position: relative;
  overflow: hidden;
}


.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* cambia si el foco no queda bien */
}

/* capa de color encima */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* texto sobre el banner */
.banner-text {
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.banner-text h2 {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.banner-text p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* botón reutilizando tu estilo */
.banner-text .main-btn {
  background-color: #3dae2b;
  color: #fff;
  padding: 14px 32px;
  border-radius: 5px;
  border: none;
  font-weight: 500;
  transition: all .3s ease;
}

.banner-text .main-btn:hover {
  background-color: #2a8a1e;
  transform: translateY(-3px);
}

/* Responsividad */
@media (max-width: 1024px) {
  .image-banner {
    aspect-ratio: 16 / 6; /* un poco más alto en pantallas medianas */
  }
  .banner-text h2 { font-size: 32px; }
}

@media (max-width: 768px) {
  .image-banner {
    aspect-ratio: 16 / 7;}
  .banner-text h2 { font-size: 26px; }
  .banner-text p { font-size: 16px; }
}

@media (max-width: 480px) {
  .image-banner {
    aspect-ratio: 16 / 8; /* más alto en móvil */
  }
  .banner-text h2 { font-size: 20px; }
  .banner-text p { font-size: 14px; }
}

/* ====== TARJETAS DE CONFIANZA ====== */
.trust-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 40px 10%;
  background-color: #f9fafb; /* gris suave que combina con tus secciones */
  text-align: center;
}

.trust-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-card i {
  font-size: 36px;
  color: #3dae2b; /* tu color principal */
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.trust-card p {
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 500;
  max-width: 180px;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.trust-card:hover i {
  transform: scale(1.1);
  color: #2a8a1e;
}

/* ====== Responsivo ====== */
@media (max-width: 768px) {
  .trust-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 30px 8%;
  }
  .trust-card i {
    font-size: 30px;
  }
  .trust-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .trust-section {
    grid-template-columns: 1fr;
    padding: 25px 15%;
  }
}

@media (max-width: 900px) {
  .footer-social {
    justify-content: center;
  }
}

/* BOTÓN VOLVER ARRIBA (ajustado a la izquierda) */
#backToTop {
  position: fixed;
  bottom: 30px;
  left: 25px; /* 👈 ahora está en la esquina inferior izquierda */
  background-color: #3dae2b; /* color principal */
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

#backToTop:hover {
  background-color: #2a8a1e;
  transform: translateY(-3px);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* En móviles: más pequeño y más separado del borde */
@media (max-width: 480px) {
  #backToTop {
    width: 40px;
    height: 40px;
    font-size: 22px;
    bottom: 20px;
    left: 20px;
  }
}

/* === Ajuste general del texto del banner (antes solo móvil, ahora para todo) === */
.main-text {
  color: #000;
  background: rgba(255, 255, 255, 0.4); /* fondo blanco semitransparente */
  padding: 15px 20px;
  border-radius: 10px;
  max-width: 80%;
  backdrop-filter: blur(4px); /* opcional: da un efecto moderno de vidrio */
}

.main-text h1 {
  font-size: 50px;
  line-height: 1.2;
}

.main-text h5 {
  font-size: 22px;
}

.main-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.main-btn {
  padding: 12px 25px;
  font-size: 16px;
}

.old-price {
  color: #999;
  font-size: 0.9rem;
  text-decoration: line-through;
}

.new-price {
  color: #3dae2b;
  font-size: 1.1rem;
  font-weight: 700;
}

.normal-price {
  font-size: 1.05rem;
  font-weight: 600;
}

.price del {
  color: #999;
  font-size: 0.9rem;
  margin-right: 6px;
}

.price strong {
  color: #1ca54e; /* verde Falcon */
  font-weight: 700;
}


/* ===== Categorías en móvil: 2 por fila ===== */
@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cat p {
    font-size: 14px;
  }
}

/* ===== SECCIÓN LO QUE DEBES SABER ===== */
.know-section {
  background-color: #f9fafb;
  padding: 70px 10%;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-top: 8px;
}

.know-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 45px;
}

.know-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all .3s ease;
}

.know-card i {
  font-size: 40px;
  color: #3dae2b;
  margin-bottom: 14px;
}

.know-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #111;
}

.know-card p {
  font-size: 14.8px;
  color: #555;
  line-height: 1.6;
}

/* tarjeta destacada */
.know-card.highlight {
  border: 2px solid #3dae2b;
}

/* FAQ un poco más sutil */
.know-card.faq {
  background: #ffffff;
  border: 1px solid #eee;
}

.know-card:hover {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 480px) {
  .know-section {
    padding: 50px 8%;
  }
}

.price del {
  text-decoration: line-through !important;
}

/* ==========================
   HERO HOME
========================== */

.hero-home {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 140px 10% 80px;
  background: #f6f8fb;
}

.hero-content h5 {
  color: #3dae2b;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #111;
  font-weight: 700;
}

.hero-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s ease;
}

.hero-btn:hover {
  background: #3dae2b;
}

.hero-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 900px) {
  .hero-home {
    grid-template-columns: 1fr;
    padding: 120px 6% 60px;
    text-align: center;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }
}

.seo-title {
  position: absolute;
  left: -9999px;
}

@media (max-width: 480px) {

  .new-collection .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .new-collection .img-wrap {
    height: 150px;
  }

  .new-collection .price h4 {
    font-size: 14px;
    line-height: 1.3;
  }

  .new-collection .price p {
    font-size: 14px;
  }

  .new-collection .product-text h5 {
    font-size: 10px;
    padding: 3px 6px;
  }
}

