/* STYLES.CSS */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  background:#f5f5f5;
  color:#111827;
}

/* NAVBAR */

.navbar{
  width:100%;
  height:95px;
  background:#ffffff;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 5%;

  border-bottom:1px solid #e5e7eb;

  position:sticky;
  top:0;

  z-index:1000;
}

.logo{
  width:180px;
  height:auto;

  display:block;
}

.logo-container{
  display:flex;
  align-items:center;
}

.nav-links{
  display:flex;
  gap:40px;
}

.nav-links a{
  text-decoration:none;
  color:#111827;
  font-weight:500;

  transition:.2s;
}

.nav-links a:hover{
  color:#005EAF;
}

.whatsapp-btn{
  background:#1FA137;
  color:white;

  padding:12px 22px;

  border-radius:10px;

  text-decoration:none;
  font-weight:600;

  transition:.2s;
}

.whatsapp-btn:hover{
  transform:translateY(-2px);
}

/* HERO */

.hero{
  width:100%;

  min-height:520px;

  background:#f3f4f6;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:60px 5%;
}

.hero-slide{
  width:100%;

  display:grid;
  grid-template-columns:1fr 1fr;

  align-items:center;

  gap:60px;
}

.hero-image{
  display:flex;
  justify-content:center;
}

.hero-image img{
  width:100%;
  max-width:520px;

  height:auto;

  object-fit:contain;
}

.hero-overlay{
  position:static;

  transform:none;

  color:#111827;
}

.hero-overlay h1{
  font-family:'Montserrat', sans-serif;

  font-size:72px;
  line-height:1.05;

  margin-bottom:22px;

  color:#111827;
}

.hero-overlay p{
  font-size:22px;
  color:#4b5563;
}

/* PRODUCTS */

.products-section{
  padding:70px 5%;
}

.section-header{
  margin-bottom:35px;
}

.section-header h2{
  font-size:38px;
  font-weight:700;

  color:#111827;

  font-family:'Montserrat', sans-serif;
}

.products-grid{
  display:grid;

  grid-template-columns:repeat(4, 1fr);

  gap:28px;
}

.product-card{
  background:#fff;

  border-radius:18px;

  overflow:hidden;

  transition:.25s ease;

  border:1px solid #e5e7eb;

  display:flex;
  flex-direction:column;
}

.product-card:hover{
  transform:translateY(-6px);

  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.product-image{
  width:100%;
  height:240px;

  background:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:20px;

  border-bottom:1px solid #f3f4f6;
}

.product-image img{
  max-width:100%;
  max-height:100%;

  object-fit:contain;
}

.product-content{
  padding:22px;

  display:flex;
  flex-direction:column;

  flex-grow:1;
}

.product-content h3{
  font-size:16px;

  line-height:1.45;

  color:#111827;

  margin-bottom:16px;

  min-height:48px;
}

.price{
  font-size:32px;

  font-weight:700;

  color:#0f172a;

  margin-bottom:22px;
}

.product-buttons{
  margin-top:auto;

  display:flex;
  flex-direction:column;

  gap:12px;
}

.ml-btn{
  background:#2563eb;

  color:#fff;

  text-decoration:none;

  padding:14px;

  border-radius:12px;

  text-align:center;

  font-weight:600;

  transition:.2s;
}

.ml-btn:hover{
  background:#1d4ed8;
}

.wp-small-btn{
  background:#16a34a;

  color:#fff;

  text-decoration:none;

  padding:14px;

  border-radius:12px;

  text-align:center;

  font-weight:600;

  transition:.2s;
}

.wp-small-btn:hover{
  background:#15803d;
}

/* FOOTER */

.footer{
  background:#1f2937;
  color:white;

  margin-top:80px;
}

.footer-content{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:40px;

  padding:60px 5%;
}

.footer-column{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-column img{
  width:180px;
}

.footer-column h4{
  font-size:20px;
  margin-bottom:10px;
}

.footer-column a{
  text-decoration:none;
  color:#d1d5db;
}

.footer-whatsapp{
  background:#1FA137;
  color:white !important;

  width:max-content;

  padding:12px 18px;

  border-radius:10px;

  margin-top:10px;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);

  padding:22px;

  text-align:center;

  color:#d1d5db;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .navbar{
    padding:0 20px;
  }

  .nav-links{
    display:none;
  }

  .hero{
    height:420px;
  }

  .hero-overlay h1{
    font-size:38px;
  }

  .hero-overlay p{
    font-size:16px;
  }

  .products-grid{
    grid-template-columns:1fr;
  }

  .footer-content{
    grid-template-columns:1fr;
  }

}

/* ========================= */
/* CATALOGO Y WHATSAPP */
/* ========================= */

.catalogo-whatsapp{
    padding:80px 20px;
}

.catalogo-content{
    max-width:700px;
    margin:auto;
}

.catalogo-content h2{
    font-size:42px;
    margin-bottom:20px;
    color:#111827;
}

.catalogo-content p{
    font-size:18px;
    line-height:1.7;
    color:#6b7280;
    margin-bottom:30px;
}

.btn-whatsapp-principal{
    display:inline-block;
    background:#16a34a;
    color:white;
    text-decoration:none;
    padding:16px 32px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn-whatsapp-principal:hover{
    transform:translateY(-2px);
}

.catalogo-badges{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:30px;
}

.catalogo-badges span{
    padding:10px 18px;
    background:#f3f4f6;
    border-radius:999px;
    font-size:14px;
}

/* ========================= */
/* ENTREGAS */
/* ========================= */

.entregas{
    padding:80px 20px;
}

.entregas h2{
    text-align:center;
    margin-bottom:40px;
    font-size:36px;
}

.entregas-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.entrega-card{
    background:white;
    padding:30px;
    border-radius:16px;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.entrega-card h3{
    margin-bottom:10px;
}

.plazo{
    color:#2563eb;
    font-weight:700;
    margin-bottom:15px;
}

/* ========================= */
/* WHATSAPP FLOTANTE */
/* ========================= */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    z-index:999;
}

.whatsapp-float img{
    width:100%;
    height:100%;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

    .catalogo-content h2{
        font-size:30px;
    }

    .entregas-grid{
        grid-template-columns:1fr;
    }

}

.whatsapp-header img,
.whatsapp-footer img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.whatsapp-footer{
    width:60px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;
}