/* ========================================
   Estilos específicos para Testimonios
   ======================================== */

/* Hero de Testimonios */
.testimonios-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 140px 0 60px;
    text-align: center;
}

.testimonios-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.testimonios-hero h1 .highlight-exito {
    color: #FFD700;  /* Dorado brillante */
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    font-weight: 800;
}

.testimonios-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Estadísticas */
.estadisticas {
    background: var(--bg-light);
    padding: 60px 0;
}

.estadisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.estadistica-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.estadistica-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.estadistica-numero {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.estadistica-card p {
    color: var(--text-light);
    font-size: 16px;
}

/* Testimonios Destacados */
.testimonios-destacados {
    padding: 80px 0;
    background: var(--white);
}

.testimonio-destacado-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonio-destacado-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonio-destacado-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid var(--border-color);
}

.testimonio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonio-info h3 {
    font-size: 20px;
    color: #4ade80;  /* Verde brillante */
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonio-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.testimonio-stars {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonio-body {
    padding: 25px;
}

.resultado-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.resultado-badge i {
    font-size: 18px;
}

.testimonio-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonio-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.testimonio-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.testimonio-gallery img:hover {
    transform: scale(1.05);
}

/* Todos los Testimonios */
.todos-testimonios {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonio-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonio-stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonio-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonio-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonio-author h4 {
    font-size: 16px;
    color: #4ade80;  /* Verde brillante */
    margin-bottom: 3px;
    font-weight: 700;
}

.testimonio-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Paginación */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);

/* Video Testimonios */
.video-testimonios {
    padding: 80px 0;
    background: var(--bg-dark);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(74, 222, 128, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 24px;
    transition: var(--transition);
    cursor: pointer;
}

.play-btn:hover {
    background: var(--primary-light);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h4 {
    padding: 20px;
    font-size: 16px;
    color: var(--text-white);
    text-align: center;
}

.video-player {
    padding: 15px;
    background: var(--bg-darker);
    border-top: 2px solid var(--primary-color);
    display: none;
}

.video-player video {
    width: 100%;
    max-height: 400px;
    display: block;
    border-radius: 12px;
}
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.page-btn i {
    font-size: 14px;
}

/* Video Testimonios */
.video-testimonios {
    padding: 80px 0;
    background: var(--white);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(76, 175, 80, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: var(--transition);
    cursor: pointer;
}

.play-btn:hover {
    background: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card h4 {
    padding: 20px;
    font-size: 16px;
    color: var(--text-dark);
    text-align: center;
}

/* CTA Testimonios */
.cta-testimonios {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-content .btn-ordenar-keto {
    background: linear-gradient(135deg, #FFD700, #FFA500);  /* Dorado a naranja */
    color: #000000;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #FFD700;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-content .btn-ordenar-keto:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    border-color: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .testimonio-destacado-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonios-hero {
        padding: 100px 0 40px;
    }
    
    .testimonios-hero h1 {
        font-size: 36px;
    }
    
    .estadisticas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonio-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonio-gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .estadisticas-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}
