/* ============================================
   CSS VARIÁVEIS E RESET
   ============================================ */
:root {
    --gold: #C8A45C;
    --gold-light: #E8D5A3;
    --gold-dark: #A8893E;
    --navy: #0A2540;
    --navy-light: #F0F4FA;
    --white: #FFFFFF;
    --gray-text: #1E293B;
    --gray-light: #F8FAFC;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--gray-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--gold-dark);
}

/* ============================================
   BOTÕES
   ============================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff !important;
    border: none;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(200,164,92,0.3);
    transition: all var(--transition);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200,164,92,0.4);
    color: #fff !important;
    background: var(--gold-dark);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
}

/* ============================================
   SEÇÕES
   ============================================ */
section {
    padding: 100px 0;
}

.section-badge {
    background: var(--gold);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--navy);
    font-family: var(--font-serif);
    font-size: 2.8rem;
    position: relative;
    margin-bottom: 2rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin-top: 1rem;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #F0F4FA, #FFFFFF);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    padding-left: 15px;
    padding-right: 15px;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-10px); }
}

/* ============================================
   CARDS PREMIUM
   ============================================ */
.card-premium {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ============================================
   CONTADORES
   ============================================ */
.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}
.counter-icon {
    font-size: 3rem;
    color: var(--gold);
}

/* ============================================
   RESPONSIVIDADE GERAL
   ============================================ */
@media (max-width: 992px) {
    section { padding: 70px 0; }
    .section-title { font-size: 2.2rem; }
    .hero-section h1 { font-size: 3rem; }
    .hero-section .hero-image-wrapper img { width: 300px; height: 300px; }
}
@media (max-width: 768px) {
    section { padding: 50px 0; }
    .section-title { font-size: 1.8rem; }
    .hero-section h1 { font-size: 2.2rem; }
    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .counter-number { font-size: 2.5rem; }
    .hero-section .scroll-indicator {
        display: none; /* Opcional: esconde o indicador em mobile se não couber */
    }
}
@media (max-width: 576px) {
    .section-title { font-size: 1.6rem; }
    .hero-section h1 { font-size: 2rem; }
    .hero-section .hero-image-wrapper img { width: 200px; height: 200px; }
    .counter-number { font-size: 2rem; }
}