:root {
    --bg: #f3f1eb;
    --surface: #ffffff;
    --surface-alt: #f8f6f1;
    --dark: #0f1d17;
    --dark-soft: #1d3128;
    --text: #1a1f1c;
    --muted: #5d655f;
    --line: rgba(18, 33, 26, 0.10);
    --brand: #9b7b43;
    --brand-dark: #7e6335;
    --brand-soft: rgba(155, 123, 67, 0.10);
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(15, 29, 23, 0.08);
    --radius: 24px;
    --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f3f1eb 0%, #fbfaf7 100%);
    line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.page-shell { padding-top: 32px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brand);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--brand);
}
h1, h2, h3, h4 { color: var(--dark); margin-top: 0; }
h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.97;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}
h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}
h3 { font-size: 24px; margin-bottom: 14px; }
p { margin-top: 0; color: var(--muted); }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
}
.button-primary { background: var(--dark); color: var(--white); }
.button-primary:hover { transform: translateY(-2px); background: #15251d; }
.button-secondary { background: transparent; color: var(--dark); border: 1px solid var(--line); }
.button-secondary:hover { border-color: var(--brand); color: var(--brand); }
.button-gold { background: var(--brand); color: var(--white); }
.button-gold:hover { background: var(--brand-dark); transform: translateY(-2px); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(251, 250, 247, 0.82);
    border-bottom: 1px solid rgba(18, 33, 26, 0.06);
}
.nav-shell {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255,255,255,0.7);
    padding: 6px;
}
.brand strong { display: block; font-size: 16px; }
.brand span { display: block; font-size: 12px; color: var(--muted); }
.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
.site-nav a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #263129;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a.is-active::after { width: 100%; }
.site-nav a.is-active { color: var(--dark); }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-pill {
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-dark);
    background: rgba(255,255,255,0.7);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: 0;
    padding: 0;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    display: block;
}
.hero-premium {
    padding: 48px 0 96px;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: stretch;
}
.hero-copy,
.hero-panel,
.panel,
.card,
.info-card,
.contact-card,
.faq-item,
.table-card,
.stat-card,
.feature-box {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(18, 33, 26, 0.08);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}
.hero-copy {
    padding: clamp(32px, 4vw, 56px);
    background: linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.76) 100%);
}
.hero-copy p { font-size: 18px; max-width: 680px; }
.hero-copy h1 span,
.highlight { color: var(--brand); }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}
.stat-card {
    padding: 18px;
}
.stat-card strong { display: block; font-size: 26px; margin-bottom: 6px; }
.hero-panel {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}
.hero-panel img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
}
.overlay-box {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    background: rgba(15, 29, 23, 0.84);
    color: rgba(255,255,255,0.80);
    border-radius: 22px;
    padding: 22px;
}
.overlay-box strong { display: block; color: #fff; font-size: 24px; margin-bottom: 8px; }
.grid-3,
.grid-4,
.grid-2 {
    display: grid;
    gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card,
.info-card,
.feature-box,
.table-card,
.contact-card { padding: 28px; }
.card-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-weight: 800;
    margin-bottom: 18px;
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}
.dark-band {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: rgba(255,255,255,0.80);
}
.dark-band h2,
.dark-band h3,
.dark-band strong,
.dark-band .eyebrow { color: #fff; }
.dark-band p { color: rgba(255,255,255,0.74); }
.dark-band .info-card,
.dark-band .feature-box,
.dark-band .stat-card {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.10);
    box-shadow: none;
}
.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: center;
}
.media-frame {
    overflow: hidden;
    border-radius: 28px;
    min-height: 560px;
    box-shadow: var(--shadow);
}
.media-frame img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}
.list-clean {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.list-clean li {
    padding-left: 20px;
    position: relative;
}
.list-clean li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}
.metric-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}
.metric-box {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}
.metric-box strong { display: block; font-size: 28px; color: #fff; margin-bottom: 6px; }
.table {
    width: 100%;
    border-collapse: collapse;
}
.table th,
.table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.table th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}
.cta-banner {
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.breadcrumb {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}
.breadcrumb span { color: var(--brand); }
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.input,
.textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    font: inherit;
    color: var(--text);
}
.textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
}
.contact-stack {
    display: grid;
    gap: 18px;
}
.faq-stack {
    display: grid;
    gap: 14px;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item { padding: 22px 24px; }
.faq-item p { margin-top: 12px; margin-bottom: 0; }
.site-footer {
    background: #0d1813;
    color: rgba(255,255,255,0.70);
    padding-top: 70px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 28px;
    padding-bottom: 28px;
}
.brand-footer strong { color: #fff; }
.brand-footer span { color: rgba(255,255,255,0.56); }
.footer-copy { max-width: 420px; color: rgba(255,255,255,0.65); }
.site-footer h4 { color: #fff; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer li, .site-footer a { color: rgba(255,255,255,0.68); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
}
.footer-bottom a { color: #d6b67b; }
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    padding: 14px 18px;
    background: #173326;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.16);
    font-weight: 700;
}
.page-hero {
    padding: 36px 0 70px;
}
.page-hero-box {
    padding: 38px;
    background: linear-gradient(145deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.70) 100%);
    border: 1px solid rgba(18, 33, 26, 0.08);
    border-radius: 30px;
    box-shadow: var(--shadow);
}
.notice-box {
    background: var(--brand-soft);
    border: 1px solid rgba(155, 123, 67, 0.14);
    color: var(--dark-soft);
    padding: 16px 18px;
    border-radius: 18px;
}
@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .contact-grid,
    .footer-top,
    .grid-4,
    .grid-3,
    .grid-2,
    .metric-strip { grid-template-columns: 1fr; }
    .nav-cta { display: none; }
    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        background: rgba(255,255,255,0.96);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .site-nav.is-open { display: flex; }
    .nav-toggle { display: flex; }
}
@media (max-width: 760px) {
    .container { width: min(var(--container), calc(100% - 24px)); }
    .section { padding: 66px 0; }
    .hero-copy,
    .hero-panel,
    .card,
    .info-card,
    .feature-box,
    .table-card,
    .contact-card,
    .page-hero-box,
    .cta-banner { padding: 22px; }
    .hero-panel img, .media-frame img { min-height: 320px; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .hero-stats { grid-template-columns: 1fr; }
}


.form-alert {
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 16px;
    border: 1px solid var(--line);
}
.form-alert strong {
    display: block;
    margin-bottom: 8px;
}
.form-alert ul {
    margin: 0;
    padding-left: 18px;
}
.form-alert-success {
    background: rgba(40, 167, 69, 0.10);
    border-color: rgba(40, 167, 69, 0.30);
    color: #17542a;
}
.form-alert-error {
    background: rgba(181, 44, 44, 0.08);
    border-color: rgba(181, 44, 44, 0.22);
    color: #7d1d1d;
}
.sr-only-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
