.hero-image img{
    width: 100% !important;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
}

.area-profesionales-wrapper {
    padding-bottom: 40px;
}

.profesionales-grid {
    padding: 40px 0;
}

.profesionales-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Proporciones ajustadas */
    border-bottom: 1px solid var(--color-text);
    padding: 30px 0;
    align-items: flex-start; /* Alinea todo al techo de la fila */
}

.card-group-name {
    display: flex;
    align-items: center;
    color: var(--color-text);
    font-size: 24px;
    font-weight: bold;
    height: 45px;
    margin: 0;
}

.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    grid-column: 2 / span 2; /* Ocupa las dos columnas de la derecha */
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.downloads-list .file-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--color-text);
    margin: 0;
}

.buttons-download {
    display: none; /* Ya no se usa, los botones están dentro de .download-item */
}

.btn-download {
    border: 1px solid var(--color-text);
    padding: 0 15px;
    border-radius: 4px;
    font-size: 14px;
    width: 200px;
    height: 45px; /* Altura fija para sincronizar con el texto */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-text);
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-download:hover {
    background-color: var(--color-text);
    color: var(--color-page);
}

.btn-alquiler {
    display: block;
    width: fit-content;
    margin: 30px 0;
    background-color: transparent !important;
    color: var(--color-text);
    padding: 15px 50px;
    text-decoration: none;
}

.slider-container {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 100px;
}

.trabaja-section {
    padding-bottom: 40px;
}

.alquiler-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.left .g-title {
    text-align: left;
    font-size: 50px;
}

/* Responsive */
@media (max-width: 1600px) {
    .profesionales-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-bottom: 40px;
    }

    .downloads-list {
        grid-column: auto; /* Reset column span */
        gap: 25px;
        margin: 15px 0;
    }

    .download-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .downloads-list .file-title {
        font-size: 18px;
        height: auto;
    }

    .buttons-download {
        align-items: flex-start;
        gap: 15px;
        margin: 10px 0;
    }

    .btn-download {
        width: 100%;
        max-width: 200px;
    }

    .hero-image img {
        height: 400px;
    }
}

@media (max-width: 1000px) {
    .alquiler-section {
        flex-direction: column;
        gap: 20px;
    }

    .slider-container {
        max-width: 100%;
        margin-bottom: 50px;
    }
}