/* ============================================================
   STYLES.CSS – Estilos exclusivos da Página Inicial (index.html)
   ============================================================ */

/* ----- VARIÁVEIS EXCLUSIVAS ----- */
:root {
    --profile-size: clamp(140px, 22vw, 210px);
    --name-size: clamp(3.2rem, 12vw, 5.5rem);
}

/* ----- FUNDO ESPECÍFICO ----- */
body {
    background: url('../imgs/bg-mobile.jpg') center / cover no-repeat fixed;
    background-color: #050505;
    position: relative;
    align-items: center;  /* centraliza verticalmente na index */
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(31, 120, 209, 0.08), transparent 70%),
                linear-gradient(180deg, rgba(63, 26, 143, 0.1), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 0;
}

.container {
    max-width: 650px;
}

/* ----- FOTO DE PERFIL (index) ----- */
.profile-img {
    width: var(--profile-size);
    height: var(--profile-size);
    border: none;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.05),
                0 0 0 8px rgba(31, 120, 209, 0.1),
                0 0 0 16px rgba(63, 26, 143, 0.05),
                0 15px 35px rgba(0,0,0,0.5),
                inset 0 0 20px rgba(255,255,255,0.2);
    animation: levitate 6s ease-in-out infinite;
}
.profile-img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2),
                0 0 0 10px rgba(0, 229, 255, 0.15),
                0 0 0 20px rgba(31, 120, 209, 0.08),
                0 20px 40px rgba(0,0,0,0.6);
}

/* ----- NOME COM GRADIENTE ----- */
.name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: var(--name-size);
    line-height: 1;
    background: linear-gradient(to right, #b0b0b0, #d0d0d0 30%, #f0f0f0 60%, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShine 8s linear infinite;
}

/* ----- TEXTO DE AVISO ----- */
.warning-text {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ----- MODAL (index) ----- */
.modal-content {
    background: linear-gradient(135deg, rgba(31,31,40,0.9), rgba(15,15,20,0.95));
    border: 1px solid var(--glass-border-bot);
    box-shadow: var(--shadow-abyss), 0 0 50px rgba(63,26,143,0.3);
    animation: modalLiquidReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #a0d0ff);
    -webkit-background-clip: text;
    color: transparent;
}
.modal-content p {
    color: #a0a5b0;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ----- KEYFRAMES EXCLUSIVOS ----- */
@keyframes levitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes textShine {
    to { background-position: 200% center; }
}
@keyframes modalLiquidReveal {
    0% { transform: scale(0.9) translateY(20px); opacity: 0; filter: blur(10px); }
    100% { transform: scale(1) translateY(0); opacity: 1; filter: blur(0); }
}

/* ----- RESPONSIVO ----- */
@media (max-width: 480px) {
    body { background: url('../imgs/bg-mobile.jpg') center / cover no-repeat fixed; }
}

@media (min-width: 481px) and (max-width: 1024px) {
    body { background: url('../imgs/bg-tablet.jpg') center / cover no-repeat fixed; }
}

@media (min-width: 1025px) {
    body { background: url('../imgs/bg-desktop.jpg') center / cover no-repeat fixed; }
}
