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

/* Variables de colores */
:root {
    --primary-color: #003366;
    --secondary-color: #007bff;
    --background-light: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header */
header {
    background-color: #004d99;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

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

.slogan {
    color: #ffcc00;
    font-style: italic;
    font-size: 1.2em;
    text-align: center;
    margin: 0;
}

.slogan {
    color: #ffcc00;
    font-size: 1.5em;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

/* Menú de navegación */
.menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

.menu li {
    list-style: none;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 5px 10px;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffcc00;
    transition: width 0.3s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

.menu a:hover,
.menu a.active {
    color: #ffcc00;
}

/* Redes sociales */
.social-links {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    padding: 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 200px;
    margin: 10px;
    text-align: center;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #ffcc00;
}

.footer-column ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: white;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Social Links en el footer */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Copyright */
.copyright {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #002a52;
}

.copyright .container {
    max-width: 1200px;
    margin: 0 auto;
}

.copyright p {
    margin: 0;
    color: white;
}

.copyright a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Formulario de contacto */
.contacto-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.contacto-form-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contacto-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contacto-form h2 {
    color: #004d99;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #004d99;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    padding: 12px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-container label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.checkbox-container a {
    color: #004d99;
    text-decoration: none;
    font-weight: 500;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

.submit-button {
    background-color: #004d99;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s;
}

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

.contact-info {
    flex: 0 0 300px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #004d99;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.contact-info strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contacto-form-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info {
        flex: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contacto-container {
        padding: 10px;
    }

    .contacto-form {
        padding: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin: 10px 0;
    }
}
