:root {
    --bg-dark: #1b1b1b;
    --gold: #f5b93f;
    --text-beige: #e7e7d6;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-beige);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}
.sem-barra{
        overflow: hidden !important;
        overflow-y: hidden !important;
        overflow-x: hidden !important;
        height: 1870px !important;
}
@media screen and (max-width: 450px) {
    .sem-barra{
        height: 2070px !important;
    }
}
#tab-visao img{
    margin: 0 auto !important;
}

/* --- TIPOGRAFIA RESPONSIVA --- */
.title-massive { 
    font-size: clamp(2.5rem, 8vw, 4.7rem); 
    font-weight: 900; 
    line-height: 1; 
    color: var(--text-beige);
}
.titulo-pilar{
    color: var(--gold);
}
.titulo-valores{
    color: var(--gold);
    font-weight: 800;
}
.text-versiculo{
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    font-weight: 800; 
    color: var(--gold);
}
.serif-keyword { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    font-weight: 800; 
    color: var(--gold);
    text-transform: uppercase;
}

/* --- TRANSIÇÕES DOURADAS --- */
.quote-section {
    background-color: var(--gold);
    color: #1b1b1b;
    padding: 6rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.3;
    max-width: 1000px;
}

/* --- GEMINI LOGO --- */
.gemini-logo-animate {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #4285f4, #9b72cb, #d96570, #f5b93f);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    animation: geminiMorph 3s ease-in-out infinite alternate;
    box-shadow: 0 0 25px rgba(155, 114, 203, 0.5);
}
@keyframes geminiMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%; transform: rotate(0deg) scale(1); }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(120deg) scale(1.1); }
}

/* --- ANIMAÇÕES --- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.soffie-float { animation: float 6s ease-in-out infinite; }

@keyframes cursorBlink { 50% { opacity: 0; } }
.cursor { border-left: 3px solid var(--gold); animation: cursorBlink 0.8s infinite; margin-left: 4px; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- TABS --- */
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.6s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.tab-btn { opacity: 0.4; transition: all 0.3s ease; border-bottom: 2px solid transparent; }
.tab-btn.active { color: var(--gold); border-bottom: 2px solid var(--gold); opacity: 1 !important; font-weight: 800; }

/* --- CARDS --- */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}
.cor-numeros{
    color: #f5b93f;
}
.glass-card-hover:hover { 
    background-color: var(--gold) !important;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245, 185, 63, 0.4);
    color: #1b1b1b !important;
}
.glass-card-hover:hover * { color: #1b1b1b !important; }

.btn-gold {
    background-color: var(--gold);
    color: #1b1b1b;
    transition: all 0.3s ease;
    font-weight: 900;
    text-align: center;
}
.btn-gold:hover { transform: scale(1.03); box-shadow: 0 15px 30px rgba(245, 185, 63, 0.4); background-color: #fff; }

.parallax-bg {
    background-image: linear-gradient(rgba(27, 27, 27, 0.97), rgba(27, 27, 27, 0.97)), url('images/background-do-deserto-ao-proposito.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* SEO: Hide visually but keep for screen readers if needed, but here we just need a semantic structure */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }