
.testimonios {
    text-align: center;
    padding: 50px 20px;
}

.testimonios h2 {
    font-size: 30px;
    font-weight: 700;
    color: #263036;
}
.testimonios span {
    color: #ed662d;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.carousel {
    display: flex;
    overflow: hidden;
    position: relative;
}

.card {
    min-width: 100%;
    background: #263036;
    color: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity .6s ease, transform .6s ease;
}

.card.active {
    opacity: 1;
    transform: translateX(0);
}


.card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.card h4 {
    color: #ed662d;
    font-size: 15px;
    margin-top: 10px;
}

/* Botones flechas */
.nav-btn2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #263036;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}
.nav-btn2:hover {
    background: #225055;
}

#prevBtn { left: -45px; }
#nextBtn { right: -45px; }

/* Puntos de navegación */
.dots {
    margin-top: 15px;
}
.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: #ed662d;
}

/* Responsivo */
@media (max-width: 768px) {
    #prevBtn {
        left: 10px;
    }
    #nextBtn {
        right: 10px;
    }
}
