/* Contact Section */
.final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: white;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.form-group {
    flex: 0 0 48%;
    margin-bottom: 20px;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: var(--border-radius);
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Estilos para mensagens de feedback */
.success-message,
.error-message {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.3s ease-in-out;
}

.success-message {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.error-message {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo para campos com erro */
.contact-form input.error,
.contact-form textarea.error {
    border: 1px solid rgba(239, 68, 68, 0.5);
    background-color: rgba(239, 68, 68, 0.1);
}

/* Estilo para mensagens de erro nos campos */
.field-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    padding-left: 5px;
    animation: fadeIn 0.3s ease-in-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-group {
        flex: 0 0 100%;
    }
} 