        /* Sección contenedora transparente */
        .reviews-section-wrapper {
            padding: 4rem 0;
            background: transparent;
        }

        /* TARJETA PRINCIPAL GRANDE */
        .main-reviews-container {
            background: #ffffff;
            border: none;
            border-radius: 24px;
            padding: 3rem 2rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
        }

        /* Encabezado */
        .google-icon-header {
            width: 22px;
            height: 22px;
        }

        .stars-group-header {
            color: #ffc107;
            font-size: 1.1rem;
            display: flex;
            gap: 2px;
        }

        /* Botón "Review us on Google" */
        .btn-google-review {
            background-color: #ffffff;
            color: #1a1a1a;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.6rem 1.5rem;
            border: 1px solid #e0e0e0;
            border-radius: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .btn-google-review:hover {
            background-color: #f8f9fa;
            color: #000000;
            border-color: #ccc;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }

        /* AJUSTES PARA EL SLIDER DE RESEÑAS */
        .swiper-reviews {
            width: 100%;
            padding: 10px 0 45px 0 !important; /* Espacio abajo para los puntitos de paginación */
        }

        /* TARJETAS INTERNAS DE RESEÑAS */
        .review-card {
            background: #f8f9fa;
            border: none;
            border-radius: 16px;
            padding: 1.5rem;
            height: 100%; /* Obliga a que todas tengan el mismo alto */
            user-select: none;
        }

.profile-img-container {
    width: 50px;
    height: 50px;
    min-width: 50px; /* Evita que Bootstrap encoja el contenedor en pantallas chicas */
    min-height: 50px;
    border-radius: 50%;
    overflow: hidden; /* Corta todo lo que se salga del círculo */
    display: inline-block;
}

/* 2. La imagen dentro del contenedor */
.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Centra y recorta la foto automáticamente sin deformarla */
    display: block;
}
        .stars-group {
            color: #ffc107;
            font-size: 0.95rem;
        }

        .review-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #4a4a4a;
        }

        .reviewer-name {
            color: #1a1a1a;
        }

        .google-icon {
            width: 18px;
            height: 18px;
        }

        /* Color personalizado para los puntos de paginación activos */
        .swiper-pagination-bullet-active {
            background: #1a1a1a !important;
        }