/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #fac11c;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.header-logo img {
    height: 60px;
}

.header-nav ul {
    list-style: none; /* Corregido: list-style en lugar de list-le */
    margin: 0;
    padding: 0;
    display: flex;
}

.header-nav ul li {
    margin-left: 20px;
}

.header-nav ul li a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 20px;
}

.header-nav ul li a:hover {
    color: #ffffff;
    font-size: 20px;
}

/* Menú hamburguesa en móvil */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
        color: #333333;
        font-size: 24px;
    }

    .header-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #ffffff;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .header-nav ul.active {
        display: flex;
    }

    .header-nav ul li {
        margin: 10px 0;
    }

    .header-nav ul li a {
        color: #333333;
        font-weight: 400;
        font-size: 20px;
    }

    .header-nav ul li a:hover,
    .header-nav ul li a.active {
        color: #fac11c;
        font-weight: bold;
        font-size: 20px;
    }
}

/* Título y subtítulo */
.main-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 32px;
}

.sub-title {
    font-size: 24px;
    font-weight: bold;
    color: #fac11c;
    text-align: left;
    margin: 32px 20px 20px 20px;
}

/* Imagen debajo del header */
.header-image {
    text-align: center;
    margin-bottom: 20px;
}

.header-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* Título Buscador */
.search-title {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    margin: 0px 32px 15px 0px;
    color: #ffffff !important;
}

/* Buscador */
.search-section {
    padding: 32px;
    background-color: #fac11c !important;
}

/* Contenido principal */
main {
    padding: 0 32px;
}

/* Formulario */
.form-container {
    padding: 32px 40px;
}

/* Imagen sobre el footer */
.footer-image {
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.footer-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #333333;
    color: #ffffff;
    padding: 40px 20px;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-section {
    width: 23%;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-container {
        flex-direction: column;
    }
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p, .footer-section a {
    color: #999999;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fac11c;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #ffffff;
    font-size: 18px;
}

.footer-social a:hover {
    color: #fac11c;
}

.footer-legal {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444444;
}

.footer-legal p {
    margin: 0;
    font-size: 12px;
    color: #999999;
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
}

.footer-legal a:hover {
    color: #fac11c;
}

/* Email como imagen */
.email-image {
    display: inline-block;
    margin-top: 10px;
}

.email-image img {
    max-width: 180px;
    height: auto;
    vertical-align: middle;
}

/* Preguntas frecuentes */
.faq-section {
    padding: 0 20px;
}

.faq-section h3 {
    color: #333333;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}