.unete-join-us-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/img/fulltechnexus/principal/Fondo7.png') no-repeat center top;
    background-size: 100% 100%;
    overflow: hidden;
}

.unete-join-us-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    gap: 50px;
}

.unete-left-content {
    flex-shrink: 0;
    text-align: center;
    padding-bottom: 600px;
    max-width: 350px;
}

.unete-left-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.unete-right-content {
    flex-shrink: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 600px;
    max-width: 800px;
}

.unete-image-card {
    width: 300px;
    text-align: center;
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}

.unete-image-card:hover {
    transform: scale(1.1);
    text-decoration: none;
}


.unete-card-image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.unete-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.unete-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.unete-card-label {
    font-size: 22px;
    font-weight: bold;
    color: white;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.unete-card-description {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #032f70;
    margin-top: 15px;
    line-height: 1.5;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(248, 247, 247, 0.5);
}

@media (max-width: 768px) {
    .unete-join-us-section {
        flex-direction: column;
        align-items: center;
    }

    .unete-join-us-container {
        flex-direction: column;
        gap: 40px;
    }

    .unete-left-content {
        margin-bottom: 20px;
        padding-bottom: 0;
    }

    .unete-right-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .unete-card-image {
        width: 150px;
        height: 150px;
    }
}