/* Estilos Base */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:ital,wght@0,400;0,600;1,400&display=swap");

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
    background: #080704; 
    color: #F2E8D0; 
    font-family: 'Lora', Georgia, serif; 
    font-size: 17px; 
    line-height: 1.75; 
    overflow-x: hidden; 
}

/* Menu */
#menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding: 15px 40px;
    width: 100%;
    z-index: 9999;
}
.menu-left .logo-heaven { 
    height: 40px; 
    filter: brightness(0) invert(1); /* Deixa o logo totalmente branco */
}
.menu-right .logo-sony { 
    height: 18px; /* Tamanho reduzido conforme solicitado */
    opacity: 0.9;
}

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 32px;
    background: radial-gradient(ellipse at center, rgba(180,90,10,0.15) 0%, transparent 70%), #080704;
}
.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}
.hero-creators {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: #F0B040;
    margin-bottom: 40px;
}
.hero-logo {
    max-width: 800px;
    width: 100%;
    margin-bottom: 40px;
}
.hero-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 50px;
}
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botões */
.btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 16px 40px;
    background: #D4921A;
    color: #080704;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}
.btn-primary:hover { background: #fff; }

.btn-outline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px 40px;
    background: transparent;
    color: #F2E8D0;
    border: 1px solid rgba(242,232,208,0.5);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Seções */
section { padding: 100px 20px; }
.container { max-width: 900px; margin: 0 auto; }

.section-rule {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.section-rule h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #F2E8D0;
    white-space: nowrap;
}
.section-rule-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #D4921A, transparent);
}

/* Vídeo */
.video-section { background: #080704; }
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border: 1px solid #2a2418;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about { background: #111008; }
.about-text p { margin-bottom: 25px; color: rgba(242,232,208,0.8); }

/* Formulário */
.signup-section { background: #080704; }
.signup-intro {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.form-row input, .form-row select, .signup-form select {
    flex: 1;
    padding: 15px;
    background: #1a1610;
    border: 1px solid #2a2418;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
}
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.signup-form .btn-primary { align-self: center; margin-top: 20px; }

/* Footer */
#footer {
    background: #000;
    padding: 60px 20px;
    text-align: center;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-social a {
    color: #F2E8D0;
    font-size: 24px;
    transition: 0.3s;
}
.footer-social a:hover { color: #D4921A; }

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    align-items: center;
}
.footer-logos img { height: 40px; opacity: 0.7; }
#footer p { font-size: 12px; color: #666; margin-top: 20px; }

@media (max-width: 768px) {
    .form-row { flex-direction: column; }
    .hero-logo { width: 90%; }
    .hero-creators { font-size: 18px; }
    #menu { padding: 15px 20px; }
    .menu-left .logo-heaven { height: 35px; }
    .signup-form { gap: 15px; }
    .form-row input, .form-row select, .signup-form select {
        padding: 12px;
        font-size: 14px;
    }
    .form-checkbox { font-size: 13px; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .signup-intro { font-size: 16px; margin-bottom: 30px; }
    .signup-form { gap: 12px; }
    .form-row input, .form-row select, .signup-form select {
        padding: 10px;
        font-size: 13px;
    }
    .form-checkbox { font-size: 12px; gap: 8px; }
    .signup-form .btn-primary { padding: 12px 30px; font-size: 14px; }
    .hero { padding: 50px 20px; }
    .hero-eyebrow { font-size: 14px; }
    .hero-tagline { font-size: 16px; }
    .hero-ctas { flex-direction: column; gap: 15px; }
    .btn-primary, .btn-outline { padding: 12px 25px; font-size: 14px; }
}

/* Modal de Confirmação */
.modal-overlay {
    visibility: hidden !important;
    opacity: 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    pointer-events: none !important;
    transition: visibility 0.3s ease, opacity 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.modal-overlay.active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

@keyframes fadeIn {
    from {
        opacity: 0 !important;
    }
    to {
        opacity: 1 !important;
    }
}

.modal-content {
    background: linear-gradient(135deg, #1a1610 0%, #2a2418 100%);
    border: 2px solid #D4921A;
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 146, 26, 0.3);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: #D4921A;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.modal-message {
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    color: #F2E8D0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-button {
    background: linear-gradient(135deg, #D4921A 0%, #c47d0f 100%);
    color: #000;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-button:hover {
    background: linear-gradient(135deg, #e5a82e 0%, #D4921A 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 146, 26, 0.4);
}

.modal-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .modal-overlay {
        height: 100vh;
    }
    
    .modal-content {
        padding: 40px 25px;
        max-width: 85%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-message {
        font-size: 14px;
    }
    
    .modal-icon {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .modal-overlay {
        height: 100vh;
        position: fixed;
    }
    
    .modal-content {
        padding: 30px 20px;
        max-width: 95%;
        max-height: 80vh;
    }
    
    .modal-title {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .modal-message {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .modal-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .modal-icon {
        font-size: 45px;
        margin-bottom: 15px;
    }
}
