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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background: #000;
    padding: 15px 20px;
    position: relative;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 180px;
}

.menu {
    list-style: none;
    display: flex;
    position: relative;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    color: #fff;
    padding: 10px;
    display: block;
}

.menu li a:hover {
    color: #f7a800;
}

.submenu ul, .submenu-interno {
    display: none;
    position: absolute;
    background: #111;
    width: 240px;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.submenu:hover > ul {
    display: block;
}

.submenu ul li {
    width: 100%;
}

.submenu ul li:hover > .submenu-interno {
    display: block;
    top: 0;
    left: 240px;
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #000;
    }

    .menu li {
        width: 100%;
    }

    .submenu ul, .submenu-interno {
        position: static;
    }

    .menu.show {
        display: flex;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #f7fbff;
    padding: 50px 20px;
    text-align: center;
    color: #222;
    font-family: 'Arial', sans-serif;
}

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

.faq-container h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px; /* Adjusted spacing */
}

.faq-columns {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 50px; /* Reduced margin for better alignment */
    gap: 20px; /* Added gap for consistent spacing */
}

.faq-column {
    flex: 1;
    padding: 0 10px; /* Added padding for separation */
}

.faq-column h3 {
    font-size: 24px;
    position: relative;
    margin-bottom: 20px;
}

.faq-column h3::after {
    content: '';
    width: 60px;
    height: 2px;
    background: #b2c9f2;
    display: block;
    margin: 15px auto 0;
}

.faq-links a {
    display: block;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.faq-links a:hover {
    color: #2e86de;
}

.faq-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-detail h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

.faq-detail h3::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #b2c9f2;
    display: block;
    margin: 15px auto;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.question-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added hover effect */
}

.question-box:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.question-box h4 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.question-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.social-follow {
    background-color: #f4f8fd;
    padding: 50px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.social-container {
    max-width: 800px;
    margin: auto;
}

.social-container p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.btn-postular {
    display: inline-block;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 25px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.btn-postular:hover {
    border-color: #000;
    color: #000;
}

.social-container h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.social-container h3::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #b2c9f2;
    display: block;
    margin: 10px auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    color: #555;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #2e86de;
    color: #fff;
    border-color: #2e86de;
}

.contact-options {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.contact-option {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    text-align: center;
}

.contact-option h3 {
    color: #f7a800;
    margin-bottom: 15px;
}

.contact-option p {
    margin-bottom: 20px;
}

.contact-button {
    display: inline-block;
    background-color: #f7a800;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #d48c00;
}

@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
    }

    .contact-option {
        width: 100%;
        margin-bottom: 20px;
    }
}

.footer {
    background-color: #f0f0f0;
    padding: 40px 20px;
    font-size: 14px;
    color: #333;
}

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

.footer-logo {
    flex: 1;
    min-width: 220px;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 15px;
}

.footer-logo p {
    margin-bottom: 10px;
}

.footer-columna {
    flex: 1;
    min-width: 180px;
}

.footer-columna h4 {
    margin-bottom: 15px;
}

.footer-columna ul {
    list-style: none;
    padding: 0;
}

.footer-columna ul li {
    margin-bottom: 10px;
}

.footer-columna ul li a {
    color: #555;
    text-decoration: none;
}

.footer-columna ul li a:hover {
    text-decoration: underline;
}

/* Estilo del botón de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp-button img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Styles for social media buttons */
.social-buttons {
    text-align: center;
    margin: 20px 0;
}

.social-button {
    display: inline-block;
    margin: 0 10px;
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-button img {
    width: 40px;
    height: 40px;
    display: inline-block;
}

.social-button:hover {
    transform: scale(1.1);
}
