﻿/* ====== Base ====== */
:root {
    --bg: #f4efe7;
    --bg-soft: #fffaf3;
    --surface: rgba(255, 255, 255, 0.9);
    --text: #202a22;
    --muted: #5a665f;
    --brand: #2f7a3f;
    --brand-dark: #1f552b;
    --accent: #bf6b33;
    --accent-soft: #f5d9bd;
    --line: rgba(31, 85, 43, 0.18);
    --shadow: 0 18px 45px rgba(29, 49, 36, 0.12);
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 10px;
    --container: min(1120px, 92vw);
    --transition: 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Manrope", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 0%, #efe3cf 0%, transparent 36%),
        radial-gradient(circle at 88% 20%, #f3e6d2 0%, transparent 30%),
        linear-gradient(180deg, #faf5ed 0%, var(--bg) 55%, #efe9de 100%);
    min-height: 100vh;
    line-height: 1.55;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}


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

a {
    color: inherit;
}

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

main {
    padding: 2.8rem 0 4rem;
}

.section {
    margin-top: 2.6rem;
}

.section:first-of-type {
    margin-top: 0;
}

.section-head {
    margin-bottom: 1.1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-dark);
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.section h2,
.section h3,
.hero h1,
.page-title {
    font-family: "Fraunces", Georgia, serif;
    margin: 0.28rem 0 0;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.section h2,
.page-title {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.muted {
    color: var(--muted);
}

/* ====== Header ====== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    backdrop-filter: blur(10px);
    background: rgba(250, 245, 237, 0.9);
    border-bottom: 1px solid rgba(31, 85, 43, 0.14);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-logo {
    width: 70px;
    aspect-ratio: 1;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 20px rgba(36, 56, 42, 0.2);
}

.brand-label {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.14rem;
    line-height: 1.1;
    max-width: 16ch;
}

.brand-label strong {
    color: var(--brand-dark);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.42rem;
}

.site-nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.94rem;
    padding: 0.62rem 0.82rem;
    border-radius: 10px;
    color: #27372d;
    transition: var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(47, 122, 63, 0.14);
    color: var(--brand-dark);
}

.site-nav .cta-link {
    background: linear-gradient(135deg, var(--accent), #dc9257);
    color: #fff;
    box-shadow: 0 10px 18px rgba(191, 107, 51, 0.26);
}

.site-nav .cta-link:hover {
    background: linear-gradient(135deg, #af5f2b, #cf8750);
    color: #fff;
}

.menu-toggle {
    border: 0;
    background: var(--brand);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle svg {
    width: 22px;
    height: 22px;
}

.menu-toggle:hover {
    transform: translateY(-1px);
}

/* ====== Hero ====== */
.hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: clamp(320px, 54vh, 520px);
    display: grid;
    place-items: end start;
    isolation: isolate;
}

.hero.hero-small {
    min-height: clamp(260px, 44vh, 420px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(115deg, rgba(18, 35, 25, 0.78) 10%, rgba(18, 35, 25, 0.36) 56%, rgba(18, 35, 25, 0.68) 100%),
        radial-gradient(circle at 80% 6%, rgba(255, 233, 187, 0.38), transparent 38%);
}

.hero-content {
    padding: clamp(1.2rem, 3vw, 2rem);
    width: min(700px, 100%);
    color: #fef8f2;
}

.hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3.4rem);
    margin-bottom: 0.85rem;
}

.hero p {
    margin: 0;
    max-width: 48ch;
    font-size: clamp(1.02rem, 1.8vw, 1.16rem);
}

.hero-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

/* ====== Cards / Blocks ====== */
.panel,
.card,
.info-card,
.product-card,
.form-card,
.gallery-feature {
    background: var(--surface);
    border: 1px solid rgba(37, 71, 47, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.panel {
    padding: 1.2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.card {
    padding: 1.1rem;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.45rem;
    font-size: 1.18rem;
}

.check-list,
.clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li,
.clean-list li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    margin-top: 0.56rem;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 0.45em;
    background: linear-gradient(135deg, var(--brand), #65ad63);
    box-shadow: 0 0 0 4px rgba(47, 122, 63, 0.14);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.stat {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(31, 85, 43, 0.14);
    text-align: center;
}

.stat strong {
    display: block;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    color: var(--brand-dark);
}

.stat span {
    color: var(--muted);
    font-size: 0.92rem;
}

.cta-strip {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(47, 122, 63, 0.14), rgba(191, 107, 51, 0.16));
    border: 1px dashed rgba(47, 122, 63, 0.4);
}

/* ====== Buttons ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 0;
    text-decoration: none;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.76rem 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.96rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), #4f9e53);
    color: #fff;
    box-shadow: 0 12px 24px rgba(47, 122, 63, 0.24);
}

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

.btn-secondary {
    background: #fff;
    color: var(--brand-dark);
    border: 1px solid rgba(47, 122, 63, 0.35);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.65);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #db9157);
    color: #fff;
    box-shadow: 0 12px 22px rgba(191, 107, 51, 0.22);
}

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

/* ====== Product page ====== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.product-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.product-price {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0.74rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    color: var(--brand-dark);
    background: rgba(47, 122, 63, 0.14);
}

.product-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* ====== About / Gallery ====== */
.feature-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.1fr 1fr;
}

.gallery-feature {
    overflow: hidden;
}

.gallery-feature img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.gallery-feature .body {
    padding: 1rem;
}

.gallery-accordion {
    display: grid;
    gap: 0.75rem;
}

.gallery-group {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.75);
}

.gallery-group > summary {
    list-style: none;
    cursor: pointer;
    padding: 0.9rem 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}

.gallery-group > summary::-webkit-details-marker {
    display: none;
}

.gallery-group > summary::after {
    content: "+";
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 85, 43, 0.26);
}

.gallery-group[open] > summary::after {
    content: "-";
}

.gallery-group .gallery-content {
    padding: 0 1rem 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.68rem;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(23, 59, 34, 0.18);
    background: #fff;
}

.gallery-item button {
    border: 0;
    display: block;
    width: 100%;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item button:hover img {
    transform: scale(1.04);
}

/* ====== Contact ====== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1rem;
}

.info-stack {
    display: grid;
    gap: 0.75rem;
}

.info-card {
    padding: 0.95rem 1rem;
}

.info-card h3 {
    margin: 0 0 0.35rem;
}

.info-card a {
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: none;
}

.form-card {
    padding: 1rem;
}

.form-grid {
    display: grid;
    gap: 0.75rem;
}

.form-grid label {
    display: grid;
    gap: 0.36rem;
    font-weight: 700;
    font-size: 0.92rem;
}

.form-grid input,
.form-grid textarea {
    border: 1px solid rgba(31, 85, 43, 0.24);
    border-radius: 10px;
    padding: 0.72rem 0.8rem;
    font: inherit;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
}

.form-grid input:focus,
.form-grid textarea:focus {
    border-color: var(--brand);
    outline: 2px solid rgba(47, 122, 63, 0.2);
    outline-offset: 1px;
}

.form-note {
    font-size: 0.86rem;
    color: var(--muted);
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.social-list a {
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(31, 85, 43, 0.2);
    padding: 0.45rem 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
}

.social-list a:hover {
    background: rgba(47, 122, 63, 0.12);
}

/* ====== Footer ====== */
.site-footer {
    border-top: 1px solid rgba(31, 85, 43, 0.15);
    padding: 1.45rem 0 2rem;
    background: linear-gradient(180deg, rgba(250, 245, 237, 0.78), rgba(235, 227, 216, 0.85));
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-inner p {
    margin: 0;
    color: #3a4740;
    font-size: 0.92rem;
}

.footer-inner a {
    color: var(--brand-dark);
    font-weight: 700;
}

/* ====== Floating WhatsApp ====== */
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 2px solid #fff;
    background: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 14px 26px rgba(12, 65, 32, 0.34);
    z-index: 1300;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.04);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
}

/* ====== Lightbox ====== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-dialog {
    position: relative;
    width: min(1100px, 100%);
    max-height: 90vh;
    display: grid;
    place-items: center;
}

.lightbox-image {
    max-height: 85vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -14px;
    right: -6px;
    border: 0;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(21, 21, 21, 0.85);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

/* ====== Reveal Animation ====== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal[data-delay="1"] {
    transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
    transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
    transition-delay: 0.24s;
}

/* ====== Utilities ====== */
.split {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.1fr 1fr;
}

.caption {
    font-size: 0.92rem;
    color: var(--muted);
}

.inline-link {
    color: var(--brand-dark);
    font-weight: 700;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.9rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 85, 43, 0.24);
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
    color: #294334;
}

.kicker {
    font-size: 0.88rem;
    color: #33483a;
    font-weight: 700;
    margin: 0;
}

.faq-list {
    display: grid;
    gap: 0.7rem;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(31, 85, 43, 0.18);
    background: rgba(255, 255, 255, 0.86);
    padding: 0.2rem 0.85rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 0.72rem 0;
    font-weight: 800;
}

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

.faq-item p {
    margin: 0 0 0.75rem;
    color: var(--muted);
}

/* ====== Responsive ====== */
@media (max-width: 1000px) {
    .card-grid,
    .product-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split,
    .contact-layout,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        right: 0;
        top: 88px;
        width: min(340px, 84vw);
        height: calc(100vh - 88px);
        padding: 0.95rem;
        background: rgba(248, 239, 226, 0.98);
        border-left: 1px solid rgba(31, 85, 43, 0.18);
        box-shadow: -10px 0 32px rgba(33, 33, 33, 0.15);
        transform: translateX(105%);
        transition: transform var(--transition);
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .site-nav a {
        padding: 0.78rem 0.9rem;
        text-align: left;
    }

    .hero {
        min-height: clamp(290px, 44vh, 420px);
    }
}

@media (max-width: 620px) {
    .card-grid,
    .product-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }
}




:focus-visible {
    outline: 3px solid rgba(47, 122, 63, 0.55);
    outline-offset: 3px;
}

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