.beneficios-section {
    background-color: #F6F1F9;
    margin: 30px 0;
    text-align: center;
}

.beneficios-title {
    background-color: #670099;
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
    padding: 10px 50px;
    display: inline-block;
    position: relative;
}

.beneficios-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: url(https://www.mychway.com/image/catalog/2025/activity/minion_recruit_mx/rectangle.webp) center bottom;
    background-size: 100% auto;
}

.beneficios-list {
    list-style-type: none;
    padding: 0;
}

.beneficio-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 0;
    border-top: 3px solid #fff;
}

.beneficio-description {
    font-size: 16px;
}

.contenido-seccion {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.contenido-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.contenido-description {
    font-size: 14px;
    color: #666;
}

.unirse-seccion {
    background-color: #f9f3ff;
    padding: 30px 20px;
    text-align: center;
}

.unirse-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.unirse-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
    align-items: center;
}

.unirse-step {
    position: relative;
    color: #660497;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    min-width: 320px;
    width: 50%;
    border: 1px solid #670099;
}

.unirse-step::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #6a0dad;
}

.unirse-step:last-child::after {
    display: none;
}


.unirse-button {
    color: #fff;
    background: #670099;
    border: 1px solid #670099;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    min-width: 200px;
    width: 25%;
}

.unirse-button:hover {
    background: #8b07cd;
}


.contact-seccion {
    width: 80%;
    margin: 30px auto 0;
}

.footer-info {
    list-style-type: none;
    padding: 0;
    color: #666;
    text-align: center;
}

.footer-info li {
    line-height: 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-link {
    color: #fff;
    text-decoration: none;
    padding: 4px 8px;
    background-color: #25D366;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
}

.whatsapp-link > img {
    margin-right: 3px;
}

.video-section {
    width: 80%;
    margin: 30px auto 0;
}

.video-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .mx-banner {
        margin-top: 52px;
    }
}

@media screen and (max-width: 768px) {
    .mx-banner {
        margin-top: 52px;
    }

    .beneficios-title {
        width: 96%;
        padding: 10px 0;
    }

    .unirse-step {
        width: 100%;
    }

    .unirse-button {
        width: 100%;
    }

    .contact-seccion {
        width: 100%;
    }

    .footer-info {
        text-align: left;
        padding: 0 10px;
    }

}

@media screen and (max-width: 640px) {
    .mx-banner {
        margin-top: 0;
    }
}


.form-section {
    border-radius: 8px;
    padding: 20px;
    width: 80%;
    margin: 0 auto;
}

.form-header {
    text-align: left;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.form-header .title {
    margin-top: 0;
    color: #333;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #6a0dad;
}

.required {
    color: red;
}

.submit-button {
    background-color: #6a0dad;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.submit-button:hover {
    background-color: #550099;
}

@media screen and (max-width: 768px) {
    .form-section {
        width: 96%;
        padding: 0;
    }

    .form-header .title {
        font-size: 18px;
    }

    .form-header {
        margin-top: 15px;
    }

    .form-header, .form-group {
        padding: 15px;
    }
}