:root {
    --color-ink: #1e241f;
    --color-muted: #635d54;
    --color-forest: #16351f;
    --color-forest-dark: #0b2114;
    --color-leaf: #7e9b35;
    --color-sun: #efc84a;
    --color-sun-soft: #fff1a9;
    --color-red: #9d1d28;
    --color-red-dark: #7f1420;
    --color-sky: #b8e1de;
    --color-sky-soft: #e9fbfa;
    --color-cream: #fff8e5;
    --color-paper: #ffffff;
    --color-line: rgba(30, 36, 31, 0.14);
    --shadow-soft: 0 14px 36px rgba(30, 36, 31, 0.12);
    --shadow-card: 0 10px 24px rgba(30, 36, 31, 0.1);
    --radius: 8px;
    --container: min(1100px, calc(100% - 32px));
    --font: "Segoe UI", Arial, Helvetica, sans-serif;
}

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

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

body {
    margin: 0;
    background: var(--color-cream);
    color: var(--color-ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.62;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
}

caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.15;
}

h1 {
    max-width: 720px;
    margin-bottom: 16px;
    font-size: 2rem;
    font-weight: 850;
}

h2 {
    margin-bottom: 10px;
    font-size: 1.65rem;
    font-weight: 850;
}

h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 14px;
    background: var(--color-sun);
    color: var(--color-ink);
    border-radius: var(--radius);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 3px 16px rgba(30, 36, 31, 0.08);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: var(--container);
    min-height: 68px;
    margin-inline: auto;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 1 230px;
    min-width: 0;
}

.logo-link img {
    width: min(210px, 58vw);
    height: auto;
}

.desktop-nav {
    display: none;
}

.desktop-nav a,
.mobile-nav a {
    color: var(--color-ink);
    font-weight: 750;
}

.hamburger {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--color-forest);
    border: 0;
    border-radius: var(--radius);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--color-paper);
    border-radius: 999px;
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.hamburger.open span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    max-height: 0;
    padding-inline: 16px;
    overflow: hidden;
    background: var(--color-paper);
    border-top: 1px solid transparent;
    transition:
        max-height 220ms ease,
        border-color 200ms ease;
}

.mobile-nav.open {
    max-height: 560px;
    border-top-color: var(--color-line);
}

.mobile-nav a {
    display: block;
    min-height: 46px;
    padding: 12px 4px;
    border-bottom: 1px solid rgba(30, 36, 31, 0.09);
}

.mobile-nav a:first-child {
    margin-top: 8px;
}

.mobile-nav a:last-child {
    margin: 10px 0 16px;
    border-bottom: 0;
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.button:hover,
.button:focus {
    transform: translateY(-1px);
}

.button--primary,
a.button--header {
    background: var(--color-red);
    color: var(--color-paper);
    box-shadow: 0 6px 18px rgba(157, 29, 40, 0.22);
}

.button--primary:hover,
.button--header:hover {
    background: var(--color-red-dark);
}

.button--dark {
    background: var(--color-forest);
    color: var(--color-paper);
}

.button--gold {
    background: var(--color-sun);
    color: var(--color-ink);
}

.button--whatsapp {
    background: #1f9d52;
    color: var(--color-paper);
}

.badge {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 14px;
    padding: 6px 12px;
    background: var(--color-sun);
    color: var(--color-ink);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.hero {
    padding-block: 52px;
    background: linear-gradient(
        140deg,
        var(--color-sun) 0%,
        var(--color-sun-soft) 48%,
        var(--color-paper) 100%
    );
}

.hero-inner {
    display: grid;
    gap: 30px;

    & .badge {
        background: var(--color-paper);
    }
}

.hero-text p:not(.badge):not(.hero-note) {
    max-width: 640px;
    margin-bottom: 24px;
    color: #453f37;
    font-size: 1.03rem;
}

.hero-actions,
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 22px 0 0;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(30, 36, 31, 0.14);
    border-radius: 999px;
    color: var(--color-forest);
    font-weight: 750;
}

.hero-note::before {
    content: "";
    width: 9px;
    height: 9px;
    background: var(--color-leaf);
    border-radius: 999px;
}

.hero-logo {
    display: grid;
    place-items: center;
    margin: 0;
}

.hero-logo img {
    width: min(400px, 82vw);
    filter: drop-shadow(0 14px 26px rgba(30, 36, 31, 0.18));
}

.section {
    padding-block: 58px;
}

.section--plain {
    background: var(--color-paper);
}

.section--pellet {
    background: linear-gradient(156deg, #deb63a 0%, #fff2b2 44%, #fffaf0 100%);

    & .badge {
        background-color: #fff;
    }
}

.section--alt-products {
    border-top: 1px solid rgba(30, 36, 31, 0.08);
}

.section--wood {
    background: linear-gradient(156deg, #9fb647 0%, #edf4c7 48%, #fffdf3 100%);
}

.section--terms {
    background: linear-gradient(156deg, #78c6c8 0%, #d5f2f0 50%, #f7ffff 100%);
}

.section--contact {
    background: linear-gradient(
        156deg,
        var(--color-sun) 0%,
        #fff4be 45%,
        var(--color-paper) 100%
    );
    text-align: center;

    & .badge {
        display: none;
        visibility: hidden;
    }

    & .cta-buttons {
        width: 50dvw;
    }
}

.section-title {
    color: var(--color-forest-dark);
}

.section-subtitle {
    max-width: 720px;
    margin-bottom: 28px;
    color: var(--color-muted);
    text-wrap: balance;
}

.feature-grid,
.product-grid,
.accessory-grid,
.terms-grid {
    display: grid;
    gap: 16px;
}

.info-card,
.product-card,
.accessory-item,
.terms-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(30, 36, 31, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.info-card {
    background: linear-gradient(156deg, #e9fdfd 0%, #dafffc 50%, #f7ffff 100%);
}

.info-card,
.accessory-item,
.terms-card {
    padding: 20px;
}

.info-card__number {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--color-red);
    font-weight: 900;
}

.info-card p,
.accessory-item p,
.terms-card p {
    margin-bottom: 0;
    color: var(--color-muted);
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    padding: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f7f3e8 100%);
    border-bottom: 1px solid rgba(30, 36, 31, 0.1);
}

.product-card__content {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.product-card__tag {
    width: fit-content;
    margin: 0;
    padding: 4px 10px;
    background: rgba(22, 53, 31, 0.1);
    color: var(--color-forest);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
    display: inline-block;
}

.product-card h3 {
    margin-bottom: 0;
}

.product-card p {
    color: var(--color-muted);
}

.product-card--wood .product-card__tag {
    background: rgba(126, 155, 53, 0.18);
}

.spec-list {
    display: grid;
    gap: 8px;
    margin: 0;
}

.spec-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(30, 36, 31, 0.1);
}

.spec-list div:last-child {
    border-bottom: 0;
}

.spec-list dt {
    color: var(--color-muted);
}

.spec-list dd {
    margin: 0;
    color: var(--color-forest-dark);
    font-weight: 850;
    text-align: right;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 12px;
    margin: 0;
    padding: 14px 18px;
    background: var(--color-red);
    color: var(--color-paper);
    margin-top: auto;
}

.price-row strong {
    font-size: 1.45rem;
    line-height: 1;
    color: var(--color-paper);
}

.price-row span {
    color: rgba(255, 255, 255, 0.82);
}

.warning-box,
.note-box {
    margin: 22px 0 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.78);
    border-left: 4px solid var(--color-red);
    border-radius: var(--radius);
    color: var(--color-red-dark);
    font-weight: 750;
}

.note-box {
    display: grid;
    gap: 8px;
    border-left-color: var(--color-sun);
    color: var(--color-ink);
    font-weight: 500;
}

.note-box p {
    margin: 0;
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.table-wrap table {
    min-width: 680px;
    background: var(--color-paper);
}

thead {
    background: var(--color-forest);
    color: var(--color-paper);
}

th,
td {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(30, 36, 31, 0.1);
    text-align: left;
    vertical-align: top;
}

tbody th {
    color: var(--color-forest-dark);
}

td {
    color: var(--color-red);
    font-weight: 850;
}

.cta-section {
    padding-block: 58px;
    background: var(--color-forest-dark);
    color: var(--color-paper);
    text-align: center;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.76);
    text-wrap: balance;
}

.terms-card ul,
.footer-links ul {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.terms-card li {
    display: flex;
    gap: 10px;
    color: var(--color-muted);
}

.terms-card li::before {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 9px;
    background: var(--color-red);
    border-radius: 999px;
}

.contact-inner {
    display: grid;
    justify-items: center;
}

.contact-phone {
    margin: 2px 0 20px;
    color: var(--color-forest-dark);
    font-size: 2rem;
    font-weight: 900;
}

.contact-zone {
    margin: 22px 0 0;
    color: var(--color-muted);
}

.contact-zone strong {
    color: var(--color-red);
}

.site-footer {
    padding-block: 42px 24px;
    background: #07170d;
    color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
    display: grid;
    gap: 28px;
}

.footer-brand p {
    max-width: 420px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.68);
    text-wrap: balance;
}

.footer-links h2 {
    margin-bottom: 12px;
    color: var(--color-sun);
    font-size: 0.95rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--color-paper);
}

.footer-bottom {
    display: grid;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.52);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: var(--color-paper);
}

.footer-legal-separator {
    display: inline-block;
    margin-inline: 8px;
    color: rgba(255, 255, 255, 0.34);
}

.page-section {
    min-height: 48vh;
}

.legal-content {
    max-width: 860px;
}

.legal-content h1 {
    max-width: 100%;
    margin-bottom: 18px;
    color: var(--color-forest-dark);
    font-size: 2rem;
}

.legal-content h2 {
    margin-top: 34px;
    font-size: 1.35rem;
}

.legal-content h3 {
    margin-top: 24px;
}

.legal-content p,
.legal-content li {
    color: var(--color-muted);
}

.legal-content a {
    color: var(--color-red);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cc--pb,
#cc-main {
    --cc-font-family: var(--font);
    --cc-bg: var(--color-paper);
    --cc-primary-color: var(--color-ink);
    --cc-secondary-color: var(--color-muted);
    --cc-btn-primary-bg: var(--color-red);
    --cc-btn-primary-border-color: var(--color-red);
    --cc-btn-primary-color: var(--color-paper);
    --cc-btn-primary-hover-bg: var(--color-red-dark);
    --cc-btn-primary-hover-border-color: var(--color-red-dark);
    --cc-btn-secondary-bg: var(--color-forest);
    --cc-btn-secondary-border-color: var(--color-forest);
    --cc-btn-secondary-color: var(--color-paper);
    --cc-toggle-on-bg: var(--color-red);
    --cc-toggle-off-bg: rgba(30, 36, 31, 0.24);
}

@media (min-width: 540px) {
    .hero-actions,
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;

        & a {
            min-width: 20vw;
        }
    }

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

    .feature-grid,
    .accessory-grid,
    .terms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 760px) {
    h1 {
        font-size: 2.55rem;
    }

    h2 {
        font-size: 2.08rem;
    }

    .hero {
        padding-block: 72px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
        align-items: center;

        & .badge {
            background: var(--color-paper);
        }
    }

    .section {
        padding-block: 74px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1.5fr) minmax(160px, 0.7fr) minmax(
                160px,
                0.7fr
            );
        align-items: start;
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
    }
}

@media (min-width: 980px) {
    .header-inner {
        min-height: 74px;
    }

    .hamburger,
    .mobile-nav {
        display: none;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .desktop-nav a {
        padding: 9px 10px;
        border-radius: var(--radius);
        font-size: 0.92rem;
    }

    .desktop-nav a:hover,
    .desktop-nav a:focus,
    .desktop-nav a.is-active {
        background: var(--color-sun);
        color: var(--color-red);
    }

    .desktop-nav .button--header {
        margin-left: 6px;
        padding-inline: 16px;
    }

    .feature-grid,
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-grid--two,
    .terms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
