:root {
    --bg: #f6f3ef;
    --surface: #ffffff;
    --text: #23211f;
    --muted: #6f6860;
    --line: #e4ddd3;
    --dark: #171412;
    --gold: #b58a4a;
    --gold-dark: #8a642e;
    --red: #9d2533;
    --shadow: 0 18px 45px rgba(23, 20, 18, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 76px; }
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 100px;
    width: auto;
    display: block;
}
.brand-mark { font-family: Georgia, serif; font-size: 2.1rem; letter-spacing: .04em; }
.brand-text { color: var(--muted); text-transform: uppercase; font-size: .78rem; letter-spacing: .14em; }
.main-nav { display: flex; gap: 22px; font-size: .95rem; }
.main-nav a { text-decoration: none; color: var(--muted); }
.main-nav a:hover { color: var(--red); }
.hero {
    color: white;
    background:
        radial-gradient(circle at 78% 22%, rgba(181,138,74,.28), transparent 30%),
        linear-gradient(135deg, #171412 0%, #2b2520 64%, #432b24 100%);
    padding: 92px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: center; }
.eyebrow { margin: 0 0 10px; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; }
h1, h2, h3 { line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2.3rem, 6vw, 5rem); letter-spacing: -.05em; max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.04em; }
h3 { font-size: 1.3rem; }
.lead { font-size: 1.18rem; color: rgba(255,255,255,.78); max-width: 680px; margin: 24px 0 32px; }
.hero-actions, .form-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .2s ease;
}
.btn.primary, .btn.small { background: var(--red); color: white; }
.btn.primary:hover, .btn.small:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(157,37,51,.22); }
.btn.secondary { color: white; border-color: rgba(255,255,255,.35); }
.btn.ghost { background: transparent; border-color: var(--line); color: var(--muted); }
.btn.small { padding: 10px 16px; font-size: .92rem; }
.hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    padding: 26px;
    box-shadow: var(--shadow);
}
.hero-card div { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-card div:last-child { border-bottom: 0; }
.stat { display: block; color: var(--gold); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.section { padding: 86px 0; }
.section.muted { background: #eee8df; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p:last-child { color: var(--muted); font-size: 1.06rem; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    justify-content: center;
    gap: 22px;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.product-image { background: linear-gradient(180deg, #faf8f5, #ebe4db); padding: 28px; display: grid; place-items: center; min-height: 250px; }
.product-image img { max-width: 100%; max-height: 205px; object-fit: contain; filter: drop-shadow(0 18px 14px rgba(0,0,0,.10)); }

.product-image-button {
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: zoom-in;
    display: grid;
    place-items: center;
    width: 100%;
}
.product-image-button img {
    transition: transform .2s ease, filter .2s ease;
}
.product-image-button:hover img {
    transform: scale(1.035);
}
body.modal-open {
    overflow: hidden;
}
.image-modal[hidden] {
    display: none !important;
}
.image-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}
.image-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(23, 20, 18, .74);
    backdrop-filter: blur(4px);
    cursor: zoom-out;
}
.image-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 96vw);
    max-height: 90vh;
    background: #f8f5f0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 28px 80px rgba(0,0,0,.35);
    display: grid;
    place-items: center;
}
.image-modal-dialog img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 18px;
}
.image-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: white;
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.image-modal-close:hover {
    color: var(--red);
}

.product-content { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product-content p { margin: 0; color: var(--muted); }
.article-no { color: var(--gold-dark) !important; font-weight: 800; font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; }
dl { margin: 0; display: grid; gap: 8px; font-size: .92rem; }
dl div { display: grid; grid-template-columns: 82px 1fr; gap: 10px; }
dt { color: var(--muted); } dd { margin: 0; font-weight: 650; }
.product-content .btn { margin-top: auto; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-grid article { background: rgba(255,255,255,.6); border: 1px solid var(--line); border-radius: 24px; padding: 26px; }
.feature-grid p { color: var(--muted); margin-bottom: 0; }
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: start; }
.selected-list { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.empty-selection { color: var(--muted); margin: 0; }
.product-tag { background: #efe7dc; color: var(--text); border: 1px solid var(--line); border-radius: 999px; padding: 8px 8px 8px 14px; display: inline-flex; gap: 10px; align-items: center; }
.product-tag button { width: 26px; height: 26px; border-radius: 50%; border: 0; background: var(--dark); color: white; cursor: pointer; }
.request-form { background: white; border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: var(--shadow); }
label { display: block; margin-bottom: 16px; font-weight: 750; }
input, textarea { width: 100%; margin-top: 7px; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; background: #fffdfb; }
input:focus, textarea:focus { outline: 3px solid rgba(181,138,74,.20); border-color: var(--gold); }
.form-note { color: var(--muted); font-size: .88rem; margin: 16px 0 0; }
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 24px; align-items: start; }
.site-footer strong { color: white; }
.site-footer a { color: rgba(255,255,255,.88); text-decoration: none; }
.site-footer nav { display: flex; gap: 18px; }

.whatsapp-float {
    display: none;
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 880px) {
	.brand-logo {
        height: 70px;
    }
    .nav-wrap, .main-nav { align-items: flex-start; }
    .nav-wrap, .hero-grid, .form-layout, .footer-grid { grid-template-columns: 1fr; display: grid; }
    .main-nav { flex-wrap: wrap; gap: 12px; }
    .hero { padding: 64px 0; }
    .product-grid, .feature-grid { grid-template-columns: 1fr; }
    .section { padding: 58px 0; }
	.whatsapp-float {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 50;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: #25D366;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 28px;
        font-weight: 700;
        box-shadow: 0 14px 30px rgba(0,0,0,.25);
    }
}

.legal-hero {
    color: white;
    background:
        radial-gradient(circle at 78% 22%, rgba(181,138,74,.24), transparent 30%),
        linear-gradient(135deg, #171412 0%, #2b2520 64%, #432b24 100%);
    padding: 70px 0;
}
.legal-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    max-width: 900px;
}
.legal-section {
    padding-top: 58px;
}
.legal-content {
    max-width: 880px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 48px);
}
.legal-content h2 {
    font-size: 1.35rem;
    letter-spacing: -.02em;
    margin-top: 34px;
    margin-bottom: 10px;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p {
    color: var(--muted);
    margin: 0 0 16px;
}
.legal-content strong {
    color: var(--text);
}
.legal-content a {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
}
.legal-content a:hover {
    text-decoration: underline;
}
.legal-content ul {
    margin: 0 0 18px 1.2rem;
    color: var(--muted);
    padding: 0;
}
.legal-content li {
    margin: 6px 0;
}
.legal-intro {
    font-size: 1.08rem;
    color: var(--text) !important;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


.feature-icon {
    width: 40px;
    height: 40px;
    fill: #c9a35b; /* Gold/Bronze */
    display: block;
    margin-bottom: 0px;
}
.feature-icon.stroke {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #c9a35b;
    stroke-width: 1.8;
    stroke-linejoin: round;
    stroke-linecap: round;
}


