body { 
    background-color: #0B1120; 
    color: #F3F4F6; 
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .font-heading { font-family: 'Space Grotesk', sans-serif; }

.text-gradient-neon {
    background: linear-gradient(to right, #10B981, #34D399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-alert {
    background: linear-gradient(to right, #F43F5E, #FB7185);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-glass {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.tech-glass:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.btn-neon {
    background-color: #10B981;
    color: #0B1120;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-neon:hover::before { opacity: 1; }
.btn-neon:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.6);
}

.bg-grid {
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* ESTILOS DOS MODAIS */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(5px);
    z-index: 100000; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: #ffffff; color: #555555; width: 100%; max-width: 700px;
    max-height: 85vh; border-radius: 12px; display: flex; flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); animation: modalPop 0.3s ease-out forwards;
}
@keyframes modalPop { 0% { transform: scale(0.95); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.modal-header { padding: 24px; border-bottom: 1px solid #eeeeee; display: flex; justify-content: space-between; align-items: center; }
.modal-header h2 { color: #10B981; font-size: 1.5rem; font-weight: 800; margin: 0; font-family: 'Space Grotesk', sans-serif; }
.modal-close-btn { background: transparent; border: none; color: #10B981; cursor: pointer; padding: 5px; }
.modal-body { padding: 24px; overflow-y: auto; line-height: 1.6; font-size: 0.95rem; }
.modal-body h3 { color: #10B981; font-size: 1.25rem; font-weight: 700; margin-top: 24px; margin-bottom: 12px; }
.modal-footer-btn { display: block; width: 100%; padding: 15px; background: #f8f9fa; border-top: 1px solid #eeeeee; text-align: center; font-weight: 600; cursor: pointer; border-radius: 0 0 12px 12px; }

/* QUIZ OVERLAY */
#quiz-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999; background-color: #000;
}
.quiz-step { display: none; height: 100%; width: 100%; position: relative; }
.quiz-step.active { display: flex; align-items: center; justify-content: center; }
.quiz-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.25; z-index: -1; filter: grayscale(30%) contrast(120%);
}
.progress-bar-container {
    position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
    width: 80%; max-width: 600px; height: 6px; background: rgba(255,255,255,0.1);
    border-radius: 10px; overflow: hidden; z-index: 10;
}
#progress-fill { height: 100%; background: #10B981; width: 0%; transition: width 0.4s ease; box-shadow: 0 0 10px #10B981; }
.quiz-glass {
    background: rgba(3, 5, 10, 0.9); border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}
.input-tech {
    width: 100%; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px; border-radius: 12px; color: white; font-size: 1rem; transition: all 0.3s ease; outline: none; margin-bottom: 16px;
}
.input-tech:focus { border-color: #10B981; box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }
.option-btn {
    width: 100%; text-align: left; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px; border-radius: 12px; cursor: pointer; transition: all 0.2s ease; margin-bottom: 12px; font-weight: 500; color: white;
}
.option-btn:hover { background: rgba(16, 185, 129, 0.1); border-color: #10B981; transform: translateX(5px); }
.motivator-text { color: #10B981; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; margin-bottom: 12px; display: block; }
.btn-back { background: transparent; border: none; color: #6b7280; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; margin-top: 10px; font-weight: 600; }
.btn-back:hover { color: #10B981; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeInUp 0.6s ease-out forwards; }
