/* ============================================================
   Espaço Reservado — Estilo Global
   Tipografia: Fraunces (display, mais suave que Cinzel) +
               Plus Jakarta Sans (corpo, mais suave que Montserrat)
   ============================================================ */

:root {
    --bg-pastel: #f9f6f0;
    --bg-card: #ffffff;
    --accent-gold: #d97706;
    --accent-gold-hover: #b45309;
    --text-dark: #1e293b;
    --text-heading: #0f172a;
    --text-muted: #64748b;
    --primary-blue: #2563eb;
    --navy-dark: #0f172a;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-pastel);
    overflow-x: hidden;
}

.font-luxury {
    font-family: 'Fraunces', serif;
    font-optical-sizing: auto;
    letter-spacing: 0.3px;
}

/* ---------- Top Utility Bar ---------- */
.top-bar {
    background-color: #111827;
    padding: 10px 0;
    font-size: 13px;
}
.btn-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
}
.btn-bar-outline {
    color: #e5e7eb;
    border-color: rgba(255,255,255,0.25);
    background: transparent;
}
.btn-bar-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(217,119,6,0.08);
}
.btn-bar-solid {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    box-shadow: 0 3px 12px rgba(217,119,6,0.35);
}
.btn-bar-solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(217,119,6,0.45);
    color: #ffffff;
}

/* ---------- Premium Navbar ---------- */
.navbar {
    background-color: rgba(249, 246, 240, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid #e5e7eb;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.navbar-brand {
    gap: 2px;
}
.navbar-brand .brand-icon {
    color: var(--accent-gold);
    font-size: 1.7rem;
    line-height: 1;
}
.navbar-brand .brand-word {
    letter-spacing: 1px;
}
.nav-link {
    color: var(--text-heading);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin: 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

/* ---------- Premium Buttons ---------- */
.btn-gold {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: white !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 28px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
    color: white;
}
.btn-nav-outline {
    border: 2px solid var(--navy-dark);
    color: var(--navy-dark) !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.btn-nav-outline:hover {
    background-color: var(--navy-dark);
    color: white !important;
}

/* ---------- Carousel ---------- */
.carousel-item {
    height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(249, 246, 240, 0.95) 35%, rgba(249, 246, 240, 0.4) 100%);
}
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8%;
    z-index: 10;
    max-width: 600px;
}

/* ---------- Service Section & Cards ---------- */
.section-title {
    position: relative;
    margin-bottom: 60px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 4px;
    background-color: var(--accent-gold);
}
.service-card {
    background: var(--bg-card);
    border: none;
    border-radius: 18px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.12);
    border-bottom: 4px solid var(--accent-gold);
}
.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: var(--accent-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.1);
}

/* ---------- Premium Footer ---------- */
.footer {
    background-color: #0b0f17;
    color: #94a3b8;
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--accent-gold);
}
.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-link:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}
