:root {
    --ink: #0f172a;
    --ink-2: #1e293b;
    --muted: #64748b;
    --line: #e2e8f0;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #f59e0b;
    --success: #16a34a;
    --success-dark: #15803d;
    --radius: 22px;
    --shadow-sm: 0 8px 30px rgba(15, 23, 42, .07);
    --shadow: 0 20px 60px rgba(15, 23, 42, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.section-space { padding: 86px 0; }

.announcement-bar {
    background: var(--ink);
    color: #fff;
    font-size: .86rem;
    padding: 9px 0;
}
.announcement-left, .announcement-right { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.announcement-left span, .announcement-right a { display: inline-flex; align-items: center; gap: 7px; opacity: .94; }
.announcement-left i { color: #93c5fd; }
.announcement-right a:last-child i { color: #4ade80; }

.site-header {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226,232,240,.9);
    transition: box-shadow .2s ease, background .2s ease;
    z-index: 1030;
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(15,23,42,.08); }
.site-header .navbar { min-height: 82px; }
.brand-wrap { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { width: 58px; height: 58px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.1rem; letter-spacing: .08em; }
.brand-text small { margin-top: 6px; font-size: .72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.navbar-nav .nav-link { font-weight: 700; color: #334155; padding: .7rem .75rem !important; border-radius: 12px; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary); background: #eff6ff; }
.header-search {
    min-width: 210px;
    height: 44px;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    border-radius: 14px;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
}
.header-search i { color: var(--muted); }
.header-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: .93rem; }
.btn { border-radius: 13px; font-weight: 750; padding: .72rem 1.05rem; }
.btn-lg { border-radius: 15px; padding: .9rem 1.25rem; }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-whatsapp { background: #16a34a; color: #fff; border: 1px solid #16a34a; white-space: nowrap; }
.btn-whatsapp:hover { color: #fff; background: #15803d; border-color: #15803d; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.eyebrow.light { color: #bfdbfe; }

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 72px;
    background:
        radial-gradient(circle at 10% 0%, rgba(37,99,235,.13), transparent 33%),
        radial-gradient(circle at 90% 20%, rgba(245,158,11,.12), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(37,99,235,.06);
}
.hero-section h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(2.45rem, 5vw, 4.65rem);
    line-height: 1.03;
    letter-spacing: -.055em;
    font-weight: 900;
}
.hero-section h1 span { color: var(--primary); }
.hero-lead { max-width: 760px; color: #475569; font-size: 1.12rem; margin: 24px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.hero-trust > div { display: flex; align-items: center; gap: 10px; }
.hero-trust i { font-size: 1.35rem; color: var(--success); }
.hero-trust span { display: flex; flex-direction: column; line-height: 1.25; }
.hero-trust strong { font-size: .93rem; }
.hero-trust small { color: var(--muted); font-size: .76rem; }
.hero-visual {
    position: relative;
    min-height: 480px;
    padding: 20px;
    border-radius: 32px;
    background: linear-gradient(145deg, #0f172a, #1e3a8a);
    box-shadow: var(--shadow);
}
.hero-image-link { display: block; height: 100%; min-height: 440px; border-radius: 24px; overflow: hidden; background: #fff; }
.hero-image-link img { width: 100%; height: 440px; object-fit: contain; padding: 18px; }
.hero-card-badge {
    position: absolute;
    top: 38px;
    left: 38px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .82rem;
}
.hero-mini-card {
    position: absolute;
    right: -18px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    min-width: 235px;
}
.hero-mini-card .icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: #dcfce7; color: var(--success); font-size: 1.25rem; }
.hero-mini-card div { display: flex; flex-direction: column; line-height: 1.3; }
.hero-mini-card small { color: var(--muted); }

.benefit-strip { padding: 24px 0; border-top: 1px solid #eff3f8; border-bottom: 1px solid #eff3f8; background: #fff; }
.benefit-item { height: 100%; display: flex; align-items: center; gap: 12px; padding: 10px 14px; }
.benefit-item > i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: #eff6ff; color: var(--primary); font-size: 1.25rem; }
.benefit-item div { display: flex; flex-direction: column; line-height: 1.25; }
.benefit-item strong { font-size: .95rem; }
.benefit-item span { color: var(--muted); font-size: .8rem; }

.section-heading { margin-bottom: 34px; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.035em; font-weight: 900; }
.section-heading p { margin: 12px 0 0; color: var(--muted); max-width: 690px; }
.results-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: #475569; background: #fff; font-weight: 700; font-size: .9rem; }
.products-section { background: var(--surface-soft); }
.product-card {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #dbeafe; }
.product-media-wrap { position: relative; padding: 12px; }
.product-media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 16px; background: #f8fafc; }
.product-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.045); }
.product-badge { position: absolute; top: 24px; left: 24px; z-index: 2; background: rgba(15,23,42,.92); color: #fff; border-radius: 999px; padding: 6px 10px; font-size: .74rem; font-weight: 800; }
.zoom-badge { position: absolute; right: 12px; bottom: 12px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: 0 6px 18px rgba(15,23,42,.12); }
.zoom-badge.large { width: auto; height: auto; padding: 10px 13px; display: inline-flex; gap: 7px; }
.quick-wa { position: absolute; right: 24px; top: 24px; z-index: 3; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: #16a34a; color: #fff; box-shadow: 0 8px 20px rgba(22,163,74,.22); }
.quick-wa:hover { color: #fff; background: #15803d; }
.product-card-body { padding: 10px 20px 22px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .74rem; margin-bottom: 10px; }
.product-meta span { display: inline-flex; align-items: center; gap: 5px; }
.product-card h3 { font-size: 1.15rem; line-height: 1.35; font-weight: 850; margin: 0 0 14px; min-height: 3.1em; }
.product-card h3 a:hover { color: var(--primary); }
.product-price { min-height: 58px; display: flex; flex-direction: column; gap: 3px; margin-bottom: 16px; }
.product-price strong { color: var(--ink); font-size: 1rem; }
.product-price small { color: var(--muted); }
.product-actions { display: flex; gap: 8px; }
.empty-state { text-align: center; padding: 70px 20px; border: 1px dashed #cbd5e1; border-radius: var(--radius); background: #fff; }
.empty-state > i { font-size: 2.3rem; color: var(--primary); }
.empty-state h3 { margin: 14px 0 8px; font-weight: 850; }
.empty-state p { color: var(--muted); }

.process-panel { padding: 54px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(180deg,#fff,#f8fafc); }
.process-panel .section-heading { max-width: 720px; }
.process-step { position: relative; height: 100%; padding: 28px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.process-step > span { position: absolute; right: 22px; top: 20px; font-size: 2.1rem; color: #e2e8f0; font-weight: 900; }
.process-step > i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #eff6ff; color: var(--primary); font-size: 1.3rem; margin-bottom: 18px; }
.process-step h3 { font-size: 1.05rem; font-weight: 850; }
.process-step p { color: var(--muted); margin: 0; font-size: .92rem; }

.page-hero { background: linear-gradient(135deg,#f8fbff,#eef4ff); border-bottom: 1px solid #e5edf8; }
.page-hero.compact { padding: 58px 0; }
.page-hero h1 { margin: 0; font-size: clamp(2.15rem,4vw,3.8rem); font-weight: 900; letter-spacing: -.045em; }
.page-hero p { color: var(--muted); margin: 12px 0 0; max-width: 760px; }
.breadcrumb { margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb-item.active { color: var(--ink); }

.product-gallery-panel, .product-info-panel { border: 1px solid var(--line); border-radius: 26px; background: #fff; }
.product-gallery-panel { padding: 16px; }
.detail-main-image { position: relative; display: block; aspect-ratio: 1 / .82; border-radius: 19px; overflow: hidden; background: #f8fafc; }
.detail-main-image img { width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.detail-main-image .zoom-badge { position: absolute; right: 14px; bottom: 14px; }
.thumbnail-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; margin-top: 12px; }
.thumb { aspect-ratio: 1; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; background: #fff; }
.thumb:hover { border-color: var(--primary); }
.thumb img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.product-info-panel { padding: clamp(24px,4vw,42px); }
.product-top-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
.product-top-badges span { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 800; color: #1e40af; background: #eff6ff; border-radius: 999px; padding: 7px 10px; }
.product-info-panel h2 { font-size: clamp(2rem,3vw,3.1rem); font-weight: 900; letter-spacing: -.04em; margin: 0; }
.detail-price { display: flex; flex-direction: column; gap: 4px; padding: 20px 0; margin: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-price strong { font-size: 1.25rem; }
.detail-price small { color: var(--muted); }
.rich-content { color: #334155; }
.rich-content p:last-child { margin-bottom: 0; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.detail-benefits { margin-top: 28px; display: grid; gap: 12px; }
.detail-benefits > div { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 15px; background: var(--surface-soft); }
.detail-benefits i { color: var(--success); font-size: 1.2rem; }
.detail-benefits span { display: flex; flex-direction: column; line-height: 1.3; }
.detail-benefits small { color: var(--muted); }
.contact-mini-card { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 38px; border-radius: 26px; background: #f0fdf4; border: 1px solid #bbf7d0; }
.contact-mini-card h2 { margin: 0; font-weight: 900; }
.contact-mini-card p { color: #47624f; margin: 10px 0 0; }

.gallery-card { position: relative; display: block; aspect-ratio: 1; overflow: hidden; border-radius: 20px; background: #f8fafc; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card span { position: absolute; right: 14px; bottom: 14px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,255,255,.94); font-size: 1.1rem; }

.video-card { height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.video-frame { aspect-ratio: 16 / 10; background: #020617; }
.video-frame video { width: 100%; height: 100%; object-fit: contain; }
.video-card-body { padding: 20px; }
.video-card-body span { color: var(--primary); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.video-card-body h2 { font-size: 1.08rem; font-weight: 850; margin: 8px 0 0; }

.contact-form-card, .map-card, .contact-info-card { border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.contact-form-card { padding: clamp(24px,4vw,38px); box-shadow: var(--shadow-sm); }
.contact-form-card h2 { font-weight: 900; letter-spacing: -.03em; }
.contact-form-card > p { color: var(--muted); }
.form-control { border-radius: 13px; border-color: #dbe2ea; padding: .78rem .9rem; }
.form-control:focus { border-color: #93c5fd; box-shadow: 0 0 0 .25rem rgba(37,99,235,.11); }
.form-label { font-weight: 750; font-size: .9rem; }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-info-card { display: flex; align-items: center; gap: 15px; padding: 20px; transition: transform .2s ease, box-shadow .2s ease; }
a.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); color: inherit; }
.contact-info-card > i { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #eff6ff; color: var(--primary); font-size: 1.25rem; }
.contact-info-card div { min-width: 0; display: flex; flex-direction: column; line-height: 1.35; }
.contact-info-card span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 800; }
.contact-info-card strong { overflow-wrap: anywhere; }
.contact-info-card small { color: var(--muted); }
.map-card { overflow: hidden; height: 410px; }
.map-card iframe { width: 100%; height: 100%; border: 0; }

.about-section h2 { font-size: clamp(2rem,3vw,3.2rem); font-weight: 900; letter-spacing: -.04em; }
.about-section p { color: #475569; }
.about-stats-card { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px; border-radius: 28px; background: var(--ink); box-shadow: var(--shadow); }
.stat-box { min-height: 170px; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; border-radius: 19px; background: #1e293b; color: #fff; }
.stat-box > i { font-size: 1.5rem; color: #93c5fd; margin-bottom: auto; }
.stat-box strong { font-size: 1.5rem; }
.stat-box span { color: #cbd5e1; font-size: .85rem; }
.feature-card { height: 100%; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.feature-card > i { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: #eff6ff; color: var(--primary); font-size: 1.3rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 850; margin: 18px 0 8px; }
.feature-card p { margin: 0; color: var(--muted); }

.cta-band { padding: 58px 0; color: #fff; background: linear-gradient(120deg,#0f172a,#1e3a8a); }
.cta-band h2 { margin: 0; font-size: clamp(2rem,3vw,3rem); font-weight: 900; letter-spacing: -.035em; }
.cta-band p { color: #dbeafe; margin: 12px 0 0; }
.site-footer { padding: 66px 0 26px; background: #070d1a; color: #cbd5e1; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer-brand img { width: 62px; height: 62px; object-fit: contain; background: #fff; border-radius: 14px; padding: 5px; }
.footer-brand div { display: flex; flex-direction: column; line-height: 1.3; }
.footer-brand strong { letter-spacing: .08em; }
.footer-brand span { color: #94a3b8; font-size: .8rem; }
.footer-copy { color: #94a3b8; margin-top: 18px; max-width: 360px; }
.site-footer h3 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a:hover { color: #fff; }
.contact-list a { display: inline-flex; align-items: center; gap: 8px; }
.footer-address { display: flex; gap: 9px; color: #94a3b8; }
.footer-link { display: inline-flex; align-items: center; gap: 7px; color: #93c5fd; font-weight: 750; }
.footer-bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid #1e293b; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: #64748b; font-size: .82rem; }
.footer-bottom a { color: #94a3b8; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 24px; z-index: 1040; display: flex; align-items: center; gap: 9px; padding: 12px 16px; color: #fff; background: #16a34a; border-radius: 999px; box-shadow: 0 16px 38px rgba(22,163,74,.3); font-weight: 850; }
.floating-whatsapp:hover { color: #fff; background: #15803d; transform: translateY(-2px); }
.mobile-action-bar { position: fixed; left: 12px; right: 12px; bottom: 10px; z-index: 1050; display: grid; grid-template-columns: repeat(3,1fr); background: rgba(15,23,42,.97); border: 1px solid #334155; border-radius: 18px; padding: 7px; box-shadow: 0 18px 50px rgba(15,23,42,.32); }
.mobile-action-bar a { display: flex; flex-direction: column; align-items: center; gap: 2px; color: #e2e8f0; padding: 7px 4px; font-size: .72rem; font-weight: 800; }
.mobile-action-bar a i { font-size: 1.08rem; }
.mobile-action-bar .wa { background: #16a34a; color: #fff; border-radius: 12px; }

@media (max-width: 1199.98px) {
    .header-search { min-width: 170px; }
    .navbar-nav .nav-link { padding-left: .55rem !important; padding-right: .55rem !important; }
}
@media (max-width: 991.98px) {
    body { padding-bottom: 82px; }
    .site-header .navbar { min-height: 72px; }
    .navbar-collapse { padding: 18px 0 8px; }
    .navbar-nav { gap: 3px; }
    .header-search { width: 100%; min-width: 0; }
    .hero-section { padding: 64px 0 54px; }
    .hero-visual { min-height: 390px; }
    .hero-image-link, .hero-image-link img { min-height: 350px; height: 350px; }
    .hero-mini-card { right: 15px; }
    .section-space { padding: 64px 0; }
    .contact-mini-card { flex-direction: column; align-items: flex-start; }
    .floating-whatsapp { display: none; }
    .cta-band { padding: 48px 0; }
}
@media (max-width: 767.98px) {
    .announcement-bar { font-size: .74rem; }
    .announcement-left { justify-content: center; gap: 10px 14px; }
    .brand-logo { width: 50px; height: 50px; }
    .hero-section h1 { font-size: clamp(2.25rem,11vw,3.3rem); }
    .hero-actions .btn { width: 100%; }
    .hero-trust { gap: 15px; }
    .hero-visual { padding: 12px; min-height: 320px; border-radius: 24px; }
    .hero-image-link, .hero-image-link img { min-height: 296px; height: 296px; border-radius: 18px; }
    .hero-card-badge { top: 24px; left: 24px; }
    .hero-mini-card { bottom: 22px; right: 22px; min-width: 210px; }
    .benefit-item { padding: 8px 4px; }
    .benefit-item > i { width: 40px; height: 40px; }
    .process-panel { padding: 28px 18px; }
    .product-meta { flex-direction: column; align-items: flex-start; }
    .product-card h3 { min-height: 0; }
    .thumbnail-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
    .detail-actions .btn { width: 100%; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .about-stats-card { grid-template-columns: 1fr 1fr; padding: 10px; }
    .stat-box { min-height: 145px; padding: 16px; }
    .page-hero.compact { padding: 42px 0; }
    .site-footer { padding-top: 50px; }
    .footer-bottom { margin-top: 35px; }
}
@media (max-width: 479.98px) {
    .brand-text small { display: none; }
    .hero-trust > div { width: calc(50% - 10px); }
    .hero-mini-card { left: 24px; right: 24px; min-width: auto; }
    .about-stats-card { grid-template-columns: 1fr; }
    .thumbnail-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
