/*<!--------------------------------------------WHY CHOOSE US------------------------------------------------------>
<!--------------------------------------------WHY CHOOSE US------------------------------------------------------>
<!--------------------------------------------WHY CHOOSE US------------------------------------------------------>*/
/* Estilos generales para móvil */
.creative-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.image-container {
    width: 100%;
    position: relative; /* Para permitir la superposición de las imágenes pequeñas */
}

.main-image {
    width: 100%;
    border-radius: 8px;
}

.small-images {
    position: absolute;
    bottom: -1.5rem; /* Ajuste de posición para que las imágenes pequeñas se superpongan */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.small-images img {
    width: 30%;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Agregar sombra para mayor visibilidad */
}

.text-container {
    text-align: center;
    margin-top: 2.5rem; /* Espaciado ajustado */
}

.small-title {
    font-size: 0.9rem;
    color: #666;
}

.main-title {
    font-size: 1.4rem;
    margin: 1rem 0;
}

.highlight-box {
    background-color: var(--third-color);; /* Naranja pastel */
    padding: 1rem;
    border-radius: 8px;
}

/* Estilos para tablets */
@media (min-width: 768px) {
/*<!--------------------------------------------WHY CHOOSE US------------------------------------------------------>
<!--------------------------------------------WHY CHOOSE US------------------------------------------------------>
<!--------------------------------------------WHY CHOOSE US------------------------------------------------------>*/
    .creative-process {
        padding: 5rem 10rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .image-container {
        width: 50%;
    }

    .text-container {
        width: 45%;
        text-align: left;
        margin-top: 0; /* Eliminar margen superior para tablets */
    }

    .main-title {
        font-size: 1.8rem;
        text-align: left;
    }

    .highlight-box {
        padding: 1.5rem;
    }
}

/* Estilos para pantallas grandes (PC) */
@media (min-width: 1024px) {
/*<!--------------------------------------------WHY CHOOSE US------------------------------------------------------>
<!--------------------------------------------WHY CHOOSE US------------------------------------------------------>
<!--------------------------------------------WHY CHOOSE US------------------------------------------------------>*/
    .creative-process {
        align-items: flex-start; /* Alineación superior para la sección en PC */
    }

    .main-title {
        font-size: 2rem;
    }

    .highlight-box {
        padding: 2rem;
    }
}
