:root {
    --bg: #090909;
    --bg-soft: #111;
    --text: #f4f4f4;
    --gold: #c9a24a;
    --gold-soft: #e7c978;
    --muted: #bbbbbb;
    --card: rgba(255,255,255,0.04);
    --border: rgba(201,162,74,0.45);
}
* { box-sizing: border-box; }
body.site-body {
    margin: 0;
    font-family: "Poppins", "Segoe UI", sans-serif;
    background: radial-gradient(circle at 20% 0%, #181818, #070707 65%);
    color: var(--text);
}
.container { width: min(1180px, 92%); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(9,9,9,0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.brand { color: var(--gold-soft); font-weight: 700; text-decoration: none; letter-spacing: .4px; }
.nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.nav a, .actions a { color: var(--text); text-decoration: none; font-size: 0.95rem; }
.nav a:hover, .actions a:hover { color: var(--gold-soft); }
.actions { display: flex; gap: .8rem; }
.lang-switch { border: 1px solid var(--gold); padding: .35rem .55rem; border-radius: 999px; }
.hero-video { position: relative; min-height: 78vh; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.85)); }
.hero-content { position: relative; z-index: 3; padding: 8rem 0 5rem; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin: 0 0 .8rem; }
.hero-content p { color: var(--muted); max-width: 700px; }
.search-box {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: .7rem;
    background: rgba(0,0,0,.6);
    border: 1px solid var(--border);
    padding: .9rem;
    border-radius: 20px;
}
.search-box input, .search-box select, .search-box button,
.lead-form input, .lead-form textarea, .lead-form button {
    background: #111;
    color: var(--text);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: .68rem .8rem;
}
.search-box button, .lead-form button, .btn-gold {
    background: linear-gradient(120deg, #9e7729, #cfab59);
    color: #111;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.block-section { padding: 3rem 0; }
.block-section h2 { margin-bottom: 1rem; }
.rounded-card {
    position: relative;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 300px;
}
.rounded-card img { width: 100%; height: 100%; object-fit: cover; }
.rounded-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .9rem;
    background: linear-gradient(transparent, rgba(0,0,0,.9));
    color: #fff;
    font-weight: 600;
}
.list-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.glass-card {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
    text-decoration: none;
    color: var(--text);
}
.glass-card:hover { border-color: var(--gold-soft); transform: translateY(-2px); transition: .2s ease; }
.page-section { padding: 2.6rem 0; }
.breadcrumb-wrap { border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.02); }
.breadcrumb { display: flex; align-items: center; gap: .45rem; padding: .85rem 0; font-size: .9rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.site-footer { margin-top: 2rem; border-top: 1px solid var(--border); padding: 2.5rem 0; background: #080808; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; }
.footer-grid a { display: block; color: var(--muted); margin: .45rem 0; text-decoration: none; }
.whatsapp-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 99;
    background: #25d366;
    color: #0b1f12;
    text-decoration: none;
    font-weight: 700;
    padding: .72rem 1rem;
    border-radius: 999px;
}
.lead-form { margin-top: 1.5rem; display: grid; gap: .65rem; max-width: 560px; }
.text-center { text-align: center; }
@media (max-width: 992px) {
    .search-box { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .list-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
    .search-box { grid-template-columns: 1fr; }
    .list-grid, .footer-grid { grid-template-columns: 1fr; }
    .nav { display: none; }
}
