.caruseles-container {
    width: 100%;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.caruseles {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.caruseles-item {
    min-width: 95%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    display: flex;
    align-items: center;
    text-align: left;
}

.image {
    max-width: 150px;
    margin-right: 20px;
    border-radius: 10px;
}

.text h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.text p {
    margin: 5px 0 0 0;
    font-size: 16px;
    color: #555;
}

.caruseles-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.caruseles-controls button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
}

.caruseles-indicators {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    height: 15px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #E05C4F;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .image {
        margin-bottom: 10px;
        max-width: 100px;
    }

    .text h2 {
        font-size: 20px;
    }

    .text p {
        font-size: 14px;
    }
}
