/* Estilos específicos para la página de soporte */

.support-header {
    background: var(--light-green-bg);
    padding: 3rem 0 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.header-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-text h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--color-negro);
    margin-bottom: 0.5rem;
}

.header-text p {
    font-size: 1.1rem;
    color: var(--color-gris-oscuro);
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-morado);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: var(--color-teal);
}

/* Información de contacto */
.contact-info {
    padding: 4rem 0;
    background: white;
}

.contact-info h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-negro);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: var(--light-green-bg);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--color-morado);
    margin-top: 0.2rem;
}

.contact-method h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-negro);
}

.contact-method p {
    margin-bottom: 0.25rem;
}

.contact-method p a {
    color: var(--color-morado);
    text-decoration: none;
    font-weight: 600;
}

.contact-method p a:hover {
    text-decoration: underline;
}

.contact-method span {
    font-size: 0.9rem;
    color: var(--color-gris-oscuro);
}

/* Formulario de contacto */
.contact-form-section {
    padding: 4rem 0;
    background: var(--light-green-bg);
}

.contact-form-section h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-negro);
}

.form-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-gris-oscuro);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-negro);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-morado);
    box-shadow: 0 0 0 3px rgba(79, 78, 146, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: var(--cta-gradient);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 170, 176, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Mensajes del formulario */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-negro);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--light-green-bg);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-negro);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3 i {
    color: var(--color-morado);
}

.faq-item p {
    color: var(--color-gris-oscuro);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-text h1 {
        font-size: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    .support-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-section h2,
    .contact-info h2,
    .faq-section h2 {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .support-header {
        padding: 2rem 0 1.5rem 0;
    }
    
    .header-logo {
        width: 60px;
        height: 60px;
    }
    
    .header-text h1 {
        font-size: 1.5rem;
    }
    
    .support-form {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}