/* ########################
   SECCIÓN HERO (PRINCIPAL)
   ######################## */
.hero {
    background-color: var(--white);
    padding: 65px 0;
}

.hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
}

.hero-content {
    flex: 1;
}

.hero-content p {
    margin-bottom: 15px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.250); */
}

.hero-partner-images {
    display: flex;  /* Alinea las imágenes en fila */
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 50px;
}

.hero-partner-images-img {
    width: calc(33% - 10px); 
    /* max-width: 150px; */
    object-fit: cover; /* Recorta la imagen para que llene el espacio sin deformarse */
}
