/* ==================== VARIÁVEIS ==================== */
:root {
    --laranja: #E85B1A;
    --preto: #111111;
    --grafite: #3A3A3A;
    --branco: #FAFAFA;
    --dourado: #D4A853;
    --cinza-claro: #F5F5F5;
    --cinza-medio: #E8E8E8;
    --cinza-escuro: #999999;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==================== TIPOGRAFIA ==================== */
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    letter-spacing: 2px;
    font-weight: 400;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 1px;
    font-weight: 400;
}

h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

p {
    font-size: 16px;
    color: var(--grafite);
    line-height: 1.8;
}

.section-subtitle {
    font-size: 18px;
    color: var(--cinza-escuro);
    max-width: 600px;
    margin-top: 20px;
}

/* ==================== BOTÕES ==================== */
.btn-cta,
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--laranja);
    color: var(--branco);
    border-radius: 2px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
}

.btn-cta:hover,
.btn-primary:hover {
    background: var(--preto);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 12px 28px;
    border: 1px solid var(--laranja);
    color: var(--laranja);
    background: transparent;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--laranja);
    color: var(--branco);
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--laranja);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== UTILITIES ==================== */
.text-center {
    text-align: center;
}

.text-laranja {
    color: var(--laranja);
}

.text-dourado {
    color: var(--dourado);
}

.text-light {
    color: var(--cinza-escuro);
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

/* ==================== CONTATO LINKS ==================== */
.contato-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--laranja);
    transition: var(--transition);
    font-weight: 500;
}

.contato-link:hover {
    color: var(--preto);
    transform: translateX(5px);
}

.contato-link i {
    font-size: 20px;
}
