/* =========================================
   PÁGINA RESULTADOS Y TESTIMONIOS
   ========================================= */

/* 1. HERO BANNER */
.hero-results {
    background: linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.9)),
        url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

/* 2. BARRA DE ESTADÍSTICAS (La franja negra con números) */
.stats-bar {
    background: #0f172a;
    /* Color oscuro */
    color: #fff;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    border-bottom: 5px solid var(--accent, #c5a059);
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent, #c5a059);
    /* Números dorados */
    margin: 0;
    font-weight: 800;
    line-height: 1;
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    opacity: 0.8;
}

/* 3. GRID DE TESTIMONIOS (Tarjetas) */
.reviews-section {
    padding: 100px 5%;
    background: #f8fafc;
}

.section-header-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    /* Centrado y separado del grid */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Para que no se salga nada */
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent, #c5a059);
}

/* Las comillas gigantes de fondo */
.review-card::before {
    content: "“";
    font-size: 8rem;
    color: #f1f5f9;
    position: absolute;
    top: -20px;
    left: 20px;
    z-index: 0;
    font-family: serif;
    line-height: 1;
}

.review-stars {
    color: #f59e0b;
    /* Estrellas doradas/naranjas */
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #64748b;
    font-size: 1.2rem;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-info h4 {
    margin: 0;
    color: #111;
    font-weight: 700;
}

.author-info span {
    font-size: 0.85rem;
    color: #94a3b8;
}

.verified-badge {
    color: #10b981;
    margin-left: 5px;
}

/* Check verde */

/* 4. PLATAFORMAS (Logos al final) */
.platforms-row {
    text-align: center;
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid #e2e8f0;
}

.platforms-title {
    margin-bottom: 30px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-weight: 800;
    color: #cbd5e1;
}