/* style-landing.css - VERSÃO FINAL (TÍTULOS SÓLIDOS) */

/* CORES E VARIÁVEIS */
:root {
    --gold-dark: #aa771c;
    --gold-light: #fcf6ba;
    --gold-main: #d4af37;   /* Dourado Metálico (Para detalhes) */
    --gold-text: #e6c879;   /* Dourado Creme Sólido (Para leitura) */
    --bg-black: #020617; /* Azul Profundo */
    --bg-grey: #0f172a;  /* Azul Escuro para seções alternadas */
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-black);
    color: var(--gold-text); /* Cor padrão agora é o Dourado Creme */
}

/* Garante que todos os textos de leitura sejam dourados sólidos */
p, .text-muted, .small, .lead, span, li, a {
    color: var(--gold-text) !important;
    opacity: 1 !important;
    text-decoration: none;
}

.font-serif {
    font-family: 'Cinzel', serif;
}

/* NAVBAR */
.bg-black {
    background-color: var(--bg-black) !important;
}

.logo-font {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* ============================================================
   REGRA DE OURO (TIPOGRAFIA)
   ============================================================ */

/* 1. Títulos GIGANTES (Logo, H1, H2) continuam Brilhantes/Metálicos */
.text-gold, h1, h2, .logo-big, .hero-logo, .brand-text {
    color: var(--gold-main);
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 2. Títulos MÉDIOS (H3, H4, H5 - "Nossa Liderança", etc) agora são SÓLIDOS */
/* Removemos o gradiente e aplicamos a cor de leitura para ficar igual aos textos pequenos */
h3, h4, h5, .card-custom h5, .team-member h4 {
    background: none !important;
    -webkit-text-fill-color: initial !important; /* Remove o recorte do gradiente */
    color: var(--gold-text) !important;          /* Aplica a cor sólida */
    font-weight: 700;                            /* Mantém o peso forte */
}

/* ============================================================ */

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(circle at center, #1e293b 0%, #020617 100%);
    padding-top: 80px;
}

.logo-big {
    font-family: 'Cinzel', serif;
    font-size: 8rem;
    position: relative;
    display: inline-block;
}

.logo-big::after {
    content: '';
    display: block;
    width: 150%;
    height: 2px;
    background: var(--gold-main);
    position: absolute;
    bottom: 20px;
    left: -25%;
    border-radius: 50%;
    opacity: 0.6;
}

.divider-gold {
    border-color: var(--gold-main);
    opacity: 1;
    width: 100px;
}

.text-gold-light {
    color: var(--gold-text) !important;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

/* BOTÕES DOURADOS */
.btn-gold {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728);
    border: none;
    color: #000 !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    -webkit-text-fill-color: #000 !important;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #aa771c, #e6c879, #8a6212);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
    border: 1px solid var(--gold-main);
    color: var(--gold-main) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    -webkit-text-fill-color: var(--gold-main) !important;
}

.btn-outline-gold:hover {
    background-color: var(--gold-main);
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
}

/* CARDS */
.bg-dark-grey {
    background-color: var(--bg-grey);
}

.card-custom {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid #334155;
    border-radius: 10px;
    transition: 0.3s;
}

.card-custom:hover {
    border-color: var(--gold-main);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Ícones continuam brilhantes para dar destaque */
.text-gradient-gold, .icon-box i {
    background: -webkit-linear-gradient(#fcf6ba, #bf953f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FOOTER */
.border-gold {
    border-color: var(--gold-main) !important;
}

footer a:hover {
    color: #fff !important; /* Link fica branco ao passar o mouse */
}

/* FOTOS EQUIPE */
.border-gold-thick {
    border: 3px solid var(--gold-main);
    padding: 5px;
    background: transparent;
    transition: 0.3s;
    width: 180px;
    height: 180px;
    object-fit: cover;
}

.team-member:hover .border-gold-thick {
    border-color: #fcf6ba;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.profile-pic {
    background-color: #0f172a;
}