:root {
    --ink: #14231f;
    --muted: #5f6f69;
    --green-950: #06382f;
    --green-900: #0a5143;
    --green-800: #0e6855;
    --green-700: #167a61;
    --green-100: #e2f0eb;
    --green-50: #f2f8f5;
    --lime: #b7df5b;
    --lime-dark: #93bd36;
    --cream: #f7f4ea;
    --white: #fff;
    --line: #dbe5e0;
    --shadow-sm: 0 8px 28px rgba(6, 56, 47, .08);
    --shadow-lg: 0 24px 70px rgba(4, 41, 34, .18);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 30px;
    --container: 1220px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--green-800);
    text-decoration: none;
}

a:hover {
    color: var(--green-950);
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--lime-dark);
    outline-offset: 3px;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--green-950);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.03em;
}

h1 {
    font-size: clamp(2.45rem, 5vw, 4.8rem);
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.8rem);
}

h3 {
    font-size: 1.2rem;
}

p {
    margin-top: 0;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding-top: 92px;
    padding-bottom: 92px;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 999;
    padding: 10px 16px;
    color: var(--white);
    background: var(--green-950);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.topbar {
    color: #d9eee7;
    background: var(--green-950);
    font-size: .78rem;
    font-weight: 600;
}

.topbar-inner {
    display: flex;
    min-height: 35px;
    align-items: center;
    justify-content: space-between;
}

.topbar-actions {
    display: flex;
    gap: 24px;
}

.topbar a {
    color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid rgba(219, 229, 224, .72);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 36px rgba(10, 81, 67, .09);
}

.header-inner {
    display: flex;
    min-height: 84px;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: var(--green-950);
}

.brand-logo {
    display: block;
    width: 190px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.brand-logo-footer {
    width: 210px;
    max-height: none;
    padding: 8px 12px;
    background: var(--white);
    border-radius: 10px;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--green-950);
    background: var(--lime);
    border-radius: 14px 4px 14px 4px;
    font-size: 1.55rem;
    font-weight: 800;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 1.35rem;
    letter-spacing: -.04em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .03em;
}

.primary-nav {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 4px;
}

.primary-nav > a,
.nav-dropdown > button {
    padding: 12px 13px;
    color: var(--ink);
    border: 0;
    background: none;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
}

.primary-nav > a:hover,
.nav-dropdown > button:hover {
    color: var(--green-700);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    display: grid;
    width: min(780px, 78vw);
    max-height: 66vh;
    padding: 22px;
    overflow: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: .2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-panel a {
    padding: 9px 8px;
    color: var(--ink);
    border-bottom: 1px solid #edf2ef;
    font-size: .82rem;
    line-height: 1.35;
}

.dropdown-panel a:hover {
    color: var(--green-700);
    background: var(--green-50);
}

.dropdown-panel .dropdown-all {
    margin-top: 8px;
    color: var(--green-800);
    border-bottom: 0;
    font-weight: 800;
}

.header-cta {
    display: inline-flex;
    min-height: 46px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    color: var(--green-950);
    background: var(--lime);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 800;
}

.header-cta:hover {
    color: var(--green-950);
    background: #c9eb79;
}

.nav-toggle {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 23px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-accent {
    color: var(--green-950);
    background: var(--lime);
}

.button-accent:hover {
    color: var(--green-950);
    background: #caef75;
}

.button-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .05);
}

.button-outline:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.button-primary {
    color: var(--white);
    background: var(--green-800);
}

.button-primary:hover {
    color: var(--white);
    background: var(--green-950);
}

.button-secondary,
.button-dark-outline {
    color: var(--green-900);
    border-color: var(--green-800);
    background: transparent;
}

.button-secondary:hover,
.button-dark-outline:hover {
    color: var(--white);
    background: var(--green-800);
}

.button-whatsapp {
    color: var(--green-950);
    background: var(--lime);
}

.button-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .5);
}

.hero-slider {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    color: var(--white);
    background: var(--green-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity .65s ease, transform .9s ease;
}

.hero-slide.is-active {
    position: relative;
    min-height: 680px;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide:nth-child(2) {
    background: linear-gradient(135deg, #102d29, #0b5e4e);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 34%, rgba(183, 223, 91, .2) 0 4%, transparent 4.5%),
        radial-gradient(circle at 78% 34%, transparent 0 17%, rgba(183, 223, 91, .1) 17.2% 17.8%, transparent 18%),
        linear-gradient(116deg, rgba(2, 35, 30, .9) 0 45%, rgba(4, 48, 40, .72) 72%, rgba(5, 40, 34, .62));
}

.hero-pattern::before,
.hero-pattern::after {
    position: absolute;
    right: 8%;
    bottom: -15%;
    width: 390px;
    height: 610px;
    content: "";
    border: 2px solid rgba(214, 242, 156, .16);
    border-radius: 50% 50% 8% 8%;
    transform: rotate(-19deg);
}

.hero-pattern::after {
    right: 21%;
    bottom: -32%;
    width: 280px;
    transform: rotate(12deg);
}

.hero-pattern-alt {
    background:
        linear-gradient(38deg, transparent 46%, rgba(183, 223, 91, .09) 46.2% 47%, transparent 47.2%),
        linear-gradient(135deg, rgba(8, 30, 27, .9), rgba(4, 55, 46, .7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding-top: 90px;
    padding-bottom: 130px;
    text-align: center;
}

.hero-kicker,
.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--green-700);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hero-kicker {
    color: var(--lime);
}

.hero-content h1 {
    max-width: 980px;
    margin: 0 auto 15px;
    color: var(--white);
    text-wrap: balance;
}

.hero-content h2 {
    margin-bottom: 18px;
    color: #daf2e8;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    font-weight: 600;
    letter-spacing: -.01em;
}

.hero-content p {
    max-width: 750px;
    margin: 0 auto 30px;
    color: #d2e7df;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.slider-controls {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 45px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.slider-controls > button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
}

.slider-dots button.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--lime);
}

.trust-strip {
    color: var(--white);
    background: var(--green-800);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
    display: grid;
    min-height: 115px;
    padding: 24px 32px;
    align-content: center;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid strong {
    color: var(--lime);
    font-size: 1.45rem;
    line-height: 1.2;
}

.trust-grid span {
    color: #d7ebe4;
    font-size: .84rem;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 38px;
}

.section-heading h2 {
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--muted);
}

.section-heading-split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    align-items: end;
    gap: 70px;
}

.section-heading-split p {
    margin-bottom: 8px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    display: flex;
    min-height: 270px;
    padding: 25px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    border-color: #a9c8bc;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.service-card > span {
    margin-bottom: 35px;
    color: var(--green-700);
    font-size: .78rem;
    font-weight: 800;
}

.service-card h2,
.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.service-card h2 a,
.service-card h3 a {
    color: var(--green-950);
}

.service-card p {
    color: var(--muted);
    font-size: .87rem;
}

.service-card > a {
    margin-top: auto;
    color: var(--green-700);
    font-size: .84rem;
    font-weight: 800;
}

.service-card .card-focus {
    font-size: .8rem;
}

.center-action {
    margin-top: 34px;
    text-align: center;
}

.process-section {
    padding: 100px 0;
    color: var(--white);
    background: var(--green-950);
}

.process-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 110px;
}

.process-intro {
    position: sticky;
    top: 140px;
    align-self: start;
}

.process-intro .eyebrow {
    color: var(--lime);
}

.process-intro h2 {
    color: var(--white);
}

.process-intro p {
    color: #c9dfd7;
}

.text-link {
    color: var(--lime);
    font-weight: 700;
}

.process-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-steps li {
    display: grid;
    padding: 25px 0;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.process-steps li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.process-steps > li > span {
    color: var(--lime);
    font-size: .82rem;
    font-weight: 800;
}

.process-steps h3 {
    margin-bottom: 6px;
    color: var(--white);
}

.process-steps p {
    margin-bottom: 0;
    color: #bfd6ce;
    font-size: .9rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-catalog .product-grid {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(2, 46, 38, .07);
}

.product-media {
    position: relative;
    display: grid;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 16px;
    place-items: center;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.025);
}

.product-card-body {
    display: flex;
    padding: 22px;
    flex: 1;
    flex-direction: column;
}

.product-capacity {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: grid;
    width: 72px;
    height: 72px;
    place-content: center;
    color: var(--green-950);
    background: var(--lime);
    border-radius: 18px 5px 18px 5px;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.product-capacity small {
    margin-top: 4px;
    font-size: .7rem;
}

.product-fuel {
    color: var(--green-700);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 7px 0 8px;
    font-size: 1.05rem;
}

.product-card p {
    color: var(--muted);
    font-size: .79rem;
    line-height: 1.6;
}

.product-card a {
    font-size: .8rem;
    font-weight: 800;
}

.product-card-body > a {
    margin-top: auto;
    padding-top: 10px;
}

.calculator {
    padding: 42px;
    color: var(--white);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 10%, rgba(183, 223, 91, .16), transparent 28%),
        var(--green-950);
    box-shadow: var(--shadow-lg);
}

.calculator-copy {
    display: grid;
    margin-bottom: 30px;
    grid-template-columns: 1fr .8fr;
    column-gap: 50px;
}

.calculator-copy .eyebrow {
    grid-column: 1 / -1;
    color: var(--lime);
}

.calculator-copy h2 {
    margin-bottom: 0;
    color: var(--white);
}

.calculator-copy p {
    color: #c8ddd6;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.calculator-form label {
    position: relative;
    display: grid;
    gap: 7px;
    color: #d4e7e0;
    font-size: .75rem;
    font-weight: 700;
}

.calculator-form label span {
    position: absolute;
    right: 14px;
    bottom: 13px;
    color: #91aaa1;
    font-size: .7rem;
}

.calculator-form input {
    width: 100%;
    height: 48px;
    padding: 0 55px 0 14px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
}

.calculator-form .button {
    align-self: end;
}

.calculator-result {
    display: grid;
    margin-top: 20px;
    padding: 20px 24px;
    grid-template-columns: 1fr auto;
    align-items: center;
    border: 1px solid rgba(183, 223, 91, .32);
    border-radius: 14px;
    background: rgba(183, 223, 91, .09);
}

.calculator-result > span {
    color: #d8eee6;
    font-size: .82rem;
    font-weight: 700;
}

.calculator-result strong {
    color: var(--lime);
    font-size: 1.8rem;
}

.calculator-result small {
    grid-column: 1 / -1;
    color: #abc4bb;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    position: relative;
    padding: 23px 55px 23px 0;
    color: var(--green-950);
    font-size: 1rem;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 21px;
    right: 4px;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    content: "+";
    color: var(--green-800);
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-item[open] summary::after {
    content: "−";
    background: var(--green-100);
}

.faq-item > div {
    max-width: 920px;
    padding: 0 50px 18px 0;
    color: var(--muted);
}

.message-cta {
    display: grid;
    margin-top: 70px;
    padding: 42px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    color: var(--white);
    border-radius: var(--radius-lg);
    background: linear-gradient(118deg, var(--green-900), var(--green-700));
}

.message-cta .eyebrow {
    color: var(--lime);
}

.message-cta h2 {
    margin-bottom: 8px;
    color: var(--white);
}

.message-cta p {
    margin-bottom: 6px;
    color: #d7ebe4;
}

.message-cta small {
    color: #bcd8cf;
    font-size: .72rem;
}

.message-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.breadcrumbs {
    padding-top: 22px;
    padding-bottom: 22px;
    overflow: auto;
}

.breadcrumbs ol {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 9px;
    list-style: none;
    white-space: nowrap;
}

.breadcrumbs li {
    color: var(--muted);
    font-size: .75rem;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: 9px;
    content: "/";
    color: #aebbb6;
}

.breadcrumbs a {
    color: var(--green-700);
}

.service-hero {
    padding: 36px 0 80px;
    color: var(--white);
    background:
        radial-gradient(circle at 84% 16%, rgba(183, 223, 91, .18), transparent 18%),
        linear-gradient(125deg, var(--green-950), var(--green-800));
}

.service-banner {
    overflow: hidden;
    margin: 0;
    aspect-ratio: 1983 / 793;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    background: var(--green-950);
    box-shadow: 0 22px 60px rgba(0, 19, 16, .34);
}

.service-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-grid {
    display: grid;
    margin-top: 44px;
    grid-template-columns: 1fr 310px;
    align-items: end;
    gap: 80px;
}

.service-hero .eyebrow {
    color: var(--lime);
}

.service-hero h1 {
    max-width: 880px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(2.35rem, 4.6vw, 4.25rem);
}

.service-hero p {
    max-width: 800px;
    color: #d1e5dd;
    font-size: 1.05rem;
}

.service-hero .hero-actions {
    justify-content: flex-start;
    margin-top: 27px;
}

.service-hero .button-dark-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, .52);
}

.service-hero .button-dark-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.parent-link {
    font-size: .85rem !important;
}

.parent-link a {
    color: var(--lime);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.service-facts {
    display: grid;
    padding: 25px;
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
}

.service-facts span {
    color: #bcd5cc;
    font-size: .73rem;
}

.service-facts strong {
    color: var(--white);
    font-size: .76rem;
    text-align: right;
}

.content-layout {
    display: grid;
    padding-top: 75px;
    padding-bottom: 25px;
    grid-template-columns: 220px minmax(0, 810px);
    justify-content: center;
    gap: 70px;
}

.article-toc {
    position: sticky;
    top: 125px;
    display: grid;
    padding: 20px;
    align-self: start;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--green-50);
}

.article-toc strong {
    margin-bottom: 8px;
    color: var(--green-950);
    font-size: .82rem;
}

.article-toc a {
    padding: 6px 0;
    color: var(--muted);
    font-size: .75rem;
}

.article-toc a:hover {
    color: var(--green-700);
}

.article-column {
    min-width: 0;
}

.technical-article {
    color: #293b35;
}

.article-section {
    margin-bottom: 52px;
}

.article-section h2,
.source-note h2 {
    margin-bottom: 20px;
    font-size: clamp(1.55rem, 2.5vw, 2.05rem);
}

.article-section p {
    margin-bottom: 17px;
}

.formula-card {
    display: grid;
    margin-top: 25px;
    padding: 24px;
    gap: 7px;
    border-left: 4px solid var(--lime-dark);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--cream);
}

.formula-card > span {
    color: var(--green-700);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.formula-card strong {
    color: var(--green-950);
    font-size: clamp(1.1rem, 2.3vw, 1.5rem);
}

.formula-card small {
    color: var(--muted);
}

.source-note {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--green-50);
}

.source-note h2 {
    font-size: 1.25rem;
}

.source-note p,
.source-note li {
    color: var(--muted);
    font-size: .78rem;
}

.source-note ul {
    margin-bottom: 0;
    padding-left: 18px;
}

.source-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-section {
    background: var(--white);
}

.region-directory {
    margin-top: 75px;
    padding-top: 65px;
    border-top: 1px solid var(--line);
}

.district-links {
    margin-bottom: 25px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--green-50);
}

.district-links h3 {
    margin-bottom: 13px;
    font-size: 1rem;
}

.district-links a {
    display: inline-block;
    margin: 0 7px 7px 0;
    padding: 7px 12px;
    border: 1px solid #bfd4cc;
    border-radius: 999px;
    background: var(--white);
    font-size: .73rem;
}

.all-regions {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.all-regions summary {
    padding: 18px 22px;
    color: var(--green-950);
    background: var(--green-50);
    font-size: .87rem;
    font-weight: 800;
    cursor: pointer;
}

.region-link-grid {
    display: grid;
    padding: 22px;
    grid-template-columns: repeat(6, 1fr);
    gap: 7px 14px;
}

.region-link-grid a {
    color: var(--muted);
    font-size: .72rem;
}

.region-link-grid a:hover {
    color: var(--green-700);
}

.inner-hero {
    padding: 90px 0;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0, rgba(183, 223, 91, .17), transparent 38%),
        var(--green-50);
}

.inner-hero .container {
    max-width: 900px;
}

.inner-hero h1 {
    margin-bottom: 18px;
}

.inner-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
}

.service-grid-all .service-card {
    min-height: 340px;
}

.notice-card {
    margin-top: 35px;
    padding: 25px;
    border: 1px solid #e5dca9;
    border-radius: var(--radius);
    background: #fffced;
}

.notice-card strong {
    color: #6a5b16;
}

.notice-card p {
    margin: 6px 0 0;
    color: #756927;
    font-size: .85rem;
}

.product-detail-hero {
    padding: 95px 0;
    background: var(--green-50);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 330px;
    align-items: center;
    gap: 90px;
}

.product-detail-grid h1 {
    margin-bottom: 20px;
}

.product-detail-grid p {
    max-width: 750px;
    color: var(--muted);
}

.product-detail-grid .hero-actions {
    justify-content: flex-start;
}

.product-detail-visual {
    position: relative;
    display: grid;
    width: min(100%, 430px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 24px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.product-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-capacity {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 10px 15px;
    color: var(--green-950);
    background: var(--lime);
    border-radius: 12px 4px 12px 4px;
    font-size: .85rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(2, 46, 38, .18);
}

.detail-capacity strong {
    font-size: 1.25rem;
}

.narrow-content {
    max-width: 850px;
}

.narrow-content h2 {
    margin-top: 42px;
    font-size: 1.65rem;
}

.narrow-content h2:first-child {
    margin-top: 0;
}

.narrow-content p {
    color: #344841;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 100px;
}

.value-panel {
    padding: 28px;
    align-self: start;
    color: var(--white);
    border-radius: var(--radius-lg);
    background: var(--green-950);
}

.value-panel > span {
    color: var(--lime);
    font-size: .72rem;
    font-weight: 800;
}

.value-panel h3 {
    margin: 3px 0 7px;
    color: var(--white);
}

.value-panel p {
    margin-bottom: 28px;
    color: #c7ddd5;
    font-size: .85rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    display: grid;
    min-height: 230px;
    padding: 34px;
    align-content: center;
    color: var(--white);
    border-radius: var(--radius-lg);
    background: var(--green-900);
}

.contact-card:hover {
    color: var(--white);
    background: var(--green-950);
}

.contact-card-wa {
    color: var(--green-950);
    background: var(--lime);
}

.contact-card-wa:hover {
    color: var(--green-950);
    background: #c9ed77;
}

.contact-card span {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-card strong {
    margin: 8px 0;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.contact-card small {
    opacity: .75;
}

.contact-brief {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.contact-brief ul {
    display: grid;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    list-style: none;
}

.contact-brief li {
    padding: 10px 13px;
    border-radius: 8px;
    background: var(--green-50);
    font-size: .82rem;
}

.contact-brief p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: .8rem;
}

.not-found {
    display: grid;
    min-height: 620px;
    place-content: center;
    text-align: center;
}

.not-found > span {
    color: var(--lime-dark);
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
}

.not-found p {
    color: var(--muted);
}

.site-footer {
    padding-top: 75px;
    color: #c8ddd5;
    background: #052f28;
}

.footer-grid {
    display: grid;
    padding-bottom: 60px;
    grid-template-columns: 1.4fr .7fr 1fr .8fr;
    gap: 55px;
}

.brand-footer {
    margin-bottom: 20px;
    color: var(--white);
}

.brand-footer .brand-copy small {
    color: #aac8be;
}

.footer-grid p {
    color: #9ebcb2;
    font-size: .8rem;
}

.footer-grid h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: .9rem;
    letter-spacing: 0;
}

.footer-grid > div > a:not(.brand) {
    display: block;
    margin-bottom: 10px;
    color: #bad1c9;
    font-size: .8rem;
}

.footer-grid > div > a:hover {
    color: var(--lime);
}

.address-note {
    margin-top: 18px;
    font-size: .7rem !important;
}

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #83a399;
    font-size: .7rem;
}

.footer-bottom a {
    color: #a9c5bc;
}

.footer-bottom span:last-child {
    margin-left: auto;
}

.floating-whatsapp {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--green-950);
    background: var(--lime);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    font-size: .76rem;
    font-weight: 800;
}

.floating-whatsapp:hover {
    color: var(--green-950);
    transform: translateY(-2px);
}

.sticky-contact {
    position: fixed;
    z-index: 9999;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 50%;
    display: none;
    width: calc(100% - 28px);
    max-width: 510px;
    padding: 6px;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 42px rgba(4, 41, 34, .25);
    transform: translateX(-50%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.sticky-contact-button {
    display: flex;
    min-height: 52px;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 13px;
    color: var(--white);
    font-size: .86rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 7px 18px rgba(4, 41, 34, .16);
    transition: transform .18s ease, box-shadow .18s ease;
}

.sticky-contact-button:hover,
.sticky-contact-button:focus-visible {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(4, 41, 34, .24);
}

.sticky-contact-button svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: currentColor;
}

.sticky-contact-call {
    background: var(--green-800);
}

.sticky-contact-whatsapp {
    background: #1fa855;
}

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