/* * Estilos Exclusivos: Página Sobre (LP)
 * Arquivo: assets/css/sobre.css
 */

.about-lp-container {
    background-color: #0E0C18; /* Dark Base */
    color: #F7F7F7;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* --- 1. HERO SECTION (PREMIUM) --- */
.about-hero {
    position: relative;
    /* Altura total da tela para impacto */
    height: 100vh; 
    min-height: 700px;
    
    /* Imagem de Fundo */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    background-repeat: no-repeat;
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Overlay Escuro com Degradê Cinemático */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Degradê: Escuro em cima, transparente no meio, escuro embaixo para fundir com o site */
    background: linear-gradient(
        to bottom, 
        rgba(14, 12, 24, 0.8) 0%, 
        rgba(14, 12, 24, 0.4) 50%, 
        #0E0C18 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 30px;
    margin-top: 60px; /* Compensa o header fixo visualmente */
    
    /* Animação de Entrada */
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-tag {
    display: inline-block;
    color: #E6A55C; /* Gold */
    border: 1px solid rgba(230, 165, 92, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem; /* Fonte Gigante */
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

/* Destaque dourado no título (opcional, se usar span) */
.hero-title span { color: #E6A55C; font-style: italic; }

.hero-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Seta de Scroll */
.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #E6A55C;
    font-size: 2rem;
    animation: bounce 2.5s infinite;
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
}

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

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

/* --- 2. HISTÓRIA (DEFAULT DARK) --- */
.about-story {
    padding: 120px 0;
    background-color: #0E0C18;
    position: relative;
    background-image: radial-gradient(#1F1D2B 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Remover padding se usado como widget (o Elementor controla padding) */
.widget-story { padding: 0; background: transparent; }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
}

.gold-divider {
    width: 100px; height: 4px; 
    background: linear-gradient(90deg, #E6A55C 0%, transparent 100%); 
    margin-bottom: 40px;
}

.story-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.story-text blockquote {
    border-left: 4px solid #E6A55C;
    padding-left: 30px;
    font-style: italic;
    font-size: 1.4rem;
    color: #fff;
    margin-top: 50px;
    font-family: 'Cinzel', serif;
    background: linear-gradient(90deg, rgba(230, 165, 92, 0.05) 0%, transparent 100%);
    padding: 30px;
    border-radius: 0 10px 10px 0;
}

/* Cards Visuais */
.visual-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}
.visual-card::before {
    content: ''; position: absolute; top:0; left:0; width: 100%; height: 5px;
    background: linear-gradient(90deg, #E6A55C, transparent);
    opacity: 0; transition: 0.4s;
}
.visual-card:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.06); }
.visual-card:hover::before { opacity: 1; }

.icon-bg {
    font-size: 3rem;
    color: #E6A55C;
    margin-bottom: 25px;
    display: block;
    text-shadow: 0 0 20px rgba(230, 165, 92, 0.4);
}

.visual-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #fff; font-family: 'Cinzel', serif; }
.visual-card p { color: #999; font-size: 1rem; line-height: 1.6; }

/* --- 3. INDICADORES (STATS) - DEFAULT DARK --- */
.about-stats {
    padding: 100px 0;
    background: #0E0C18;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
/* Widget Mode */
.widget-stats { padding: 50px 0; background: transparent; border: none; }

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative; z-index: 2;
}

.stat-item {
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.stat-item:last-child { border-right: none; }

.stat-icon {
    font-size: 2.5rem;
    color: #E6A55C;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
    background: -webkit-linear-gradient(#fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* --- 4. EXPERIÊNCIA (CTA) --- */
.about-experience {
    padding: 150px 0;
    text-align: center;
    background-color: #0E0C18;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png'); /* Opcional: Textura sutil */
    position: relative;
}

.experience-box {
    position: relative; z-index: 2;
}

.experience-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.experience-box p {
    font-size: 1.3rem;
    color: #bbb;
    max-width: 750px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.experience-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-gold-solid {
    background: linear-gradient(135deg, #E6A55C 0%, #C5A059 100%);
    color: #000;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 10px 30px rgba(230, 165, 92, 0.3);
}
.btn-gold-solid:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(230, 165, 92, 0.5); background: #fff; }

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex; align-items: center; gap: 10px;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* --- 5. CONTATO MINI --- */
.about-contact {
    padding: 80px 0;
    background: #08070e; /* Ainda mais escuro */
}

.contact-mini-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(230, 165, 92, 0.1) 0%, rgba(230, 165, 92, 0.02) 100%);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(230, 165, 92, 0.2);
}

.contact-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}
.contact-text p { color: #aaa; margin: 0; font-size: 1.1rem; }

.btn-contact-glow {
    background: transparent;
    color: #E6A55C;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: flex; align-items: center; gap: 15px;
    transition: 0.3s;
    font-size: 1.2rem;
    border-bottom: 2px solid transparent;
}
.btn-contact-glow:hover { color: #fff; border-color: #fff; gap: 20px; }

/* --- LIGHT THEME OVERRIDES (.skin-light) --- */

/* Story Light */
.skin-light.about-story, 
.skin-light .story-grid {
    background-color: #F9F9F9;
    color: #333;
    background-image: none; /* Remove pattern dark */
}

.skin-light .story-text h2 { color: #111; }
.skin-light .story-text p { color: #555; }
.skin-light .story-text blockquote {
    color: #444;
    background: linear-gradient(90deg, rgba(230, 165, 92, 0.1) 0%, transparent 100%);
    border-left-color: #D97706;
}

.skin-light .visual-card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.skin-light .visual-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.skin-light .visual-card h3 { color: #111; }
.skin-light .visual-card p { color: #666; }

/* Stats Light */
.skin-light.about-stats,
.skin-light .stats-wrapper {
    background-color: #fff;
    color: #333;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.skin-light .stat-item { border-right: 1px solid #eee; }
.skin-light .stat-number {
    background: none;
    -webkit-text-fill-color: initial;
    color: #111;
}
.skin-light .stat-label { color: #666; }


/* RESPONSIVO */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; gap: 60px; }
    .stats-wrapper { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .hero-title { font-size: 3.5rem; }
    .contact-mini-grid { flex-direction: column; text-align: center; gap: 40px; }
    
    /* Responsive Light */
    .skin-light .stat-item { border-bottom: 1px solid #eee; }
}

@media (max-width: 768px) {
    .about-hero { background-attachment: scroll; }
    .hero-title { font-size: 2.8rem; }
    .hero-text { font-size: 1.1rem; }
    .stats-wrapper { grid-template-columns: 1fr; }
    .experience-actions { flex-direction: column; width: 100%; }
    .btn-gold-solid, .btn-outline-light { width: 100%; justify-content: center; }
    .story-text blockquote { font-size: 1.2rem; }
}