/* ===== VARIÁVEIS DE COR ===== */
:root {
    --dark-charcoal: #1C1C1E;
    --rose-gold: #B76E79;
    --champagne-gold: #D4AF37;
    --soft-ivory: #FAF6F1;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
}

/* ===== TIPOGRAFIA ===== */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

/* ===== CORES CUSTOMIZADAS ===== */
.text-rose {
    color: var(--rose-gold) !important;
}

.text-champagne {
    color: var(--champagne-gold) !important;
}

.bg-rose {
    background-color: var(--rose-gold) !important;
}

.bg-champagne {
    background-color: var(--champagne-gold) !important;
}

.bg-dark-charcoal {
    background-color: var(--dark-charcoal) !important;
}

.bg-soft-ivory {
    background-color: var(--soft-ivory) !important;
}

/* ===== GRADIENTES ===== */
.bg-gradient-rose {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--champagne-gold) 100%) !important;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2a2a2d 100%) !important;
}

/* ===== BOTÕES ===== */
.btn-rose {
    background-color: var(--rose-gold);
    border-color: var(--rose-gold);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-rose:hover,
.btn-rose:focus {
    background-color: var(--champagne-gold);
    border-color: var(--champagne-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 110, 121, 0.3);
}

.btn-outline-rose {
    color: var(--rose-gold);
    border-color: var(--rose-gold);
}

.btn-outline-rose:hover {
    background-color: var(--rose-gold);
    border-color: var(--rose-gold);
    color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--white) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--rose-gold) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2a2a2d 100%);
    color: var(--white);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    color: var(--white);
    line-height: 1.2;
}

.hero-section p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background-color: var(--soft-ivory);
}

.stat-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.2);
}

.stat-card h2 {
    font-size: 2.5rem;
}

/* ===== CURSOS SECTION ===== */
.cursos-section {
    background-color: var(--soft-ivory);
}

.curso-card {
    transition: all 0.3s ease;
    position: relative;
}

.curso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.2) !important;
}

.curso-card.curso-featured {
    transform: scale(1.05);
    border: 2px solid var(--rose-gold) !important;
}

.badge-featured {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--champagne-gold) 100%);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.card-header {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--champagne-gold) 100%) !important;
    border: none;
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos-section {
    background-color: var(--dark-charcoal);
}

.depoimento-card {
    border: 2px solid var(--rose-gold) !important;
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.3);
}

.border-rose {
    border-color: var(--rose-gold) !important;
}

/* ===== SOBRE SECTION ===== */
.sobre-section {
    background-color: var(--white);
}

.sobre-section .card {
    transition: all 0.3s ease;
}

.sobre-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.2) !important;
}

/* ===== P10X SECTION ===== */
.p10x-section {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2a2a2d 100%);
}

.badge {
    background-color: var(--rose-gold) !important;
    font-weight: 600;
    padding: 8px 16px;
}

.p10x-section .card {
    transition: all 0.3s ease;
}

.p10x-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.3);
}

/* ===== CONTATO SECTION ===== */
.contato-section {
    background-color: var(--soft-ivory);
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--rose-gold);
    box-shadow: 0 0 5px rgba(183, 110, 121, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-charcoal) !important;
}

.footer a {
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--rose-gold) !important;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 1.5rem !important;
    }

    .curso-card.curso-featured {
        transform: scale(1);
    }

    .stat-card h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 400px;
        padding: 2rem 0;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .display-3 {
        font-size: 1.8rem !important;
    }

    .display-4 {
        font-size: 1.5rem !important;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== EFEITOS ESPECIAIS ===== */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* ===== TRANSIÇÕES SUAVES ===== */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ===== SCROLL SUAVE ===== */
html {
    scroll-behavior: smooth;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--soft-ivory);
}

::-webkit-scrollbar-thumb {
    background: var(--rose-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--champagne-gold);
}
