:root {
    --navy-950: #091321;
    --navy-900: #0d1829;
    --navy-800: #15243a;
    --navy-700: #233650;
    --orange-600: #e84f0e;
    --orange-500: #f56621;
    --orange-400: #ff7b3e;
    --cream: #fff8f1;
    --warm-100: #fff2e7;
    --blue-50: #f4f7fa;
    --line: #e1e7ed;
    --text: #263548;
    --muted: #637083;
    --white: #fff;
    --green: #20b45b;
    --shadow: 0 20px 60px rgba(9, 19, 33, .11);
    --radius: 18px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-950); line-height: 1.16; letter-spacing: -.03em; }
h1 { font-size: clamp(2.6rem, 5.2vw, 5.4rem); }
h2 { font-size: clamp(2rem, 3.3vw, 3.35rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1.3rem; }
code { padding: .1rem .35rem; color: var(--orange-600); background: var(--warm-100); border-radius: 4px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); }
.section { padding: 100px 0; }
.soft-section { background: var(--blue-50); }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-140%); padding: .7rem 1rem; color: #fff; background: var(--navy-950); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; vertical-align: -.2em; }
.mini-icon { width: 1em; height: 1em; vertical-align: -.12em; }
.eyebrow { display: inline-block; margin-bottom: 12px; color: var(--orange-600); font-size: .77rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow.light { color: #ffb18c; }
.lead { color: #34465b; font-size: 1.12rem; line-height: 1.75; }

.topbar { position: relative; z-index: 101; color: #dce4ed; background: var(--navy-950); font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; }
.topbar p { margin: 0; }
.topbar a { display: flex; gap: 8px; align-items: center; color: #fff; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(13,24,41,.08); backdrop-filter: blur(12px); transition: box-shadow .2s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(9,19,33,.09); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.brand { display: inline-flex; gap: 12px; align-items: center; color: var(--navy-950); }
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong { font-size: 1.32rem; font-style: italic; font-weight: 800; letter-spacing: .08em; line-height: 1; }
.brand small { margin-top: 5px; color: var(--orange-600); font-size: .58rem; font-weight: 800; letter-spacing: .22em; }
.brand-mark { position: relative; display: inline-flex; width: 42px; height: 48px; align-items: flex-end; justify-content: center; }
.brand-mark i { position: absolute; bottom: 4px; width: 17px; height: 31px; background: var(--orange-500); border-radius: 80% 15% 65% 45%; transform: rotate(37deg); }
.brand-mark i:nth-child(2) { bottom: 5px; left: 5px; width: 13px; height: 25px; opacity: .65; transform: rotate(15deg); }
.brand-mark i:nth-child(3) { bottom: 3px; right: 4px; width: 12px; height: 23px; opacity: .3; transform: rotate(55deg); }
.brand-light { color: #fff; }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav > a, .nav-dropdown > button { position: relative; padding: 30px 0; color: var(--navy-800); background: transparent; border: 0; cursor: pointer; font-size: .86rem; font-weight: 700; }
.main-nav > a:not(.nav-cta)::after, .nav-dropdown > button::after { position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; content: ""; background: var(--orange-500); transform: scaleX(0); transition: transform .2s ease; }
.main-nav > a:hover::after, .main-nav > a.active::after, .nav-dropdown:hover > button::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown > button span { color: var(--orange-600); }
.dropdown-panel { position: absolute; top: calc(100% - 10px); left: 50%; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); width: min(760px,calc(100vw - 40px)); max-height: min(70vh,610px); padding: 12px; overflow-y: auto; visibility: hidden; opacity: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); transform: translate(-50%,8px); transition: .18s ease; }
.nav-dropdown:hover .dropdown-panel, .nav-dropdown:focus-within .dropdown-panel { visibility: visible; opacity: 1; transform: translate(-50%,0); }
.dropdown-panel a { padding: 10px 12px; border-radius: 8px; font-size: .85rem; font-weight: 650; }
.dropdown-panel a:hover { color: var(--orange-600); background: var(--warm-100); }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; padding: 0; background: var(--blue-50); border: 0; border-radius: 10px; cursor: pointer; }
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle .menu-close { display: none; }

.button { display: inline-flex; gap: 9px; min-height: 50px; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 9px; font-size: .87rem; font-weight: 800; line-height: 1; transition: transform .2s ease, background .2s ease, border .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff !important; background: var(--orange-600); box-shadow: 0 10px 24px rgba(232,79,14,.25); }
.button-primary:hover { background: #ca4007; }
.button-dark { color: #fff; background: var(--navy-950); }
.button-light { color: var(--navy-950); background: #fff; }
.button-whatsapp { color: #fff; background: var(--green); }
.button-ghost { color: #fff; background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.35); backdrop-filter: blur(5px); }
.button.full { width: 100%; }
.main-nav > a.nav-cta { min-height: 43px; padding: 0 17px !important; color: #fff !important; background: var(--orange-600); }
.main-nav > a.nav-cta:hover { background: #ca4007; }

.hero { position: relative; color: #fff; background: var(--navy-950); }
.hero-track { position: relative; height: min(700px, calc(100vh - 120px)); min-height: 570px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s; }
.hero-slide.active { z-index: 1; opacity: 1; visibility: visible; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.active > img { animation: heroZoom 8s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.01); } to { transform: scale(1.06); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,14,25,.94) 0%, rgba(6,14,25,.75) 43%, rgba(6,14,25,.08) 78%); }
.hero-content { position: absolute; z-index: 2; top: 50%; left: 50%; color: #fff; transform: translate(-50%, -50%); }
.hero-content h1, .hero-content h2 { width: min(760px, 67%); margin-bottom: 24px; color: #fff; font-size: clamp(2.65rem, 5vw, 5.2rem); }
.hero-content p { width: min(660px, 62%); margin-bottom: 32px; color: #dbe5ef; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-slide.embedded-title > img { object-position: left center; }
.embedded-title .hero-overlay { background: linear-gradient(90deg, rgba(6,14,25,.08), transparent 60%, rgba(6,14,25,.1)); }
.hero-content.embedded-content { top: auto; bottom: 145px; transform: translateX(-50%); }
.embedded-content .hero-actions { width: max-content; padding: 10px; background: rgba(6,14,25,.68); border: 1px solid rgba(255,255,255,.13); border-radius: 999px; box-shadow: 0 15px 40px rgba(0,0,0,.24); backdrop-filter: blur(8px); }
.hero-controls { position: absolute; z-index: 4; right: 0; bottom: 112px; left: 0; display: flex; gap: 15px; align-items: center; justify-content: flex-end; pointer-events: none; }
.hero-controls button { pointer-events: auto; cursor: pointer; }
.hero-controls > button { width: 43px; height: 43px; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.hero-dots { display: flex; gap: 7px; }
.hero-dots button { width: 24px; height: 3px; padding: 0; background: rgba(255,255,255,.42); border: 0; }
.hero-dots button.active { background: var(--orange-500); }
.hero-stats { position: relative; z-index: 3; margin-top: -86px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); min-height: 86px; background: #fff; border-radius: 14px 14px 0 0; box-shadow: 0 -5px 30px rgba(5,13,23,.14); }
.stats-grid p { display: flex; flex-direction: column; justify-content: center; margin: 0; padding: 0 27px; border-right: 1px solid var(--line); }
.stats-grid p:last-child { border: 0; }
.stats-grid strong { color: var(--navy-950); font-size: 1.05rem; }
.stats-grid span { color: var(--muted); font-size: .77rem; }

.section-head { margin-bottom: 48px; }
.section-head h2 { max-width: 760px; margin-bottom: 16px; }
.section-head p { max-width: 720px; margin-bottom: 0; color: var(--muted); }
.section-head.center h2, .section-head.center p { margin-right: auto; margin-left: auto; }
.row-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.split-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 76px; align-items: center; }
.visual-card { position: relative; padding: 0 0 30px 30px; }
.visual-card::before { position: absolute; bottom: 0; left: 0; width: 72%; height: 75%; content: ""; background: var(--warm-100); border-radius: var(--radius); }
.visual-card img { position: relative; z-index: 1; width: 100%; min-height: 480px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.visual-badge { position: absolute; z-index: 2; right: -20px; bottom: 2px; display: flex; width: 150px; height: 150px; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; background: var(--orange-600); border: 8px solid #fff; border-radius: 50%; }
.visual-badge strong { font-size: 1.6rem; }
.visual-badge span { max-width: 96px; font-size: .72rem; }
.content-column > h2 { margin-bottom: 24px; }
.content-column > p:not(.lead) { display: -webkit-box; overflow: hidden; color: var(--muted); -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.check-list { display: grid; gap: 10px; margin: 24px 0 28px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: center; color: var(--navy-800); font-weight: 700; }
.check-list svg { color: var(--orange-600); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--navy-950); font-size: .88rem; font-weight: 800; }
.text-link svg { color: var(--orange-600); transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }

.services-section { background: var(--blue-50); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; display: flex; min-height: 300px; flex-direction: column; padding: 30px; background: #fff; border: 1px solid #e6ebf0; border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.service-card:hover { z-index: 2; border-color: #ffc6aa; box-shadow: var(--shadow); transform: translateY(-7px); }
.card-icon { display: grid; width: 52px; height: 52px; margin-bottom: 26px; color: var(--orange-600); background: var(--warm-100); border-radius: 12px; place-items: center; }
.card-icon svg { width: 26px; height: 26px; }
.service-card h2, .service-card h3 { margin-bottom: 13px; }
.service-card h2 { font-size: 1.38rem; }
.service-card p { color: var(--muted); font-size: .91rem; }
.service-card .text-link { margin-top: auto; }
.word-badge { position: absolute; top: 30px; right: 25px; color: #7c8897; font-size: .68rem; font-weight: 700; }

.product-showcase { overflow: hidden; }
.power-panel { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 25px; padding: 40px; color: #fff; background: var(--navy-950); border-radius: 24px; box-shadow: var(--shadow); }
.power-panel::after { position: absolute; top: -130px; left: 44%; width: 300px; height: 300px; content: ""; background: rgba(245,102,33,.16); filter: blur(60px); border-radius: 50%; }
.power-panel h3 { margin-bottom: 22px; color: #fff; }
.power-group { position: relative; z-index: 1; padding: 18px; }
.power-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.power-chips a { display: flex; width: 75px; height: 75px; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: var(--navy-800); border: 1px solid #304159; border-radius: 12px; font-size: 1.12rem; font-weight: 800; transition: .2s; }
.power-chips a:hover { background: var(--orange-600); border-color: var(--orange-600); transform: translateY(-3px); }
.power-chips span { color: #aab6c4; font-size: .62rem; text-transform: uppercase; }
.special-products { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.special-products a { display: flex; flex-direction: column; justify-content: flex-end; min-height: 275px; padding: 28px; background: linear-gradient(145deg, #263850, #18273a); border: 1px solid #384a62; border-radius: 16px; }
.special-products a:first-child { background: linear-gradient(145deg, #64361e, #281d19); }
.special-products span { color: #ffb18c; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.special-products strong { font-size: 2.2rem; }
.special-products small { color: #bdc6d0; }
.center-action { margin: 30px 0 0; text-align: center; }

.dark-section { position: relative; overflow: hidden; color: #c7d2de; background: var(--navy-950); }
.dark-section::after { position: absolute; top: -150px; right: -50px; width: 500px; height: 500px; content: ""; background: rgba(232,79,14,.1); filter: blur(80px); border-radius: 50%; }
.light-head h2 { color: #fff; }
.light-head p { color: #aebaca; }
.sector-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid #2b3b50; border-radius: var(--radius); overflow: hidden; }
.sector-grid article { min-height: 260px; padding: 32px 26px; border-right: 1px solid #2b3b50; }
.sector-grid article:last-child { border: 0; }
.sector-grid article > span { color: var(--orange-400); font-size: .78rem; font-weight: 800; }
.sector-grid h3 { margin: 48px 0 15px; color: #fff; }
.sector-grid p { margin: 0; color: #9eabba; font-size: .88rem; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; margin: 0; padding: 0; list-style: none; }
.process-grid::before { position: absolute; top: 30px; right: 9%; left: 9%; height: 1px; content: ""; background: #d8dee6; }
.process-grid li { position: relative; text-align: center; }
.process-grid li > span { position: relative; z-index: 1; display: grid; width: 62px; height: 62px; margin: 0 auto 28px; color: #fff; background: var(--orange-600); border: 8px solid #fff; outline: 1px solid #d8dee6; border-radius: 50%; font-size: .76rem; font-weight: 800; place-items: center; }
.process-grid h3 { margin-bottom: 10px; }
.process-grid p { color: var(--muted); font-size: .88rem; }

.region-preview { background: var(--cream); }
.region-preview-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.region-preview h2 { margin-bottom: 20px; }
.region-preview p { color: var(--muted); }
.city-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.city-pills a { padding: 9px 14px; color: var(--navy-800); background: #fff; border: 1px solid #eadfd5; border-radius: 999px; font-size: .76rem; font-weight: 750; transition: .2s; }
.city-pills a:hover, .city-pills .all-cities { color: #fff; background: var(--orange-600); border-color: var(--orange-600); }
.city-pills.compact { max-width: 100%; }

.faq-section { background: #fff; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; gap: 24px; align-items: center; justify-content: space-between; padding: 22px 4px; color: var(--navy-950); cursor: pointer; font-weight: 750; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { display: grid; width: 28px; height: 28px; flex: 0 0 auto; color: var(--orange-600); background: var(--warm-100); border-radius: 50%; place-items: center; transition: transform .2s; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item > div { padding: 0 50px 18px 4px; }
.faq-item p { margin: 0; color: var(--muted); }

.cta-band { padding: 70px 0; color: #fff; background: linear-gradient(110deg, #cb3f07, var(--orange-600) 55%, #f8793a); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-band h2 { margin-bottom: 12px; color: #fff; }
.cta-band p { max-width: 730px; margin-bottom: 0; color: #ffe5d7; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 230px; }

.breadcrumbs { padding-top: 14px; padding-bottom: 14px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; color: #748093; font-size: .72rem; list-style: none; }
.breadcrumbs li { display: flex; gap: 8px; }
.breadcrumbs a:hover { color: var(--orange-600); }
.page-hero, .product-hero { position: relative; overflow: hidden; padding: 96px 0 100px; color: #dce6f0; background: radial-gradient(circle at 85% 10%, rgba(245,102,33,.25), transparent 32%), var(--navy-950); }
.page-hero::after { position: absolute; top: -150px; right: -80px; width: 500px; height: 500px; content: ""; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.02), 0 0 0 140px rgba(255,255,255,.015); }
.page-hero h1, .product-hero h1 { max-width: 900px; margin-bottom: 20px; color: #fff; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.page-hero p, .product-hero p { max-width: 800px; margin-bottom: 0; color: #bdc9d6; font-size: 1.08rem; }
.page-hero .hero-actions, .product-hero .hero-actions { margin-top: 30px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.hero-icon { position: relative; z-index: 1; display: grid; width: 160px; height: 160px; color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); border-radius: 32px; transform: rotate(8deg); place-items: center; }
.hero-icon svg { width: 70px; height: 70px; transform: rotate(-8deg); }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 75px; align-items: start; }
.article-content { max-width: 790px; }
.article-content > section { position: relative; margin-bottom: 60px; }
.article-content > section:last-child { margin-bottom: 0; }
.article-content h2 { margin-bottom: 20px; font-size: clamp(1.55rem, 2.4vw, 2.2rem); }
.article-content p { color: #45566b; font-size: 1.02rem; line-height: 1.9; }
.article-intro { margin-bottom: 55px; padding: 28px 32px; background: var(--cream); border-left: 4px solid var(--orange-600); border-radius: 0 12px 12px 0; }
.article-intro p { margin: 0; color: var(--navy-800); font-size: 1.1rem; }
.article-feature-image { position: relative; margin: 0 0 58px; overflow: hidden; background: var(--navy-950); border-radius: 18px; box-shadow: var(--shadow); }
.article-feature-image img { display: block; width: 100%; aspect-ratio: 2.5 / 1; object-fit: cover; }
.article-feature-image::after { position: absolute; right: 0; bottom: 0; left: 0; height: 55%; content: ""; background: linear-gradient(transparent, rgba(6,14,25,.82)); pointer-events: none; }
.article-feature-image figcaption { position: absolute; z-index: 1; right: 24px; bottom: 20px; left: 24px; display: flex; flex-direction: column; color: #fff; }
.article-feature-image figcaption span { color: #ffae86; font-size: .65rem; font-weight: 800; letter-spacing: .13em; }
.article-feature-image figcaption strong { font-size: .95rem; }
.section-number { position: absolute; top: -5px; left: -58px; color: #dfe4ea; font-size: 1.1rem; font-weight: 800; }
.article-conclusion, .safety-note { padding: 32px; background: var(--blue-50); border-radius: 14px; }
.article-conclusion h2, .safety-note h2 { font-size: 1.55rem; }
.article-conclusion p, .safety-note p { margin-bottom: 0; }
.research-note { padding-top: 10px; border-top: 1px solid var(--line); }
.research-note > ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.research-note li a { display: flex; flex-direction: column; padding: 15px 18px; background: var(--blue-50); border-radius: 9px; transition: .2s; }
.research-note li a:hover { background: var(--warm-100); }
.research-note li strong { color: var(--navy-950); font-size: .78rem; }
.research-note li span { color: var(--muted); font-size: .72rem; }
.article-aside { min-width: 0; }
.sticky-card { position: sticky; top: 120px; }
.aside-card { padding: 27px; background: #fff; border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow); }
.aside-card > strong { display: block; margin: 0 0 12px; color: var(--navy-950); font-size: 1.7rem; }
.aside-card p { color: var(--muted); font-size: .83rem; }
.aside-card ul { display: grid; gap: 9px; margin: 22px 0; padding: 0; list-style: none; }
.aside-card li { display: flex; gap: 8px; align-items: flex-start; font-size: .77rem; font-weight: 650; }
.aside-card li svg { color: var(--orange-600); }
.aside-card dl { display: grid; gap: 0; margin: 12px 0 24px; }
.aside-card dl div { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); }
.aside-card dt { color: var(--muted); font-size: .77rem; }
.aside-card dd { margin: 0; color: var(--navy-950); font-size: .77rem; font-weight: 800; text-align: right; }
.split-text { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.split-text p { margin: 0; color: var(--muted); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 35px; }
.filter-bar button { padding: 10px 17px; color: var(--navy-800); background: #fff; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: .8rem; font-weight: 750; }
.filter-bar button.active { color: #fff; background: var(--orange-600); border-color: var(--orange-600); }
.product-photo-section { background: var(--blue-50); }
.photo-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.photo-product-card { display: flex; min-width: 0; overflow: hidden; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 16px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.photo-product-card:hover { border-color: #ffc6aa; box-shadow: var(--shadow); transform: translateY(-5px); }
.photo-product-card.hidden { display: none; }
.photo-product-image { position: relative; display: grid; overflow: hidden; aspect-ratio: 4 / 3; padding: 16px; background: #fff; border-bottom: 1px solid var(--line); place-items: center; }
.photo-product-image::after { position: absolute; right: -45px; bottom: -45px; width: 130px; height: 130px; content: ""; background: rgba(245,102,33,.08); border-radius: 50%; }
.photo-product-image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
.photo-product-card:hover .photo-product-image img { transform: scale(1.035); }
.photo-product-image > span { position: absolute; z-index: 2; top: 12px; right: 12px; padding: 6px 9px; color: #fff; background: var(--navy-950); border-radius: 999px; font-size: .67rem; font-weight: 800; }
.photo-product-body { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.photo-product-body small { color: var(--orange-600); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.photo-product-body h3 { margin: 7px 0 10px; font-size: 1rem; }
.photo-product-body p { margin-bottom: 18px; color: var(--muted); font-size: .76rem; line-height: 1.65; }
.photo-product-body .text-link { margin-top: auto; font-size: .76rem; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card { display: grid; grid-template-columns: 140px 1fr; min-height: 220px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: .2s; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.product-card.hidden { display: none; }
.product-visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: var(--navy-900); }
.product-visual::after { position: absolute; right: -25px; bottom: -25px; width: 100px; height: 100px; content: ""; background: var(--orange-600); filter: blur(35px); opacity: .35; border-radius: 50%; }
.product-visual span { z-index: 1; font-size: 2.1rem; font-weight: 800; line-height: 1; }
.product-visual small { z-index: 1; color: #f7a37b; font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.product-visual i { width: 42px; height: 42px; margin-top: 20px; border: 4px solid #fff; border-top-color: var(--orange-500); border-radius: 50%; }
.product-body { display: flex; flex-direction: column; padding: 24px; }
.product-type { color: var(--orange-600); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-body h2 { margin: 8px 0 11px; font-size: 1.05rem; }
.product-body p { color: var(--muted); font-size: .78rem; }
.product-body .text-link { margin-top: auto; }

.product-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: center; }
.product-power { display: flex; width: 260px; height: 260px; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: linear-gradient(145deg, var(--orange-500), #a52e02); border: 10px solid rgba(255,255,255,.12); outline: 1px solid rgba(255,255,255,.35); border-radius: 50%; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.product-power span { font-size: 4.6rem; font-weight: 800; line-height: .9; }
.product-power small { font-size: 1.1rem; font-weight: 800; }
.product-power em { margin-top: 15px; font-size: .65rem; font-style: normal; font-weight: 800; letter-spacing: .2em; }
.product-hero-photo { position: relative; display: grid; width: 390px; height: 390px; margin: 0; overflow: hidden; padding: 24px; background: #fff; border: 10px solid rgba(255,255,255,.12); outline: 1px solid rgba(255,255,255,.28); border-radius: 28px; box-shadow: 0 30px 80px rgba(0,0,0,.38); place-items: center; }
.product-hero-photo img { width: 100%; height: 100%; object-fit: contain; }
.product-hero-photo figcaption { position: absolute; right: 17px; bottom: 17px; padding: 8px 12px; color: #fff; background: var(--orange-600); border-radius: 999px; font-size: .7rem; font-weight: 800; }

.province-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.province-grid a { display: flex; min-height: 94px; flex-direction: column; justify-content: center; padding: 18px 21px; background: #fff; border: 1px solid var(--line); border-radius: 12px; transition: .2s; }
.province-grid a:hover { color: #fff; background: var(--navy-900); border-color: var(--navy-900); transform: translateY(-3px); }
.province-grid strong { color: inherit; }
.province-grid span { display: flex; gap: 7px; align-items: center; margin-top: 4px; color: var(--muted); font-size: .7rem; }
.province-grid a:hover span { color: #ffb18c; }
.compact-grid { grid-template-columns: repeat(4,1fr); }
.mini-service-card { display: flex; gap: 12px; min-height: 82px; align-items: center; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-size: .78rem; font-weight: 750; }
.mini-service-card svg { width: 22px; height: 22px; color: var(--orange-600); }
.mini-service-card:hover { border-color: var(--orange-400); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.contact-info > h2 { margin-bottom: 22px; }
.contact-info > p { color: var(--muted); }
.contact-phone { display: flex; gap: 17px; align-items: center; margin: 34px 0; padding: 20px; background: var(--navy-950); border-radius: 13px; color: #fff; }
.contact-phone > svg { width: 32px; height: 32px; color: var(--orange-400); }
.contact-phone span { display: flex; flex-direction: column; }
.contact-phone small { color: #aab7c7; font-size: .7rem; }
.contact-phone strong { font-size: 1.25rem; }
.address-cards { display: grid; gap: 12px; }
.address-cards address { padding: 20px; background: var(--blue-50); border-radius: 12px; font-style: normal; }
.address-cards address span { display: block; color: var(--orange-600); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.address-cards address strong { display: block; color: var(--navy-950); font-size: .88rem; }
.address-cards address p { margin: 2px 0 0; color: var(--muted); font-size: .8rem; }
.contact-note { margin-top: 24px; padding: 18px 20px; border: 1px dashed #d8c6b7; border-radius: 10px; }
.contact-note p { margin: 5px 0 0; color: var(--muted); font-size: .78rem; }
.form-card { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.form-card h2 { margin-bottom: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card form { display: grid; gap: 16px; }
.form-card label { color: var(--navy-800); font-size: .76rem; font-weight: 750; }
.form-card input, .form-card select, .form-card textarea { display: block; width: 100%; margin-top: 7px; padding: 12px 13px; color: var(--navy-900); background: var(--blue-50); border: 1px solid #dbe2e9; border-radius: 8px; outline: 0; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { background: #fff; border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(245,102,33,.12); }
.check-field { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: var(--muted) !important; font-weight: 500 !important; }
.check-field input { width: 18px; height: 18px; margin: 2px 0 0; }
.honeypot { position: absolute; left: -9999px; }
.form-privacy { margin: 0; color: #8490a0; font-size: .68rem; line-height: 1.55; }
.form-alert { padding: 12px 15px; border-radius: 8px; font-size: .8rem; }
.form-alert.success { color: #0b6c35; background: #e9f8ef; }
.form-alert.error { color: #9b2519; background: #fff0ee; }

.not-found { display: grid; min-height: 65vh; align-items: center; padding: 90px 0; text-align: center; }
.not-found span { color: var(--orange-600); font-size: clamp(6rem, 17vw, 13rem); font-weight: 800; line-height: .8; opacity: .15; }
.not-found h1 { margin: -20px 0 15px; font-size: clamp(2.2rem, 5vw, 4.4rem); }
.not-found p { max-width: 650px; margin: 0 auto 30px; color: var(--muted); }
.not-found .hero-actions { justify-content: center; }

.site-footer { padding-top: 74px; color: #aeb9c7; background: #08111e; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .9fr .8fr 1.15fr; gap: 55px; }
.footer-grid h2 { margin-bottom: 20px; color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-grid ul { display: grid; gap: 8px; margin: 0; padding: 0; font-size: .78rem; list-style: none; }
.footer-grid a:hover { color: #ff9463; }
.footer-brand p { max-width: 330px; margin: 23px 0; font-size: .83rem; }
.footer-phone { display: flex; gap: 10px; align-items: center; color: #fff; font-weight: 800; }
.footer-phone svg { color: var(--orange-400); }
.footer-grid address { margin: 0 0 18px; font-size: .76rem; font-style: normal; }
.footer-grid address strong { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 60px; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid #1e2b3b; }
.footer-bottom p { margin: 0; font-size: .67rem; }
.floating-actions { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: grid; gap: 9px; }
.floating-actions a { display: grid; width: 52px; height: 52px; color: #fff; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 12px 28px rgba(0,0,0,.22); place-items: center; }
.float-phone { background: var(--orange-600); }
.float-wa { background: var(--green); font-size: .76rem; font-weight: 800; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
