/* 
    Project: Gerando Oportunidade
    Design: Premium EdTech (Level R$ 50k+)
    Colors: Midnight Navy (#0D112B) & Metallic Gold (#D4AF37)
*/

:root {
    --navy: #0D112B;
    --navy-light: #1A1F3D;
    --gold: #D4AF37;
    --gold-light: #F2D06B;
    --accent: #E5C365;
    --text-main: #FFFFFF;
    --text-muted: #A0A5C1;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--navy);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 900px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(13, 17, 43, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    filter: brightness(1.2);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover {
    color: var(--gold);
}

.btn-cta-small {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 20px;
    font-size: 0.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    overflow: visible;
    background-color: var(--navy);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 17, 43, 0.7), rgba(13, 17, 43, 0.85)), url('hero-img.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    width: fit-content;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
}

.text-upper {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-accent {
    color: var(--gold);
    background: linear-gradient(90deg, var(--gold), #FFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 90%;
}

.tagline strong {
    color: var(--white);
    font-weight: 600;
}

.hero-list {
    list-style: none;
    margin-bottom: 50px;
}

.hero-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-list .icon {
    font-size: 1.3rem;
    width: 30px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

.btn-primary-main {
    display: inline-block;
    padding: 20px 45px;
    background: var(--gold);
    color: var(--navy) !important;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    border: none;
}

.btn-primary-main:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
    background-color: var(--gold-light);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    border: 1px solid var(--glass-border);
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateX(5px);
}

.play-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    padding-left: 2px;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: #090C1F;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.benefit-card {
    padding: 50px;
    background: var(--navy-light);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
}

.benefit-card.featured {
    background: linear-gradient(135deg, var(--gold), var(--accent));
    color: var(--navy);
}

.benefit-card.featured h3, .benefit-card.featured p {
    color: var(--navy);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Process List */
.process {
    padding: 120px 0;
    background: var(--navy);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 800;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--navy-light);
    border-radius: 25px;
    border: 1px solid var(--glass-border);
}

.step-circle {
    min-width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--gold);
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: #090C1F;
}

.accordion-item {
    background: var(--navy-light);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 25px 35px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
}

.accordion-header:hover {
    color: var(--gold);
}

.accordion-content {
    padding: 0 35px;
    height: 0;
    color: var(--text-muted);
    transition: 0.4s ease;
    visibility: hidden;
}

.accordion-item.active .accordion-content {
    padding: 0 35px 35px 35px;
    height: auto;
    visibility: visible;
}

/* Registration Form */
.registration {
    padding: 120px 0;
    background: linear-gradient(rgba(13, 17, 43, 0.9), rgba(13, 17, 43, 0.9)), url('hero-img.png');
    background-size: cover;
    background-attachment: fixed;
}

.registration-glass {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.reg-header {
    text-align: center;
    margin-bottom: 45px;
}

.reg-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.reg-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
}

.btn-submit {
    padding: 22px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #050714;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 25px;
}

.footer-newsletter h5 {
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    background: var(--navy-light);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    color: var(--white);
    border-radius: 8px 0 0 8px;
    width: 100%;
}

.newsletter-form button {
    background: var(--gold);
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: 700;
}

.footer-legal {
    grid-column: span 2;
    text-align: center;
    padding-top: 60px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-up {
    animation: fadeInUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
    .header .nav { display: none; }
    .hero { min-height: auto; padding-top: 120px; }
    .hero-content { 
        max-width: 100%; 
        padding: 40px 30px; 
        border-radius: 30px; 
        margin: 0 20px;
    }
    .hero-content h1 { font-size: 2.8rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-container { padding: 0 20px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .registration-glass { padding: 30px; border-radius: 30px; }
}
