/* =========================================
   ESTILOS GLOBAIS E RESETS
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #050505;
    color: #fff;
    min-height: 100vh;
}

/* =========================================
   PÁGINA "EM CONSTRUÇÃO" (index.html)
========================================= */
.body-construcao {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: radial-gradient(#222 1px, transparent 1px);
    background-size: 20px 20px;
}

.container-construcao {
    max-width: 600px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #8B0000;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    margin: 20px;
}

.logo {
    max-width: 250px;
    margin-bottom: 30px;
}

.container-construcao h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E0E0E0;
}

.container-construcao p {
    font-size: 1.1rem;
    color: #AAA;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* =========================================
   ÁRVORE DE LINKS - MODO AGRESSIVO (links.html)
========================================= */
.body-bio {
    background: linear-gradient(135deg, #050505 0%, #151515 100%);
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 4px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5vh;
    overflow-x: hidden;
}

/* Animação 1: Freada Brusca na entrada */
.bio-container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: hardBrake 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes hardBrake {
    0% { opacity: 0; transform: translateY(-150px) skewX(15deg) scale(1.1); }
    70% { opacity: 1; transform: translateY(10px) skewX(-5deg) scale(0.98); }
    100% { transform: translateY(0) skewX(0) scale(1); }
}

.bio-header {
    text-align: center;
    margin-bottom: 35px;
}

/* Animação 2: Pulso de Motor na Logo */
.bio-avatar-glow {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 4px;
    background: #111;
    border: 2px solid #8B0000;
    animation: enginePulse 1.2s infinite alternate ease-in-out;
}

@keyframes enginePulse {
    0% { box-shadow: 0 0 10px rgba(139, 0, 0, 0.4), inset 0 0 5px rgba(139,0,0,0.4); transform: scale(1); }
    100% { box-shadow: 0 0 35px rgba(255, 0, 0, 0.9), inset 0 0 15px rgba(255,0,0,0.8); transform: scale(1.03); border-color: #FF0000;}
}

.bio-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background-color: #000;
}

.bio-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #8B0000;
}

.bio-subtitle {
    font-size: 1rem;
    color: #ccc;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Botões de Link (Agressivos) --- */
.bio-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bio-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 25px;
    
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    border-left: 5px solid #444; 
    border-radius: 4px; 
    
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Estado inicial invisível para o JS animar depois */
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Classe que o JS vai adicionar para mostrar o botão */
.bio-btn.show {
    opacity: 1;
    transform: translateX(0);
    /* Transição de entrada suave, mas o hover continua rápido */
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bio-btn i {
    position: absolute;
    left: 20px;
    font-size: 1.4rem;
    color: #666;
    transition: all 0.2s ease;
}

/* Animação 3: Hover "Acelerando" */
.bio-btn.show:hover {
    background: linear-gradient(90deg, rgba(139,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    border-color: #8B0000;
    border-left: 8px solid #FF0000;
    
    transform: translateX(10px) skewX(-5deg) scale(1.02);
    box-shadow: -10px 10px 20px rgba(139, 0, 0, 0.4);
    
    color: #FFF;
    letter-spacing: 3px;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1); /* Garante o snap rápido */
}

.bio-btn.show:hover i {
    color: #FF0000;
    transform: translateX(5px) scale(1.2) skewX(5deg);
}

/* Estilo específico para o botão do WhatsApp */
.bio-btn.whatsapp {
    border-left-color: #1EBE55;
}
.bio-btn.whatsapp i {
    color: #25D366;
}
.bio-btn.whatsapp.show:hover {
    background: linear-gradient(90deg, rgba(37,211,102,0.2) 0%, rgba(0,0,0,0) 100%);
    border-color: #25D366;
    border-left: 8px solid #25D366;
    box-shadow: -10px 10px 20px rgba(37, 211, 102, 0.3);
}
.bio-btn.whatsapp.show:hover i {
    color: #25D366;
}

/* Botão comum da página em construção */
.btn-padrao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #FFF;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-padrao:hover {
    background-color: #1EBE55;
    transform: scale(1.05);
}

/* --- Rodapé com Redes Sociais --- */
.bio-footer {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #111;
    color: #888;
    font-size: 1.4rem;
    text-decoration: none;
    border: 2px solid #333;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background: #8B0000;
    color: #FFF;
    border-color: #FF0000;
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.5);
}