:root {
    color-scheme: light;
    --green-primary: #00B140;
    --green-light: #37D372;
    --sky-blue: #4CC3FF;
    --sand-light: #E5FFD1;
    --sand-base: #c6f7ac;
    --sun-yellow: #FFE522;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --cta-text-green: #005A24;
    --price-red: #E8332A;
}

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

body {
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--sky-blue) 100%);
    color: var(--text-dark);
    line-height: 1.6;
}

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

header {
    width: 100%;
    min-height: 60vh;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.header-overlay {
    background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.3));
    padding: 28px;
    border-radius: 10px;
    max-width: 640px;
    width: min(640px, 100%);
}

header h1,
header p {
    color: var(--text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    margin: 0;
}

header p {
    margin-top: 10px;
    font-size: 20px;
}

.hero-subtitle {
    margin-top: 12px;
    font-weight: 800;
    color: var(--sun-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-product {
    margin-top: 8px;
    font-weight: 800;
    font-size: 1.3rem;
    color: #ffffff;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.9rem;
}

.hero-btn-primary {
    background: var(--sun-yellow);
    color: var(--cta-text-green);
}

.hero-btn-accent {
    background: #ffffff;
    color: var(--cta-text-green);
    border: 2px solid var(--sun-yellow);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.hero-btn-secondary {
    background: rgba(0, 0, 0, 0.65);
    color: var(--text-light);
}

.hero-btn:hover,
.hero-btn:focus-visible {
    filter: brightness(1.05);
}

.hero-btn-accent:hover,
.hero-btn-accent:focus-visible {
    background: var(--sand-light);
    color: var(--cta-text-green);
}

.hero-urgency {
    margin-top: 14px;
    font-weight: 800;
    color: var(--sun-yellow);
}

.hero-specs {
    margin-top: 6px;
    font-weight: 700;
    color: #e6ffea;
}

main {
    padding: 0 16px 32px 16px;
}

section {
    padding: 30px 20px;
    max-width: 960px;
    margin: 0 auto 25px auto;
    background: var(--sand-light);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 90, 36, 0.2);
}

h1,
h2 {
    color: var(--sun-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-highlight {
    background: linear-gradient(160deg, var(--green-primary) 0%, var(--sky-blue) 100%);
    text-align: center;
    color: var(--text-light);
    padding: 55px 30px;
    border: 4px solid rgba(255, 255, 255, 0.45);
}

.product-highlight h2 {
    margin-bottom: 5px;
}

.product-highlight .tagline {
    font-weight: 800;
    color: var(--sun-yellow);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.product-highlight .product-title {
    font-size: clamp(2.4rem, 6vw, 3.7rem);
    color: var(--sun-yellow);
    margin: 12px 0;
    font-weight: 800;
}

.product-highlight .price-badge {
    display: inline-block;
    padding: 18px 46px;
    background: var(--price-red);
    color: var(--text-light);
    border-radius: 999px;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(228, 32, 31, 0.45);
    margin: 18px 0;
}

.product-highlight .order-btn {
    display: inline-block;
    padding: 16px 32px;
    margin: 18px auto;
    background: var(--sun-yellow);
    color: var(--cta-text-green);
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.product-highlight .order-btn:hover,
.product-highlight .order-btn:focus-visible {
    background: #ffd200;
}

.quote-section {
    background: #f5ffe6;
    border: 2px solid rgba(0, 90, 36, 0.15);
}

.quote-content {
    display: grid;
    gap: 16px;
    align-items: center;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quote-form input {
    padding: 12px 14px;
    border: 2px solid rgba(0, 90, 36, 0.2);
    border-radius: 10px;
    font-size: 1rem;
}

.quote-submit {
    align-self: flex-start;
    padding: 12px 28px;
    background: var(--sun-yellow);
    color: var(--cta-text-green);
    border: none;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.quote-submit:hover,
.quote-submit:focus-visible {
    filter: brightness(0.95);
}

.product-highlight .banner {
    background: rgba(0, 0, 0, 0.65);
    color: var(--text-light);
    border-radius: 30px;
    padding: 14px 28px;
    display: inline-block;
    font-weight: 700;
    margin: 18px 0;
    text-transform: uppercase;
}

.product-highlight .contact {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-light);
    margin: 12px 0;
}

.product-highlight .note {
    font-weight: 700;
    color: #d8ffd0;
    text-transform: uppercase;
}

.product-highlight .address {
    font-size: 1rem;
    color: #e2fff5;
    font-weight: 600;
}

.product-highlight .disclaimer {
    margin-top: 18px;
    font-style: italic;
    font-weight: 700;
    color: #d8ffd0;
    text-transform: uppercase;
}

ul {
    padding-left: 20px;
}

.delivery-zones {
    column-count: 4;
    column-gap: 24px;
}

.delivery-zones li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 4px;
}

@media (max-width: 1024px) {
    .delivery-zones {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .delivery-zones {
        column-count: 2;
    }
}

@media (max-width: 520px) {
    .delivery-zones {
        column-count: 1;
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.gallery img {
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(120deg, var(--green-primary), var(--green-light));
    color: var(--text-light);
    border-radius: 18px;
}

.cta a {
    display: inline-block;
    padding: 14px 22px;
    background: var(--sun-yellow);
    color: var(--cta-text-green);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease-in-out;
}

.cta a:hover,
.cta a:focus-visible {
    background: #012f0a;
}

.cta a[aria-disabled='true'] {
    pointer-events: none;
    background: #9ba99b;
    cursor: not-allowed;
}

.cta-meta {
    margin: 6px 0;
    font-weight: 700;
}

.cta-meta.specs {
    color: #e6ffea;
}

.cta-note {
    margin-top: 12px;
    font-size: 0.95rem;
}

.hidden {
    display: none !important;
}

.benefits-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.benefit-card {
    background: #f5ffe6;
    border-radius: 16px;
    padding: 24px;
    border: 2px solid rgba(11, 82, 32, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--sun-yellow);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.benefit-card p {
    margin: 0 0 10px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.why-card {
    border-radius: 16px;
    padding: 30px;
    color: var(--text-dark);
    background: var(--sand-light);
    box-shadow: 0 15px 30px rgba(0, 90, 36, 0.15);
}

.why-primary {
    background: var(--sand-light);
}

.why-secondary {
    background: var(--sand-light);
}

.why-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.why-card p {
    margin: 0 0 12px 0;
    color: var(--text-dark);
}

.faq-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
    align-items: start;
}

.lead-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 90, 36, 0.12);
}

.lead-card h3 {
    margin-top: 0;
    color: var(--cta-text-green);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lead-form input {
    padding: 12px 14px;
    border: 2px solid rgba(0, 90, 36, 0.2);
    border-radius: 10px;
    font-size: 1rem;
}

.lead-submit {
    padding: 12px 18px;
    background: var(--sun-yellow);
    color: var(--cta-text-green);
    border: none;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.lead-submit:hover,
.lead-submit:focus-visible {
    filter: brightness(0.95);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.floating-whatsapp {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    background: var(--sun-yellow);
    color: var(--cta-text-green);
    padding: 14px 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 999;
    display: none;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: var(--text-light);
    background: #005A24;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--sun-yellow);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0s !important;
        animation-duration: 0s !important;
    }
}

@media (max-width: 768px) {
    header {
        min-height: 45vh;
        padding: 20px 10px;
    }

    .header-overlay {
        padding: 18px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    section {
        padding: 20px 15px;
        margin: 0 auto 18px auto;
    }

    .product-highlight {
        padding: 35px 20px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .cta {
        padding: 24px 16px;
    }

    .benefits-grid,
    .why-grid {
        gap: 12px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .lead-card {
        order: -1;
    }

    .floating-whatsapp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 24px;
    }
}
