:root {
    --surface: #fffdfa;
    --surface-strong: #132033;
    --ink: #172031;
    --muted: #606b79;
    --line: rgba(19, 32, 51, 0.1);
    --gold: #be9a5f;
    --gold-deep: #947140;
    --accent: #203d5a;
    --accent-soft: #edf3f8;
    --shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
    --radius-lg: 28px;
    --radius-md: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(200, 169, 107, 0.22), transparent 28%),
        linear-gradient(180deg, #fbf7f0 0%, #f4efe7 42%, #f8f5ef 100%);
}
a { color: inherit; text-decoration: none; }
body.page-booting {
    overflow: hidden;
}
body.page-booting > *:not(#startupLoader) {
    visibility: hidden;
}
.startup-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(200, 169, 107, 0.24), transparent 26%),
        linear-gradient(180deg, #fbf7f0 0%, #f4efe7 42%, #f8f5ef 100%);
    z-index: 3000;
    padding: 24px;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
body.page-ready .startup-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.startup-loader-card {
    min-width: min(92vw, 380px);
    padding: 32px 28px;
    border-radius: 28px;
    background: rgba(255, 253, 250, 0.97);
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
    text-align: center;
}
.startup-loader-mark {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(190, 154, 95, 0.2), rgba(19, 32, 51, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 16px 28px rgba(19, 32, 51, 0.08);
}
.startup-loader-mark i {
    color: var(--gold-deep);
    font-size: 1.7rem;
    animation: loaderFloat 1.2s ease-in-out infinite;
}
.startup-loader-title {
    margin-bottom: 8px;
    color: var(--surface-strong);
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.startup-loader-text {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}
.section { padding: 96px 0; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: currentColor; }
.display-title, .section-title {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: -0.03em;
}
.display-title { font-size: clamp(3rem, 7vw, 5.8rem); line-height: 0.94; margin-bottom: 18px; }
.section-title { font-size: clamp(2.3rem, 4vw, 3.5rem); line-height: 0.98; margin-bottom: 18px; }
.lead-copy, .section-copy { color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.section-copy { max-width: 560px; }

.topbar {
    background: rgba(10, 18, 29, 0.92);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
}
.topbar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 20px;
    padding: 10px 12px;
}
.topbar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
}
.topbar-meta i {
    color: #f0d29e;
    margin-right: 8px;
}
.topbar-meta a {
    color: #fff;
}
.topbar-meta a:hover,
.topbar-meta a:focus {
    color: #f0d29e;
}

.main-nav {
    background: rgba(255, 253, 249, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(22, 36, 58, 0.08);
}
.navbar { padding: 18px 0; }
.navbar-toggler {
    border: 1px solid rgba(22, 36, 58, 0.14);
    border-radius: 12px;
    padding: 8px 10px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(36, 71, 106, 0.12); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2822,36,58,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--surface-strong);
}
.brand-mark {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.brand-sub {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted);
    margin-top: 6px;
}
.nav-link { color: var(--ink); font-weight: 600; margin-left: 14px; }
.nav-link:hover, .nav-link:focus, .nav-link.active { color: var(--accent); }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 18px;
    padding: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(19, 32, 51, 0.08), rgba(190, 154, 95, 0.14));
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: 0 12px 24px rgba(19, 32, 51, 0.08);
}
.lang-btn {
    border: none;
    background: transparent;
    color: var(--muted);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.lang-btn:hover, .lang-btn:focus {
    background: rgba(255, 255, 255, 0.72);
    color: var(--surface-strong);
    transform: translateY(-1px);
}
.lang-btn.active {
    background: var(--surface-strong);
    color: #fff;
    box-shadow: 0 10px 18px rgba(19, 32, 51, 0.22);
}

.btn-main, .btn-outline-soft {
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-main {
    background: linear-gradient(135deg, var(--gold) 0%, #e1c388 100%);
    border: none;
    color: #1a2332;
    box-shadow: 0 16px 30px rgba(200, 169, 107, 0.28);
}
.btn-main:hover, .btn-main:focus {
    transform: translateY(-2px);
    box-shadow: 0 20px 32px rgba(200, 169, 107, 0.34);
    color: #1a2332;
}
.btn-main i, .btn-outline-soft i { margin-right: 10px; }
.btn-outline-soft {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.btn-outline-soft:hover, .btn-outline-soft:focus {
    transform: translateY(-2px);
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.map-shell {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.map-shell iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
    filter: grayscale(0.1) contrast(1.02);
}

footer {
    position: relative;
    overflow: hidden;
    padding: 0 0 40px;
    background:
        radial-gradient(circle at top right, rgba(190, 154, 95, 0.14), transparent 28%),
        linear-gradient(135deg, #0d1727 0%, #13233a 52%, #19324d 100%);
    color: rgba(255, 255, 255, 0.78);
}
footer::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(190, 154, 95, 0.12), transparent 70%);
}
.footer-shell {
    position: relative;
    margin-top: 36px;
    padding: 42px 38px 30px;
    border-radius: 30px 30px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.16);
}
.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand { max-width: 560px; }
.footer-mark { display: inline-flex; flex-direction: column; margin-bottom: 16px; color: #fff; }
.footer-mark strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.03em;
}
.footer-mark span {
    margin-top: 8px;
    font-size: 0.76rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}
.footer-description { margin: 0; color: rgba(255, 255, 255, 0.72); line-height: 1.8; }
.footer-contact { display: grid; gap: 14px; align-content: start; }
.footer-contact a, .footer-contact div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
}
.footer-contact i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(190, 154, 95, 0.14);
    color: #f0d29e;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px 24px;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1055;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 18px;
    padding: 16px 18px;
    background: rgba(15, 26, 43, 0.94);
    color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.cookie-banner button {
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    background: var(--gold);
    color: #16243a;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cookie-banner button:hover, .cookie-banner button:focus {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(190, 154, 95, 0.28);
}

.loading-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 26, 43, 0.42);
    backdrop-filter: blur(6px);
    z-index: 2000;
    padding: 24px;
}
.loading-overlay.active { display: flex; }
.loading-card {
    min-width: min(92vw, 360px);
    padding: 28px 26px;
    border-radius: 24px;
    background: rgba(255, 253, 250, 0.96);
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
    text-align: center;
}
.loading-icon-shell {
    width: 68px;
    height: 68px;
    margin: 0 auto 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(190, 154, 95, 0.18), rgba(19, 32, 51, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 14px 26px rgba(19, 32, 51, 0.08);
}

#loaderIcon {
    color: var(--gold-deep);
    font-size: 1.45rem;
    animation: loaderFloat 1.2s ease-in-out infinite;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 3px solid rgba(190, 154, 95, 0.2);
    border-top-color: var(--gold-deep);
    animation: spin 0.8s linear infinite;
}

@keyframes loaderFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.float-btn {
    position: fixed;
    right: 22px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 20px 32px rgba(15, 23, 42, 0.24);
    z-index: 1045;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-btn:hover, .float-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 24px 36px rgba(15, 23, 42, 0.3);
    color: #fff;
}
.whatsapp { bottom: 104px; background: #25d366; }
.call { bottom: 36px; background: #24476a; }

@media (max-width: 991.98px) {
    .nav-link { margin-left: 0; margin-top: 8px; }
    .navbar .btn-main { margin-top: 14px; width: 100%; }
    .lang-switch { margin-left: 0; margin-top: 16px; }
}
@media (max-width: 767.98px) {
    .section { padding: 72px 0; }
    .topbar .container, .cookie-banner, .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-shell { padding: 32px 24px 24px; border-radius: 26px 26px 0 0; }
    .float-btn { right: 16px; }
    .whatsapp { bottom: 96px; }
    .call { bottom: 28px; }
}



.startup-loader {
    overflow: hidden;
}
.startup-loader-card {
    position: relative;
    overflow: hidden;
    animation: startupCardFloat 1.8s ease-in-out infinite;
}
.startup-loader-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.52) 50%, transparent 80%);
    transform: translateX(-140%);
    animation: startupShine 2.6s ease-in-out infinite;
}
.startup-loader-mark {
    position: relative;
}
.startup-loader-mark::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(190, 154, 95, 0.35);
    animation: startupPulse 1.6s ease-out infinite;
}
.startup-loader-title,
.startup-loader-text,
.startup-loader-mark {
    position: relative;
    z-index: 1;
}

@keyframes startupCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes startupPulse {
    0% { transform: scale(0.92); opacity: 0.75; }
    70% { transform: scale(1.12); opacity: 0; }
    100% { transform: scale(1.12); opacity: 0; }
}
@keyframes startupShine {
    0% { transform: translateX(-140%); }
    60%, 100% { transform: translateX(140%); }
}
body.page-booting > *:not(#startupLoader) {
    visibility: visible;
}
.startup-loader {
    background: rgba(15, 26, 43, 0.18);
    backdrop-filter: blur(3px);
}