*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --blue:#0B4A7A;--blue-dark:#083456;--teal:#0D9488;--teal-light:#14B8A6;
  --grey:#F3F4F6;--text:#1F2937;--muted:#64748B;--white:#fff;--border:#E2E8F0;
  --shadow:0 4px 6px -1px rgb(0 0 0/.08);--radius:1rem;
}
html{scroll-behavior:smooth}
body{font-family:system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;color:var(--text);background:var(--white);line-height:1.6}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
.container{max-width:80rem;margin:0 auto;padding:0 1rem}
@media(min-width:640px){.container{padding:0 1.5rem}}
.section{padding:3rem 0}
.section--grey{background:var(--grey)}
.section--blue{background:var(--blue);color:var(--white)}
.section-title{font-size:1.75rem;font-weight:700;color:var(--blue);line-height:1.2}
.section--blue .section-title{color:var(--white)}
@media(min-width:1024px){.section{padding:4rem 0}.section-title{font-size:2rem}}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:.75rem 1.5rem;border-radius:.75rem;font-weight:600;font-size:.95rem;border:2px solid transparent;cursor:pointer;transition:.2s}
.btn--primary{background:var(--blue);color:var(--white)}
.btn--primary:hover{background:var(--blue-dark)}
.btn--secondary{background:var(--white);color:var(--blue);border-color:var(--blue)}
.btn--secondary:hover{background:var(--grey)}
.btn--whatsapp{background:#25D366;color:var(--white)}
.btn--whatsapp:hover{background:#20BD5A}
.btn--sm{padding:.5rem 1rem;font-size:.875rem}
.btn--block{width:100%}
.card{background:var(--white);border:1px solid var(--border);border-radius:1rem;overflow:hidden;box-shadow:var(--shadow);transition:.2s}
.card:hover{box-shadow:0 10px 15px -3px rgb(0 0 0/.1)}
.grid-2{display:grid;gap:1.5rem}
.grid-3{display:grid;gap:1.5rem}
@media(min-width:640px){.grid-2{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.grid-3{grid-template-columns:repeat(3,1fr)}}
.header{position:sticky;top:0;z-index:50;background:var(--white);border-bottom:1px solid var(--border);box-shadow:0 1px 3px rgb(0 0 0/.05)}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:4rem}
.logo{display:flex;align-items:center;gap:.5rem}
.logo__icon{width:2.25rem;height:2.25rem;background:var(--blue);border-radius:.5rem;display:flex;align-items:center;justify-content:center;color:var(--white)}
.logo__name{font-weight:700;color:var(--blue);font-size:.95rem}
.logo__tag{font-size:.7rem;color:var(--muted)}
.nav{display:none;align-items:center;gap:.25rem}
@media(min-width:1024px){.nav{display:flex}}
.nav__link{padding:.5rem .75rem;font-size:.875rem;font-weight:500;color:var(--text);border-radius:.5rem}
.nav__link:hover{color:var(--blue);background:var(--grey)}
.nav__group{position:relative}
.nav__group:hover .nav__dropdown{opacity:1;visibility:visible}
.nav__dropdown{position:absolute;top:100%;left:0;padding-top:.25rem;opacity:0;visibility:hidden;transition:.2s}
.nav__dropdown-inner{background:var(--white);border:1px solid var(--border);border-radius:.75rem;box-shadow:var(--shadow);min-width:12rem;padding:.5rem 0}
.nav__dropdown a{display:block;padding:.5rem 1rem;font-size:.875rem}
.nav__dropdown a:hover{background:var(--grey);color:var(--blue)}
.header__actions{display:none;align-items:center;gap:.75rem}
@media(min-width:1024px){.header__actions{display:flex}}
.menu-btn{display:block;padding:.5rem;background:none;border:none;cursor:pointer}
@media(min-width:1024px){.menu-btn{display:none}}
.mobile-nav{display:none;border-top:1px solid var(--border);padding:1rem 0}
.mobile-nav.open{display:block}
.mobile-nav a{display:block;padding:.75rem;font-weight:500;border-radius:.5rem}
.mobile-nav a:hover{background:var(--grey)}
.hero{padding:2.5rem 0}
.hero__grid{display:grid;gap:2.5rem;align-items:center}
@media(min-width:1024px){.hero__grid{grid-template-columns:1fr 1fr}}
.hero h1{font-size:2rem;font-weight:700;color:var(--blue);line-height:1.15;margin-bottom:1rem}
@media(min-width:1024px){.hero h1{font-size:2.75rem}}
.hero__sub{font-size:1.1rem;color:var(--muted);margin-bottom:1.5rem}
.hero__img{border-radius:1rem;overflow:hidden;box-shadow:var(--shadow);aspect-ratio:4/3;object-fit:cover;width:100%}
.hero__ctas{display:flex;flex-wrap:wrap;gap:.75rem}
.trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
@media(min-width:768px){.trust-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.trust-grid{grid-template-columns:repeat(6,1fr)}}
.trust-item{text-align:center;padding:1rem}
.trust-item__icon{width:3rem;height:3rem;background:#F0FDFA;color:var(--teal);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto .75rem;font-size:1.25rem}
.trust-item span{font-size:.8rem;font-weight:600;color:var(--blue)}
.product-card__img{aspect-ratio:4/3;object-fit:cover;width:100%}
.product-card__body{padding:1.25rem}
.product-card h3{font-size:1.1rem;color:var(--blue);margin-bottom:.25rem}
.product-card__best{font-size:.85rem;color:var(--teal);font-weight:500;margin-bottom:.75rem}
.product-card ul{font-size:.875rem;color:var(--muted);list-style:none;margin-bottom:1rem}
.product-card li{padding:.2rem 0;padding-left:1.25rem;position:relative}
.product-card li::before{content:"✓";position:absolute;left:0;color:var(--teal);font-weight:700}
.product-card__price{font-size:.875rem;font-weight:600;color:var(--muted);margin-bottom:.75rem}
.breadcrumb{margin-bottom:1.5rem;font-size:.875rem;color:var(--muted)}
.breadcrumb a:hover{color:var(--teal)}
.breadcrumb span{color:var(--blue);font-weight:500}
.form-group{margin-bottom:1rem}
.form-label{display:block;font-size:.875rem;font-weight:600;color:var(--blue);margin-bottom:.35rem}
.form-input,.form-select,.form-textarea{width:100%;padding:.75rem 1rem;border:1px solid #CBD5E1;border-radius:.75rem;font:inherit}
.form-input:focus,.form-select:focus,.form-textarea:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px rgb(13 148 136/.15)}
.form-textarea{resize:vertical;min-height:6rem}
.form-honeypot{position:absolute;left:-9999px;opacity:0;height:0;overflow:hidden}
.faq-item{border:1px solid var(--border);border-radius:.75rem;margin-bottom:.75rem;overflow:hidden;background:var(--white)}
.faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1rem 1.25rem;background:none;border:none;font:inherit;font-weight:600;color:var(--blue);cursor:pointer;text-align:left}
.faq-a{display:none;padding:0 1.25rem 1rem;color:var(--muted);font-size:.9rem}
.faq-item.open .faq-a{display:block}
.faq-item.open .faq-q svg{transform:rotate(180deg)}
.footer{background:var(--blue);color:var(--white);margin-top:auto}
.footer a{color:#BFDBFE}
.footer a:hover{color:var(--white)}
.footer__grid{display:grid;gap:2rem;padding:3rem 0}
@media(min-width:768px){.footer__grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.footer__grid{grid-template-columns:repeat(4,1fr)}}
.footer h3,.footer h4{margin-bottom:1rem}
.footer ul{list-style:none}
.footer li{margin-bottom:.5rem;font-size:.875rem}
.footer__bottom{border-top:1px solid #1E5A8A;padding:1.5rem 0;display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;font-size:.875rem;color:#93C5FD}
.sticky-wa{position:fixed;bottom:5.5rem;right:1rem;z-index:40;width:3.5rem;height:3.5rem;background:#25D366;color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow)}
@media(min-width:1024px){.sticky-wa{bottom:1.5rem}}
.mobile-cta{position:fixed;bottom:0;left:0;right:0;z-index:50;background:var(--white);border-top:1px solid var(--border);padding:.5rem;display:grid;grid-template-columns:repeat(3,1fr);gap:.25rem}
@media(min-width:1024px){.mobile-cta{display:none}}
.mobile-cta a{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:.5rem;border-radius:.5rem;font-size:.7rem;font-weight:600}
.mobile-cta .order{background:var(--blue);color:var(--white)}
.mobile-cta .call{background:var(--grey);color:var(--blue)}
.mobile-cta .wa{background:#25D366;color:var(--white)}
body{padding-bottom:4.5rem}
@media(min-width:1024px){body{padding-bottom:0}}
.prose h3{font-size:1.1rem;color:var(--blue);margin:1.5rem 0 .5rem}
.prose p,.prose li{color:var(--muted);margin-bottom:.75rem}
.prose ul{padding-left:1.25rem}
.text-center{text-align:center}
.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mb-10{margin-bottom:2.5rem}
.mt-8{margin-top:2rem}
.max-w-3xl{max-width:48rem;margin-left:auto;margin-right:auto}
.max-w-4xl{max-width:56rem;margin-left:auto;margin-right:auto}
.alert{padding:1rem;border-radius:.75rem;font-size:.875rem}
.alert--success{background:#F0FDFA;border:1px solid #99F6E4;color:#115E59}
.alert--error{background:#FEF2F2;border:1px solid #FECACA;color:#991B1B}
.cookie-notice{position:fixed;bottom:5rem;left:1rem;right:1rem;max-width:24rem;margin-left:auto;background:var(--white);border:1px solid var(--border);border-radius:.75rem;padding:1rem;box-shadow:var(--shadow);z-index:40}
@media(min-width:1024px){.cookie-notice{bottom:1rem;right:1rem;left:auto}}
.conversion-block{background:var(--grey);border:1px solid var(--border);border-radius:1rem;padding:1.5rem;margin-top:2rem}
.entity-facts dl{display:grid;gap:1rem}
@media(min-width:640px){.entity-facts dl{grid-template-columns:repeat(2,1fr)}}
.entity-facts dt{font-size:.7rem;text-transform:uppercase;letter-spacing:.05em;color:var(--teal);font-weight:600}
.entity-facts dd{font-weight:600;color:var(--blue);font-size:.9rem}
.ai-block{border-left:4px solid var(--teal);padding-left:1rem;font-style:italic;color:var(--muted);margin-bottom:1rem}