

/* ========================================================= */
/* style.css - Diseño Moderno y Minimalista para LHA */
/* ========================================================= */

/* 1. Definición de Variables y Reset Global */
:root {
    /* Paleta de Colores */
    --primary-color: #333; /* Texto principal oscuro */
    --secondary-color: #007bff; /* Color de acento (Azul moderno para botones/enlaces) */
    --background-color: #f4f4f4; /* Fondo gris claro (Minimalista) */
    --form-background: #ffffff; /* Fondo del formulario (Blanco limpio) */
    --font-family: 'Montserrat', sans-serif; /* Tipografía moderna y legible */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 16px; /* Tamaño de letra base, considerado 'mediano' */
}

/* 2. Cabecera y Eslogan */
.main-header {
    background-color: var(--form-background);
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.slogan {
    font-size: 1.5em; 
    font-weight: 300; /* Fuente ligera para un estilo minimalista */
    color: #555;
    text-transform: uppercase;
}

/* 3. Contenedor Principal y Formulario */
.content-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.contact-form {
    background-color: var(--form-background);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Sutil sombra para destacar */
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

/* 4. Estilos de los Campos del Formulario */
.form-section {
    border: none;
    padding: 0;
    margin-bottom: 25px;
}

.form-section legend {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 10px;
}

.contact-form label, .form-section p {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
}

.contact-form input:not([type="radio"]),
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    font-family: var(--font-family);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Radio Button Layout */
.form-section label input[type="radio"] {
    margin-right: 10px;
}
.form-section label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 5px;
}

/* Botón de Enviar */
.submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
    transition: background-color 0.3s;
    margin-top: 20px;
}

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

/* 5. Pie de Página (Footer) */
.main-footer {
    background-color: var(--primary-color); /* Fondo oscuro para contraste */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    margin: 0 8px;
    text-decoration: none;
    font-weight: 600; 
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* 6. Estilos para la Política de Privacidad (Consistencia) */
.privacy-policy-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--form-background);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.privacy-policy-content h3 {
    border-left: 3px solid #ccc;
    padding-left: 10px;
    margin-bottom: 10px;
}
