/* ==================== CONTACT SECTION & FORM ==================== */

.quote-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.quote-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.quote-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.quote-card h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.quote-card p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-quote {
    background: transparent;
    color: #fff;
    border: 1px solid #3b82f6;
    padding: 15px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-quote:hover {
    background: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* MODAL FORM HUD STYLE */
.contact-modal {
    z-index: 3000;
}

.contact-hud {
    background: rgba(2, 6, 23, 0.95);
    border: 1px solid #3b82f6;
    max-width: 800px;
    width: 90%;
    position: relative;
    padding: 60px 60px 80px 60px;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.2);
    overflow-y: auto;
    max-height: 90vh;
}

.contact-hud .hud-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-hud .hud-header {
    margin-bottom: 20px;
    width: 100%;
}

.contact-hud .hud-header h2 {
    font-size: 2.2rem;
    margin: 10px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
    padding-bottom: 20px; /* Espaço extra no final para não cortar o botão */
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: #3b82f6;
    letter-spacing: 1px;
}

.form-group input, 
.form-group textarea {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 12px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #3b82f6;
    background: rgba(15, 23, 42, 1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.btn-submit {
    margin-top: 20px;
    width: 100%;
    display: block;
    height: 60px; /* Altura fixa para evitar cortes */
    line-height: 1;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Feedback states */
.form-feedback {
    display: none;
    text-align: center;
    padding: 20px;
}

.form-feedback.active {
    display: block;
}

.form-feedback h3 {
    font-family: 'Orbitron', sans-serif;
    color: #10b981;
    margin-bottom: 10px;
}

.form-feedback.error h3 {
    color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-card {
        padding: 30px 20px;
    }
    .quote-card h2 {
        font-size: 1.5rem;
    }
    .contact-hud {
        padding: 25px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-hud .hud-header h2 {
        font-size: 1.5rem;
    }
}
