:root {
    --cream: #fff8e8;
    --cream-2: #fffdf5;
    --green: #3f7d4a;
    --green-dark: #2d5c36;
    --yellow: #f2b705;
    --dark: #1f2a24;
    --muted: #66736b;
    --line: #ece7d8;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(31, 42, 36, .12);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--dark);
    background: var(--cream-2);
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 82px 0; }
.section-soft { background: linear-gradient(180deg, #fff, var(--cream)); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
    margin-bottom: 10px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: var(--yellow);
}
h1, h2, h3 { line-height: 1.14; margin: 0 0 16px; }
h1 { font-size: clamp(40px, 6vw, 74px); letter-spacing: -.05em; }
h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.035em; }
h3 { font-size: 22px; }
p { margin: 0 0 18px; color: var(--muted); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 21px;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-weight: 850;
    border: 1px solid transparent;
    box-shadow: 0 12px 30px rgba(63, 125, 74, .22);
    cursor: pointer;
}
.btn:hover { transform: translateY(-1px); background: var(--green-dark); }
.btn-outline {
    background: white;
    color: var(--green-dark);
    border-color: var(--line);
    box-shadow: none;
}
.btn-light {
    background: white;
    color: var(--green-dark);
    box-shadow: none;
}
.link-more {
    font-weight: 850;
    color: var(--green-dark);
}
.topbar { background: var(--green-dark); color: rgba(255,255,255,.9); font-size: 14px; }
.topbar a { color: #fff; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 253, 245, .88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(236, 231, 216, .85);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}
.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(63, 125, 74, .23);
}
.brand strong { display: block; font-size: 18px; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-weight: 650; font-size: 12px; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 18px; font-weight: 750; }
.main-nav a:not(.nav-cta) { color: #334137; }
.main-nav a:hover { color: var(--green-dark); }
.nav-cta {
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--yellow);
    color: #2b2300;
}
.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 22px;
}
.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 72px;
    background:
        radial-gradient(circle at 10% 10%, rgba(242,183,5,.22), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(63,125,74,.18), transparent 30%),
        linear-gradient(135deg, var(--cream), #fff);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-note {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
    color: var(--muted);
    font-weight: 750;
}
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note span::before { content: "✓"; color: var(--green); font-weight: 900; }
.hero-card {
    position: relative;
    background: white;
    border: 1px solid var(--line);
    border-radius: 36px;
    padding: 28px;
    box-shadow: var(--shadow);
    min-height: 430px;
    overflow: hidden;
}
.product-visual {
    height: 260px;
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(63,125,74,.12), transparent),
        linear-gradient(135deg, #fff, var(--cream));
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.product-visual::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 210px;
    left: 70px;
    top: 36px;
    border-radius: 36px 36px 18px 18px;
    background: linear-gradient(180deg, #fff, #f4f4f4);
    box-shadow: inset 0 0 0 10px rgba(63,125,74,.08), 0 20px 40px rgba(31,42,36,.12);
}
.product-visual::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 145px;
    right: 34px;
    bottom: 35px;
    border-radius: 45% 45% 32px 32px;
    background:
        radial-gradient(circle at 30px 45px, #fff 0 21px, transparent 22px),
        radial-gradient(circle at 82px 42px, #fff 0 21px, transparent 22px),
        radial-gradient(circle at 135px 45px, #fff 0 21px, transparent 22px),
        radial-gradient(circle at 186px 42px, #fff 0 21px, transparent 22px),
        linear-gradient(180deg, #d9c29a, #c6aa78);
    box-shadow: 0 20px 40px rgba(31,42,36,.16);
}
.hero-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}
.hero-mini div {
    padding: 18px;
    border-radius: 20px;
    background: var(--cream);
    border: 1px solid var(--line);
}
.hero-mini strong { display: block; font-size: 22px; color: var(--green-dark); }
.hero-mini span { color: var(--muted); font-weight: 700; font-size: 13px; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -35px;
    position: relative;
    z-index: 2;
}
.trust-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 50px rgba(31,42,36,.08);
}
.icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--cream);
    color: var(--green-dark);
    font-size: 23px;
    margin-bottom: 14px;
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}
.section-head p { max-width: 620px; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(31,42,36,.07);
    display: flex;
    flex-direction: column;
}
.product-img {
    min-height: 210px;
    background:
        radial-gradient(circle at 70% 15%, rgba(242,183,5,.18), transparent 22%),
        linear-gradient(135deg, var(--cream), #fff);
    display: grid;
    place-items: center;
    color: var(--green-dark);
    font-size: 58px;
    font-weight: 900;
}
.product-img img { width: 100%; height: 230px; object-fit: cover; }
.product-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(63,125,74,.10);
    color: var(--green-dark);
    font-weight: 850;
    font-size: 12px;
    margin-bottom: 12px;
}
.price {
    font-weight: 900;
    color: var(--dark);
    margin-top: auto;
    margin-bottom: 18px;
}
.card-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
}
.feature-list { display: grid; gap: 14px; margin-top: 22px; }
.feature-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
}
.feature-item span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: white;
    flex: 0 0 auto;
    font-weight: 900;
}
.about-visual {
    min-height: 430px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 20% 25%, #fff 0 38px, transparent 39px),
        radial-gradient(circle at 46% 28%, #fff 0 38px, transparent 39px),
        radial-gradient(circle at 72% 25%, #fff 0 38px, transparent 39px),
        linear-gradient(135deg, #d9c29a, #b99456);
    box-shadow: var(--shadow);
    border: 14px solid white;
}
.service-grid, .blog-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card, .blog-card, .testimonial-card, .info-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 18px 55px rgba(31,42,36,.07);
}
.service-card .icon { margin-bottom: 18px; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.stars { color: #d39b00; letter-spacing: 2px; margin-bottom: 10px; }
.cta {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
    border-radius: 36px;
    padding: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    position: relative;
}
.cta h2, .cta p { color: white; }
.cta p { opacity: .86; }
.page-hero {
    padding: 70px 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(242,183,5,.20), transparent 32%),
        linear-gradient(135deg, var(--cream), #fff);
    border-bottom: 1px solid var(--line);
}
.breadcrumb { color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.filter-bar a {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: white;
    font-weight: 800;
}
.filter-bar a.active, .filter-bar a:hover { background: var(--green); color: white; border-color: var(--green); }
.detail-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
    align-items: start;
}
.detail-image {
    background: white;
    border: 1px solid var(--line);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.detail-image .product-img { min-height: 430px; }
.detail-panel {
    background: white;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 18px 55px rgba(31,42,36,.07);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.form-field { margin-bottom: 16px; }
label { display: block; font-weight: 850; margin-bottom: 8px; }
input, textarea, select {
    width: 100%;
    border: 1px solid #ded8c8;
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    background: white;
    color: var(--dark);
}
textarea { min-height: 130px; resize: vertical; }
.alert {
    padding: 15px 18px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 750;
}
.alert-success { background: #ecf9ef; color: #23642f; border: 1px solid #cfead4; }
.alert-error { background: #fff0f0; color: #8b1f1f; border: 1px solid #ffd0d0; }
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: start;
}
.info-list { display: grid; gap: 16px; }
.info-card h3 { margin-bottom: 6px; }
.map-box {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--cream);
    min-height: 320px;
}
.map-box iframe { width: 100%; height: 360px; border: 0; display: block; }
.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 18px 55px rgba(31,42,36,.07);
}
.gallery-item img { width: 100%; height: 260px; object-fit: cover; }
.gallery-item div { padding: 15px 18px; font-weight: 850; }
.blog-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 18px; margin-bottom: 18px; }
.content {
    background: white;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 55px rgba(31,42,36,.06);
}
.content p, .content li { color: #465149; }
.site-footer {
    background: #19221c;
    color: white;
    padding: 62px 0 24px;
}
.site-footer p, .site-footer a, .site-footer small { color: rgba(255,255,255,.72); }
.site-footer h3 { color: white; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr 1fr 1fr;
    gap: 34px;
}
.footer-grid a { display: block; margin: 8px 0; }
.footer-brand .brand-mark { background: var(--yellow); color: #2b2300; }
.footer-bottom {
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.13);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,.65);
}
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(37,211,102,.34);
    z-index: 40;
}
.empty-state {
    padding: 36px;
    border-radius: 24px;
    border: 1px dashed #d6cdb8;
    background: #fff;
    text-align: center;
    color: var(--muted);
}
@media(max-width: 980px) {
    .main-nav {
        display: none;
        position: absolute;
        inset: 78px 20px auto 20px;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; }
    .hero-grid, .split, .detail-grid, .contact-grid { grid-template-columns: 1fr; }
    .trust-grid, .product-grid, .service-grid, .blog-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 680px) {
    .container { width: min(100% - 26px, 1180px); }
    .section { padding: 58px 0; }
    .topbar-inner { flex-direction: column; align-items: flex-start; padding: 8px 0; }
    .hero { padding: 58px 0; }
    .hero-mini, .trust-grid, .product-grid, .service-grid, .blog-grid, .gallery-grid, .testimonial-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
    .section-head { display: block; }
    .cta { padding: 32px; display: block; }
    .footer-bottom { flex-direction: column; }
    .brand strong { font-size: 16px; }
}
