@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,300;0,700;1,400&family=Permanent+Marker&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none !important; }

body { 
    background-color: #000; 
    color: #e0e0e0; 
    overflow: hidden; 
    font-family: 'Montserrat', sans-serif; 
}

/* Cursor Tematizado (Mira Tática) */
.cursor-custom {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
}

.cursor-dot {
    width: 4px; height: 4px; background-color: #ff1f1f;
    position: fixed; border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-crosshair {
    width: 40px; height: 40px;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.cursor-crosshair span {
    position: absolute;
    background: #ff1f1f;
    opacity: 0.6;
}

.ch-top, .ch-bottom { width: 2px; height: 10px; left: 50%; transform: translateX(-50%); }
.ch-left, .ch-right { width: 10px; height: 2px; top: 50%; transform: translateY(-50%); }

.ch-top { top: 0; }
.ch-bottom { bottom: 0; }
.ch-left { left: 0; }
.ch-right { right: 0; }

/* Splash Screen Moderna */
#splash-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    z-index: 2000; transition: all 1.2s cubic-bezier(0.85, 0, 0.15, 1);
    background: #000;
}

.hero-container {
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 8px;
    color: #ff1f1f;
    margin-bottom: 10px;
    font-weight: 700;
    animation: fadeIn 2s ease;
}

.content-overlay h1 { 
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(4rem, 15vw, 10rem); 
    color: #fff;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 15px rgba(255, 31, 31, 0.5));
}

.hero-line {
    width: 60px;
    height: 4px;
    background: #ff1f1f;
    margin: 20px 0 40px;
}

.btn-entrar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 31, 31, 0.5);
    color: #fff;
    padding: 20px 50px;
    font-family: 'Bebas Neue';
    font-size: 1.4rem;
    letter-spacing: 4px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.btn-entrar:hover {
    background: #ff1f1f;
    border-color: #ff1f1f;
    box-shadow: 0 0 40px rgba(255, 31, 31, 0.6);
    transform: translateY(-5px);
}

.btn-entrar i { font-size: 1rem; transition: 0.3s; }
.btn-entrar:hover i { transform: translateX(5px); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Restante do CSS preservado */
.bg-image {
    position: absolute; width: 100%; height: 100%;
    background: url('fundo.jpg') center/cover;
    filter: brightness(0.2) grayscale(0.5); z-index: -2;
}

#rainCanvas { position: absolute; top: 0; left: 0; z-index: -1; pointer-events: none; }

#social-buttons {
    position: fixed; bottom: 25px; right: 25px;
    display: none; gap: 15px; z-index: 1000;
}

.float-btn {
    width: 55px; height: 55px; background: rgba(20, 20, 20, 0.8);
    border: 1px solid #ff1f1f; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #fff; font-size: 1.6rem; transition: 0.4s; text-decoration: none;
}

.float-btn:hover { background: #ff1f1f; transform: rotate(360deg) scale(1.1); }

#main-content {
    padding: 100px 10% 50px 10%;
    background: linear-gradient(rgba(0,0,0,0.9), rgba(15,0,0,0.9)), url('fundo.jpg') center/cover fixed;
    min-height: 100vh;
}

.grid-pessoas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-bottom: 100px; }
.card-pessoa { text-align: center; }
.moldura {
    width: 220px; height: 220px; border-radius: 50%; margin: 0 auto 20px;
    overflow: hidden; border: 3px solid #c0c0c0; transition: 0.4s;
}
.moldura img { width: 100%; height: 100%; object-fit: cover; }
.moldura:hover { border-color: #ff1f1f; transform: scale(1.05); }

.card-pessoa h3 { font-family: 'Bebas Neue'; font-size: 2.2rem; color: #ff1f1f; }
.instagram-link { color: #fff; font-size: 1.5rem; transition: 0.3s; }
.instagram-link:hover { color: #ff1f1f; }

.biografia-final { text-align: center; max-width: 800px; margin: 0 auto 100px; padding-top: 50px; border-top: 1px solid #333; }
.biografia-final h2 { font-family: 'Bebas Neue'; font-size: 3.5rem; color: #ff1f1f; }

.polaroid-gallery { padding-bottom: 60px; }
.section-title { font-family: 'Bebas Neue'; font-size: 3rem; text-align: center; color: #fff; margin-bottom: 60px; }
.polaroid-container { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; }
.polaroid { background: #fff; padding: 15px 15px 45px 15px; width: 280px; transition: 0.4s; box-shadow: 0 15px 35px rgba(0,0,0,0.8); }
.polaroid img { width: 100%; height: 250px; object-fit: cover; }
.polaroid .caption { font-family: 'Permanent Marker', cursive; color: #222; text-align: center; margin-top: 15px; }
.polaroid:nth-child(odd) { transform: rotate(-3deg); }
.polaroid:nth-child(even) { transform: rotate(3deg); }
.polaroid:hover { transform: rotate(0deg) scale(1.1); z-index: 10; }

.footer-copyright { text-align: center; padding: 40px 0; border-top: 1px solid rgba(255, 31, 31, 0.2); }

.hidden { opacity: 0; pointer-events: none; transform: scale(1.1) !important; }
#spotify-player-container { position: fixed; bottom: 20px; left: 20px; z-index: 1000; display: none; }

@media (max-width: 1000px) { 
    .grid-pessoas { grid-template-columns: 1fr; } 
    .content-overlay h1 { font-size: 5rem; } 
}