/* Importação de Fontes Modernas */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

/* Configurações Gerais */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    background-color: #080808;
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    color: #d1d1d1;
    overflow-x: hidden;
}

.animar-entrada {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animar-entrada.visivel {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAVEGAÇÃO --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 1px solid #333;
    padding: 10px 0;
    backdrop-filter: blur(5px);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}
/* Cor do link quando a seção está ativa ou foi clicada */
.nav-link.active-link {
    color: #ff0000 !important;
    border-bottom: 2px solid #ff0000;
    transition: 0.3s ease;
    display: inline-block;
}
/* Garante que os links fiquem vermelhos quando ativos */
.nav-link.active-link {
    color: #ff0000 !important;
}

/* Seção visível por padrão caso o JS falhe (opcional, mas seguro) */
.visivel {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ff0000 !important;
}

/* --- TIPOGRAFIA E TÍTULOS --- */
h1, h2, h3, h4, .titulo-vermelho, .subtitulo-moderno {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.subtitulo-moderno {
    font-size: 2.2rem;
    color: #cc0000 !important;
    letter-spacing: 4px;
    border-bottom: 2px solid #cc0000;
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 40px;
}

.titulo-vermelho-puro {
    color: #ff0000;
    letter-spacing: 2px;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    z-index: 999;
    transition: transform 0.3s ease;
    text-decoration: none;
}



.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
/* --- COMPONENTES --- */
.texto-corpo p {
    font-size: 1.1rem;
    color: #bbbbbb;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.card {
    background-color: #000;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #ff0000;
}

/* Timeline na Bio */
.badge.bg-danger {
    padding: 8px 12px;
    border-radius: 0;
    font-family: 'Oswald', sans-serif;
}

/* --- FOOTER --- */
.footer {
    background-color: #000;
    border-top: 2px solid #1a1a1a;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    transition: 0.3s;
}

.social-icon:hover {
    color: #ff0000;
}

/* --- ANIMAÇÃO PULSO (Frase Final) --- */
.animar-pulso {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}