/* Reset e Base */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; scroll-behavior: smooth; }

body { background-color: #000; color: #fff; overflow-x: hidden; }

/* --- CABEÇALHO --- */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 50px; background: rgba(0,0,0,0.8); backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo { font-size: 20px; font-weight: 900; letter-spacing: 1px; color: #fff; }

/* --- BOTÃO MOBILE --- */
.mobile-btn {
    display: none; /* Escondido no PC */
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1100;
    width: 45px; 
    height: 45px;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent; 
}

.bar {
    width: 30px; height: 3px; background-color: #fff; 
    border-radius: 3px; transition: 0.3s; display: block; 
}

/* Navegação PC */
nav a { color: #ccc; text-decoration: none; margin-left: 20px; font-weight: 600; font-size: 13px; text-transform: uppercase; transition: 0.3s; }
nav a:hover, .btn-destaque { color: #fff; }
.btn-login { border: 1px solid #fff; padding: 6px 15px; border-radius: 20px; }
.btn-login:hover { background: #fff; color: #000; }

/* --- WIDGET RELÓGIO (AGORA BRANCO) --- */
#relogio-widget {
    position: fixed; top: 90px; right: 30px;
    width: 160px; height: auto; z-index: 900; pointer-events: none;
    animation: floatClock 4s ease-in-out infinite; filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
}
#relogio-widget img { width: 100%; display: block; }

#hora-atual {
    position: absolute; top: 52%; right: 20px; transform: translateY(-50%);
    font-family: 'Inter', sans-serif; font-weight: 900; font-size: 26px;
    color: #fff; /* MUDANÇA: BRANCO */
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8); /* Sombra para ler melhor */
}

@keyframes floatClock { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* --- HERO SLIDER --- */
.hero { position: relative; width: 100%; height: 100vh; overflow: hidden; z-index: 2; }
.slide { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s; display: flex; align-items: flex-end; }
.slide::after { content: ''; position: absolute; width: 100%; height: 100%; background: linear-gradient(to top, #000 0%, transparent 50%); }
.slide.active { opacity: 1; }
.content { position: relative; z-index: 2; padding: 0 0 80px 50px; max-width: 600px; animation: slideUp 1s forwards; }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.content h2 { font-size: 48px; font-weight: 900; line-height: 1.1; margin-bottom: 15px; }
.content p { font-size: 18px; color: #ddd; margin-bottom: 25px; }
.btn-hero { background: #fd7e14; color: #fff; padding: 12px 30px; text-decoration: none; font-weight: 700; border-radius: 30px; text-transform: uppercase; }
.slider-nav { position: absolute; bottom: 30px; right: 50px; z-index: 10; display: flex; gap: 10px; }
.nav-btn { width: 10px; height: 10px; border: 2px solid #fff; border-radius: 50%; cursor: pointer; }
.nav-btn.active { background: #fff; }

/* --- ROCKSTAR SECTION --- */
.rockstar-section {
    position: relative; width: 100%; min-height: 100vh; 
    overflow: hidden; display: flex; align-items: center; justify-content: center;
    padding: 0 20px; margin-top: -5px; z-index: 1;
}
.rockstar-bg {
    position: absolute; top: -10%; left: 0; width: 100%; height: 108%; 
    background-size: cover; background-position: center; z-index: 0;
    will-change: transform, filter; transform: scale(1.1); 
}
.rockstar-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    z-index: 1; pointer-events: none; 
}
.rockstar-content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 80px 0; }

/* Textos e Wrappers */
.text-only-wrapper {
    max-width: 800px; margin: 0 auto; text-align: center;
    background: rgba(0,0,0,0.5); padding: 50px; border-radius: 20px;
    backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.section-title { font-size: 48px; text-align: center; margin-bottom: 15px; font-weight: 800; color: #fff; text-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.subtitle { text-align: center; color: #e0e0e0; font-size: 22px; margin-bottom: 80px; text-shadow: 0 5px 10px rgba(0,0,0,0.5); font-weight: 500; }
.banner-content { text-align: center; max-width: 900px; margin: 0 auto; }
.banner-content h2 { font-size: 60px; font-weight: 900; color: #fff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -1px; line-height: 1; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.banner-content p { font-size: 26px; color: #f1f1f1; font-weight: 600; text-shadow: 0 5px 15px rgba(0,0,0,0.8); }
.feature-text h4 { font-size: 42px; margin-bottom: 25px; color: #fff; font-weight: 800; line-height: 1.1; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.feature-text > p { font-size: 19px; color: #e0e0e0; margin-bottom: 35px; line-height: 1.6; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }

/* Steps */
.step-list { display: flex; flex-direction: column; gap: 25px; text-align: left; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
    background: #fd7e14; color: #fff; width: 36px; height: 36px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; flex-shrink: 0; margin-top: 2px;
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.4);
}
.step p { font-size: 17px; color: #fff; line-height: 1.5; margin: 0; font-weight: 500; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.step b { color: #fff; font-weight: 800; }

/* Form */
.form-wrapper { 
    max-width: 600px; margin: 0 auto; background: rgba(0, 0, 0, 0.6); 
    padding: 60px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.1); 
    backdrop-filter: blur(20px); box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.form-wrapper h2 { font-size: 32px; margin-bottom: 15px; color:#fff; }
.form-wrapper p { color: #ccc; margin-bottom: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; text-align: left; }
.input-box label { display: block; color: #ddd; font-size: 13px; margin-bottom: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.input-box input { width: 100%; padding: 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; color: #fff; outline: none; transition: 0.3s; font-size: 16px; }
.input-box input:focus { border-color: #fd7e14; background: rgba(255,255,255,0.15); }
.full-width { grid-column: span 2; }
.btn-submit-big {
    width: 100%; padding: 20px; background-color: #25d366; color: #fff; font-size: 20px; font-weight: 800;
    border: none; border-radius: 12px; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.btn-submit-big:hover { background: #128c7e; transform: scale(1.02); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
.btn-submit-big img { width: 28px !important; height: 28px !important; flex-shrink: 0; filter: brightness(0) invert(1); }

footer { padding: 50px; text-align: center; font-size: 14px; color: #666; background: #050505; position: relative; z-index: 3; }

/* --- MOBILE QUERY --- */
@media (max-width: 900px) {
    /* Exibe o botão */
    .mobile-btn { display: flex; }
    
    /* Configuração do Menu Mobile */
    nav {
        display: none; /* Escondido por padrão */
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column; align-items: center;
        padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
        backdrop-filter: blur(10px); box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    nav.active { display: flex; }
    
    nav a { margin: 15px 0; font-size: 18px; margin-left: 0; }
    .btn-login { margin-top: 10px; width: 80%; text-align: center; padding: 12px; }

    /* Ajustes Gerais Mobile */
    .content h2, .banner-content h2, .feature-text h4 { font-size: 32px; }
    .rockstar-section { padding: 80px 20px; min-height: auto; }
    .form-wrapper { padding: 30px; }
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    header { padding: 15px 20px; }
    
    /* Relógio no Mobile: Pequeno no canto */
    #relogio-widget {
        display: block; 
        width: 120px; 
        top: 80px; 
        right: 20px; 
    }
    #hora-atual {
        font-size: 19px;
    }
}