/* Estilos específicos para la página de Contacto */
.contacto-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.contacto-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contacto-header h1 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contacto-form-container {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

.contacto-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

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

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

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-check-input {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.form-check-label a {
    color: var(--color-accent);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-accent);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #e85d04;
}

.contacto-alternativo {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--color-text-light);
}

.contacto-alternativo a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.contacto-alternativo a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contacto-form-container {
        padding: 1.5rem;
    }
    
    .contacto-header h1 {
        font-size: 2rem;
    }
}
