.boston-testimonios-carrusel-container {
    max-width: 540px;
    margin: 0 auto 1.75rem auto;
    position: relative;
}

.boston-testimonios {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, #D4B59E 0%, #A67B5B 100%);
    border-radius: 1.4rem;
    padding: 1.4rem 1.4rem;
    box-shadow: 0 4px 22px rgba(44, 42, 40, 0.10);
}

.boston-testimonio {
    display: flex;
    align-items: flex-start;
    gap: 1.05rem;
    background: #F5E8DCbb;
    border-radius: 1.4rem;
    padding: 0.84rem 1.05rem;
    box-shadow: 0 1.4px 5.6px #C57A5C44;
    transition: transform .2s cubic-bezier(.68,-0.55,.27,1.55);
}
.boston-testimonio:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 22px #C57A5C55;
}

.boston-testimonio-avatar {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #815C48;
    box-shadow: 0 1.4px 5.6px #A67B5B44;
    flex-shrink: 0;
}

.boston-testimonio-nombre {
    font-weight: 700;
    font-size: 0.77rem;
    color: #2E2A28;
    margin-bottom: 3px;
    text-shadow: 0 0.7px 1.4px #D4B59E88;
}

.boston-testimonio-texto {
    color: #2E2A28;
    font-size: 0.7rem;
    line-height: 1.5;
    font-style: normal;
}

/* Botones CTA */
.boston-testimonios-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 1.3rem;
}

.boston-testimonios-boton {
    background: #815C48;
    color: #fff;
    padding: 0.49rem 1.12rem;
    border-radius: 1.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none; /* ✅ Sin subrayado */
    box-shadow: 0 1.4px 5.6px #A67B5B33;
    transition: background .2s;
    display: inline-block;
}
.boston-testimonios-boton:hover {
    background: #C57A5C;
    color: #fff;
    text-decoration: none; /* ✅ Sin subrayado incluso al pasar el mouse */
}

.boston-testimonios-boton-comunidad {
    background: #A67B5B;
}
.boston-testimonios-boton-comunidad:hover {
    background: #D4B59E;
    color: #2E2A28;
    text-decoration: none;
}

/* Flechas (si las activás en algún momento) */
.swiper-button-next,
.swiper-button-prev {
    color: #A67B5B;
    top: 50%;
}

/* 🔻 Paginación eliminada
.swiper-pagination {
    position: relative !important;
    margin-top: 1rem;
}
.swiper-pagination-bullet {
    background: #C57A5C;
    opacity: 0.7;
}
.swiper-pagination-bullet-active {
    background: #815C48;
    opacity: 1;
}
*/

/* Responsive */
@media (max-width: 900px) {
    .boston-testimonios-carrusel-container {
        max-width: 98vw;
    }
    .boston-testimonios {
        padding: 0.84rem 0.56rem;
    }
    .boston-testimonio {
        padding: 0.7rem 0.42rem;
    }
}
@media (max-width: 600px) {
    .boston-testimonios {
        gap: 10px;
        padding: 0.56rem 0.14rem;
    }
    .boston-testimonio-avatar {
        width: 31px;
        height: 31px;
    }
    .boston-testimonio-nombre {
        font-size: 0.7rem;
    }
}

.boston-testimonios-titulo {
    text-align: center;
    background: linear-gradient(135deg, #D4B59E 0%, #A67B5B 100%);
    color: #2E2A28;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 1.2rem;
    border-radius: 1.4rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(44, 42, 40, 0.15);
}