.hero-contact {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.5) 0%, rgba(10, 37, 64, 0.6) 100%),
                url("/ruida/img/contact.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(230, 179, 37, 0.05);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(230, 179, 37, 0.15) 0%, rgba(230, 179, 37, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E6B325;
    flex-shrink: 0;
}

.qr-code {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid #E5E7EB;
}

.form-input {
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.1);
}

.form-input.error {
    border-color: #EF4444;
    background-color: #FEF2F2;
}

.form-input.success {
    border-color: #10B981;
}

.form-error {
    display: none;
}

.form-error.show {
    display: block;
}

.form-radio {
    accent-color: #0F3460;
}

.form-checkbox {
    accent-color: #0F3460;
}

.value-card {
    border: 1px solid transparent;
}

.value-card:hover {
    border-color: rgba(230, 179, 37, 0.3);
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0F3460;
}

.faq-question {
    font-weight: 500;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    animation: fadeIn 0.3s ease;
}

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

.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-status-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-status-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

@media (max-width: 768px) {
    .hero-contact {
        min-height: 400px;
    }
    
    .contact-info-item {
        padding: 12px;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
    }
    
    .qr-code {
        width: 64px;
        height: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-answer {
        animation: none;
    }
    
    .faq-icon {
        transition: none;
    }
}
