/* ===========================================================
   PandaPack — hoja de estilos compartida
   =========================================================== */

:root{
  --teal: #003B4D;
  --teal-2: #06566E;
  --teal-tint: #E7EFF1;
  --pink: #FE9BB1;
  --pink-2: #FF7FA1;
  --pink-tint: #FFE8EE;
  --cream: #F8F4EC;
  --white: #FFFFFF;
  --ink: #0B2530;
  --muted: #587079;
  --line: rgba(0,59,77,0.12);
  --shadow: 0 10px 30px rgba(0,59,77,0.10);
  --shadow-sm: 0 4px 14px rgba(0,59,77,0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: 'Quicksand', 'Poppins', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4{
  font-family: 'Baloo 2', 'Quicksand', sans-serif;
  color: var(--teal);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 700;
}

h1{ font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2{ font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3{ font-size: 1.35rem; }

p{ margin:0 0 1em; color: var(--ink); }
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; }
li{ list-style:none; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Baloo 2', sans-serif;
  font-size:.8rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--pink-2);
  font-weight:700;
  margin-bottom:10px;
}
.eyebrow::before{
  content:"";
  width:22px; height:3px; border-radius:3px;
  background: var(--pink);
  display:inline-block;
}

.section{ padding: 78px 0; }
.section--tight{ padding: 48px 0; }
.section--teal{ background: var(--teal); color:#fff; }
.section--teal h2, .section--teal h3{ color:#fff; }
.section--teal p{ color: rgba(255,255,255,.82); }
.section--pink{ background: var(--pink-tint); }
.section--white{ background: var(--white); }

.section-head{
  max-width: 680px;
  margin: 0 0 40px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:'Baloo 2', sans-serif;
  font-weight:700;
  font-size:1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-pink{
  background: var(--pink);
  color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.btn-pink:hover{ background: var(--pink-2); box-shadow: var(--shadow); }
.btn-outline{
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover{ background: rgba(255,255,255,.12); }
.btn-teal{
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover{ background: var(--teal-2); }
.btn-wa{
  background:#25D366;
  color:#06341f;
}
.btn-wa:hover{ background:#1ebe5b; }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 20px; font-size:.9rem; }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(248,244,236,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 20px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:'Baloo 2', sans-serif;
  font-weight:700; font-size:1.05rem; color: var(--teal);
}
.brand img{ height:46px; width:auto; }
.nav-links{
  display:flex; align-items:center; gap: 6px;
  flex:1;
  justify-content:center;
}
.nav-links a{
  font-family:'Baloo 2', sans-serif;
  font-weight:600;
  font-size:.96rem;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--teal);
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover, .nav-links a.active{
  background: var(--teal);
  color:#fff;
}
.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width:42px; height:42px;
  border-radius: 10px;
  align-items:center; justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:22px; height:2px; background: var(--teal);
  position:relative; transition:.2s;
}
.nav-toggle span::before{ position:absolute; top:-7px; }
.nav-toggle span::after{ position:absolute; top:7px; }

@media (max-width: 900px){
  .nav-links{
    position:fixed; inset: 68px 16px auto 16px;
    background:#fff; border-radius: 18px; box-shadow: var(--shadow);
    flex-direction:column; align-items:stretch; padding:12px;
    display:none;
    border:1px solid var(--line);
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ text-align:center; padding:12px; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn span.long{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  background: linear-gradient(155deg, #FFFFFF 0%, var(--cream) 55%, var(--pink-tint) 100%);
  color: var(--ink);
  position:relative;
  overflow:hidden;
  padding: 70px 0 90px;
  border-bottom: 1px solid var(--line);
}
.hero::before{
  content:"";
  position:absolute; right:-140px; top:-140px; width:420px; height:420px;
  background: var(--pink); opacity:.14; border-radius:50%;
}
.hero::after{
  content:"";
  position:absolute; left:-100px; bottom:-160px; width:340px; height:340px;
  background: var(--teal); opacity:.06; border-radius:50%;
}
.hero-grid{
  display:grid; grid-template-columns: 1.15fr 0.85fr; gap:48px; align-items:center;
  position:relative; z-index:2;
}
.hero h1{ color: var(--teal); }
.hero h1 .accent{ color: var(--pink-2); }
.hero p.lead{ color: var(--muted); font-size:1.1rem; max-width:520px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:26px; }
.hero-actions .btn-outline{ border-color: var(--teal); color: var(--teal); }
.hero-actions .btn-outline:hover{ background: var(--teal); color:#fff; }
.hero-stats{
  display:flex; gap:28px; margin-top:44px; flex-wrap:wrap;
}
.hero-stats div strong{
  font-family:'Baloo 2', sans-serif; font-size:1.7rem; display:block; color: var(--pink-2);
}
.hero-stats div span{ font-size:.85rem; color: var(--muted); }
.hero-art{
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.hero-art::before{
  content:"";
  position:absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(254,155,177,0.20) 0%, rgba(254,155,177,0.10) 48%, rgba(254,155,177,0) 76%);
  border-radius: 50%;
  z-index:0;
}
.hero-art img{
  position:relative;
  z-index:1;
  max-width: 320px;
  filter: drop-shadow(0 24px 30px rgba(0,59,77,.18));
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; text-align:center; }
  .hero p.lead{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
  .hero-stats{ justify-content:center; }
  .hero-art img{ max-width: 220px; margin-top: 20px; }
  .hero-art::before{ width: 250px; height: 250px; }
}

/* ---------- Cards ---------- */
.grid{ display:grid; gap:26px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){
  .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px){
  .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; }
}

.card{
  background:#fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon-badge{
  width:56px; height:56px; border-radius:16px;
  background: var(--pink-tint);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
  font-size:1.6rem;
}
.card h3{ margin-bottom:8px; }
.card p{ color: var(--muted); margin-bottom:0; font-size:.96rem; }
.card a.card-link{
  display:inline-flex; align-items:center; gap:6px; margin-top:14px;
  font-family:'Baloo 2', sans-serif; font-weight:700; color: var(--teal-2); font-size:.92rem;
}

.product-card{
  background:#fff; border-radius: var(--radius); overflow:hidden;
  box-shadow: var(--shadow-sm); border:1px solid var(--line);
}
.product-card img{ width:100%; height: 260px; object-fit:cover; }
.product-card .pc-body{ padding:26px; }
.product-card .pc-body p{ color:var(--muted); }
.tag-row{ display:flex; gap:8px; flex-wrap:wrap; margin-top:14px; }
.tag{
  background: var(--teal-tint); color: var(--teal);
  font-size:.78rem; font-weight:700; font-family:'Baloo 2', sans-serif;
  padding:6px 12px; border-radius:999px;
}

/* ---------- Gallery ---------- */
.gallery-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:16px;
}
@media (max-width: 980px){ .gallery-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 700px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }
.gallery-item{
  position:relative; border-radius: 16px; overflow:hidden; cursor:pointer;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/5;
  background:#fff;
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .35s ease; }
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-cap{
  position:absolute; inset:auto 0 0 0;
  background: linear-gradient(0deg, rgba(0,20,26,.82), transparent);
  color:#fff; padding: 30px 14px 12px;
  font-family:'Baloo 2', sans-serif; font-size:.86rem; font-weight:600;
}
.filter-row{
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom:30px;
}
.filter-chip{
  font-family:'Baloo 2', sans-serif; font-weight:700; font-size:.86rem;
  padding: 9px 18px; border-radius:999px; border:2px solid var(--teal);
  color: var(--teal); background:transparent; cursor:pointer; transition:.15s;
}
.filter-chip.active, .filter-chip:hover{ background: var(--teal); color:#fff; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; background:rgba(2,20,26,.92);
  display:none; align-items:center; justify-content:center; z-index:999; padding:30px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width: min(900px,92vw); max-height:86vh; border-radius:14px; box-shadow:0 20px 60px rgba(0,0,0,.5); }
.lightbox-close{
  position:absolute; top:22px; right:26px; color:#fff; font-size:2rem; cursor:pointer;
  background:none; border:none; line-height:1;
}
.lightbox-cap{ position:absolute; bottom:30px; left:0; right:0; text-align:center; color:#fff; font-family:'Baloo 2',sans-serif; }

/* ---------- Sizes table ---------- */
.size-grid{
  display:grid; grid-template-columns: repeat(5, 1fr); gap:18px;
}
@media (max-width: 980px){ .size-grid{ grid-template-columns: repeat(3,1fr);} }
@media (max-width: 640px){ .size-grid{ grid-template-columns: repeat(2,1fr);} }
.size-card{
  background:#fff; border-radius:16px; overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow-sm);
  text-align:center;
}
.size-card img{ width:100%; aspect-ratio:1/1; object-fit:cover; background:#0a3a4c; }
.size-card .sc-info{ padding:12px 8px 16px; }
.size-card .sc-code{ font-family:'Baloo 2', sans-serif; font-weight:700; color:var(--teal); font-size:1rem; }
.size-card .sc-dim{ font-size:.8rem; color:var(--muted); margin-top:2px; }

/* ---------- Steps ---------- */
.steps{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
@media (max-width: 900px){ .steps{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr;} }
.step{ position:relative; padding-top:8px; }
.step .num{
  font-family:'Baloo 2', sans-serif; font-size:2.4rem; font-weight:700;
  color: var(--pink); opacity:.9; line-height:1;
}
.step h3{ margin-top:6px; }
.step p{ color: var(--muted); font-size:.95rem; }

/* ---------- FAQ ---------- */
.faq-item{
  background:#fff; border-radius:16px; border:1px solid var(--line); margin-bottom:14px; overflow:hidden;
}
.faq-q{
  width:100%; text-align:left; padding:20px 22px; background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  font-family:'Baloo 2', sans-serif; font-weight:700; color: var(--teal); font-size:1.02rem;
}
.faq-q::after{ content:"+"; font-size:1.4rem; color: var(--pink-2); transition: transform .2s; }
.faq-item.open .faq-q::after{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; padding:0 22px; }
.faq-item.open .faq-a{ max-height:300px; padding-bottom:20px; }
.faq-a p{ color: var(--muted); margin:0; }

/* ---------- Forms ---------- */
.form-card{
  background:#fff; border-radius: var(--radius); padding:36px; box-shadow: var(--shadow-sm); border:1px solid var(--line);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{
  display:block; font-family:'Baloo 2', sans-serif; font-weight:700; font-size:.88rem; color:var(--teal); margin-bottom:7px;
}
.field input, .field select, .field textarea{
  width:100%; padding:13px 14px; border-radius:12px; border:1.6px solid var(--line);
  font-family:'Quicksand', sans-serif; font-size:.98rem; background: var(--cream); color: var(--ink);
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--pink);
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:.82rem; color:var(--muted); margin-top:14px; }
.form-success{
  display:none; background: var(--teal-tint); border:1px solid var(--teal); color:var(--teal);
  padding:14px 18px; border-radius:12px; font-weight:600; margin-top:16px; font-size:.92rem;
}
.form-success.show{ display:block; }

/* ---------- Contact cards ---------- */
.contact-cards{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .contact-cards{ grid-template-columns:1fr; } }
.contact-card{
  background:#fff; border-radius:18px; padding:28px; text-align:center; border:1px solid var(--line); box-shadow: var(--shadow-sm);
}
.contact-card .icn{ font-size:2rem; margin-bottom:10px; }
.contact-card h3{ margin-bottom:6px; }
.contact-card a{ color: var(--teal-2); font-weight:700; }

/* ---------- Brand marquee ---------- */
.brand-wall{
  display:flex; flex-wrap:wrap; gap:12px; justify-content:center;
}
.brand-chip{
  font-family:'Baloo 2', sans-serif; font-weight:700; font-size:.94rem;
  padding:10px 20px; border-radius:999px; background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.25); color:#fff;
}

/* ---------- CTA banner ---------- */
.cta-banner{
  background: linear-gradient(120deg, var(--pink) 0%, #FFC6D4 100%);
  border-radius: 28px;
  padding: 56px;
  text-align:center;
  color: var(--teal);
  position:relative;
  overflow:hidden;
}
.cta-banner h2{ color: var(--teal); }
.cta-banner .actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:22px; }

/* ---------- WhatsApp float ---------- */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index: 200;
  background:#25D366; color:#fff; width:60px; height:60px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px rgba(0,0,0,.25);
  font-size:1.7rem; transition: transform .2s;
}
.wa-float:hover{ transform: scale(1.08); }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--teal); color: rgba(255,255,255,.85); padding: 56px 0 28px;
}
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom:36px;
}
@media (max-width:900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand img{ height:42px; }
.footer-brand span{ font-family:'Baloo 2', sans-serif; font-weight:700; color:#fff; font-size:1.1rem; }
.site-footer h4{ color:#fff; font-family:'Baloo 2', sans-serif; font-size:.95rem; margin-bottom:14px; }
.site-footer a{ color: rgba(255,255,255,.78); display:block; margin-bottom:9px; font-size:.92rem; }
.site-footer a:hover{ color: var(--pink); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.15); padding-top:20px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.82rem; color: rgba(255,255,255,.6);
}
.social-row{ display:flex; gap:12px; margin-top:10px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; margin:0;
}

/* Page hero (inner pages) */
.page-hero{
  background: var(--teal); color:#fff; padding: 64px 0 56px; text-align:center;
}
.page-hero h1{ color:#fff; }
.page-hero p{ color: rgba(255,255,255,.82); max-width:640px; margin:0 auto; }

.divider-img{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.divider-img img{ width:100%; object-fit:cover; }

.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:center; }
@media (max-width: 900px){ .two-col{ grid-template-columns:1fr; } }

.badge-list{ display:flex; flex-direction:column; gap:16px; margin-top:20px; }
.badge-list li{ display:flex; gap:14px; align-items:flex-start; }
.badge-list .dot{
  width:34px; height:34px; border-radius:10px; background: var(--pink-tint); color: var(--pink-2);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-weight:700; font-family:'Baloo 2',sans-serif;
}
