/* =====================================================
   SECTIONS-VISUAL.CSS - Secciones Optimizadas Visual
   ===================================================== */

/* =====================================================
   TÍTULOS GLOBALES
   ===================================================== */

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--dark-gold);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--purple-accent));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--accent-bronze);
    margin-bottom: 50px;
    font-weight: 400;
}

/* =====================================================
   GARANTÍA DESTACADA
   ===================================================== */

.garantia-destacada {
    padding: 60px 20px;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
}

.garantia-box {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--beneficio-green);
}

.garantia-badge {
    font-size: 5rem;
    color: var(--beneficio-green);
}

.garantia-badge img {
    width: 120px;
    height: auto;
}

.garantia-content h3 {
    font-size: 1.8rem;
    color: var(--dark-gold);
    margin-bottom: 15px;
}

.garantia-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.garantia-destacado {
    font-weight: 700;
    color: var(--beneficio-green);
    font-size: 1.1rem;
}

/* =====================================================
   DOLORES VISUAL
   ===================================================== */

.dolores-visual {
    padding: 80px 20px;
    background: white;
}

.dolores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.dolor-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.dolor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.dolor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    padding: 30px 20px;
    color: white;
}

.dolor-overlay h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.dolor-overlay p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   ANTES/DESPUÉS
   ===================================================== */

.antes-despues {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--warm-white) 100%);
}

.comparacion-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0 40px;
}

.comparacion-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.comparacion-card:hover {
    transform: translateY(-5px);
}

.comparacion-img-wrapper {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.comparacion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparacion-content {
    padding: 30px 25px;
    text-align: center;
}

.comparacion-label {
    display: inline-block;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.comparacion-content.antes .comparacion-label {
    background: rgba(229, 57, 53, 0.1);
    color: var(--dolor-red);
}

.comparacion-content.despues .comparacion-label {
    background: rgba(46, 125, 50, 0.1);
    color: var(--beneficio-green);
}

.comparacion-content h3 {
    font-size: 1.5rem;
    color: var(--dark-gold);
    margin-bottom: 12px;
}

.comparacion-content p {
    font-size: 1rem;
    color: var(--accent-bronze);
    line-height: 1.6;
    margin: 0;
}

.comparacion-flecha {
    font-size: 3rem;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparacion-flecha i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.puente-texto {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.puente-texto p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.puente-texto p strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.puente-texto .cta-button {
    margin-top: 20px;
}

/* =====================================================
   CAPÍTULOS VISUAL
   ===================================================== */

.capitulos-visual {
    padding: 80px 20px;
    background: white;
}

.capitulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.capitulo-card {
    background: var(--light-cream);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.capitulo-card:hover {
    background: white;
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.capitulo-icono {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.capitulo-card h4 {
    font-size: 1.2rem;
    color: var(--dark-gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.capitulo-card p {
    font-size: 0.95rem;
    color: var(--accent-bronze);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================
   BONOS VISUAL
   ===================================================== */

.bonos-visual {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFFEF9 100%);
}

.bonos-intro {
    text-align: center;
    margin-bottom: 60px;
}

.bonos-urgencia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    background: rgba(229, 57, 53, 0.1);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.bonos-urgencia i {
    color: var(--dolor-red);
    font-size: 1.4rem;
}

.bonos-urgencia span {
    color: var(--dark-text);
    font-weight: 600;
}

.timer-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 15px;
    border-radius: var(--radius-full);
    border: 2px solid var(--dolor-red);
}

.timer-inline i {
    color: var(--dolor-red);
    font-size: 1.2rem;
}

.timer-inline span {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--dolor-red);
    letter-spacing: 1px;
}

.bonos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.bono-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.bono-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.bono-card.featured {
    border-color: var(--primary-gold);
}

.bono-mockup {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--light-cream);
}

.bono-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bono-card:hover .bono-mockup img {
    transform: scale(1.1);
}

.bono-content {
    padding: 30px 25px;
}

.bono-badge {
    background: var(--primary-gold);
    color: white;
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.bono-content h3 {
    font-size: 1.3rem;
    color: var(--dark-gold);
    margin-bottom: 15px;
    line-height: 1.3;
}

.bono-content p {
    font-size: 0.95rem;
    color: var(--accent-bronze);
    line-height: 1.6;
    margin-bottom: 20px;
}

.bono-valor {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.valor-label {
    font-size: 0.9rem;
    color: var(--dark-text);
    font-weight: 600;
}

.valor-numero {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-bronze);
    text-decoration: line-through;
}

.valor-gratis {
    background: linear-gradient(135deg, var(--beneficio-green) 0%, #1B5E20 100%);
    color: white;
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
}

/* =====================================================
   VALOR TOTAL + OFERTA
   ===================================================== */

.oferta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--warm-white) 100%);
}

.valor-desglose {
    max-width: 700px;
    margin: 0 auto 40px;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.valor-desglose h3 {
    font-size: 1.5rem;
    color: var(--dark-gold);
    text-align: center;
    margin-bottom: 30px;
}

.valor-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.valor-item:last-of-type {
    border-bottom: none;
}

.item-icono {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.item-nombre {
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 500;
}

.item-valor {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-bronze);
}

.valor-separador {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 20px 0;
}

.valor-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.total-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
}

.total-tachado {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-bronze);
    text-decoration: line-through;
}

/* =====================================================
   PRECIO BOX FINAL
   ===================================================== */

.precio-box-final {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--primary-gold);
    position: relative;
}

.descuento-badge-grande {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    color: white;
    padding: 15px 40px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-porcentaje {
    font-size: 2.5rem;
    font-weight: 900;
}

.badge-texto {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.precio-texto {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 600;
}

.precio-final-grande {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 25px;
}

.timer-grande {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(229, 57, 53, 0.1);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.timer-grande i {
    font-size: 1.5rem;
    color: var(--dolor-red);
}

.timer-grande span {
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: 600;
}

.timer-grande .timer-numbers {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dolor-red);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.cta-oferta-final {
    width: 100%;
    font-size: 1.4rem;
    padding: 25px 40px;
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    margin-bottom: 25px;
}

.sellos-confianza {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(201, 169, 97, 0.2);
}

.sello {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sello i {
    font-size: 2rem;
    color: var(--beneficio-green);
}

.mp-badge {
    max-width: 120px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(29%) sepia(77%) saturate(1186%) hue-rotate(93deg) brightness(93%) contrast(92%);
}

.sello span {
    font-size: 0.85rem;
    color: var(--dark-text);
    text-align: center;
    font-weight: 500;
}

.oferta-garantia {
    font-size: 0.95rem;
    color: var(--beneficio-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.oferta-garantia i {
    font-size: 1.3rem;
}

/* =====================================================
   TESTIMONIOS VISUAL
   ===================================================== */

.testimonios-visual {
    padding: 80px 20px;
    background: white;
}

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

.testimonio-card {
    background: var(--light-cream);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonio-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonio-card.con-foto {
    border-color: var(--primary-gold);
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.testimonio-info {
    flex: 1;
}

.testimonio-nombre {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gold);
    margin-bottom: 4px;
}

.testimonio-pais {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-bronze);
    margin-bottom: 8px;
}

.testimonio-estrellas {
    color: #FFA000;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.testimonio-texto {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonio-foto {
    width: 100%;
    border-radius: var(--radius-md);
    margin-top: 15px;
    box-shadow: var(--shadow-sm);
}

/* =====================================================
   FAQ
   ===================================================== */

.faq {
    padding: 80px 20px;
    background: var(--light-cream);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gold);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-cream);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-text);
}

/* =====================================================
   CTA FINAL
   ===================================================== */

.cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    text-align: center;
}

.cta-final h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 25px;
}

.cta-quote {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    font-style: italic;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-final .cta-button {
    background: white;
    color: var(--dark-gold);
    font-size: 1.3rem;
    padding: 22px 50px;
}

.cta-final .cta-button:hover {
    background: var(--light-cream);
    color: var(--dark-gold);
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
    background: var(--dark-text);
    padding: 40px 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-link {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    transform: scale(1.2);
}

.footer-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-email:hover {
    color: var(--primary-gold);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-links span {
    color: rgba(255,255,255,0.5);
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* =====================================================
   CTA FLOTANTE
   ===================================================== */

.cta-flotante {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cta-flotante.visible {
    transform: translateY(0);
}

.cta-flotante-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-flotante-texto {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-flotante-btn {
    background: white;
    color: var(--dolor-red);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-flotante-btn:hover {
    background: var(--light-cream);
    color: var(--dolor-red);
    transform: scale(1.05);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 991px) {
    .garantia-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    
    .comparacion-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparacion-flecha {
        transform: rotate(90deg);
    }
    
    .precio-box-final {
        padding: 50px 30px;
    }
    
    .precio-final-grande {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .garantia-box {
        padding: 25px 20px;
    }
    
    .garantia-badge {
        font-size: 3.5rem;
    }
    
    .valor-desglose {
        padding: 25px 20px;
    }
    
    .valor-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
    }
    
    .precio-box-final {
        padding: 40px 20px;
    }
    
    .descuento-badge-grande {
        padding: 12px 30px;
        flex-direction: column;
        gap: 5px;
    }
    
    .badge-porcentaje {
        font-size: 2rem;
    }
    
    .precio-final-grande {
        font-size: 2.8rem;
    }
    
    .sellos-confianza {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-flotante-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-flotante-texto {
        font-size: 0.95rem;
    }
}
/* =====================================================
   TESTIMONIOS COMPACTOS (SIN FOTOS DE REVIEWS)
   Agregar al final de sections-visual.css
   ===================================================== */

.testimonios-grid-compacto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.testimonio-card-compacto {
    background: var(--light-cream);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonio-card-compacto:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonio-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.testimonio-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
    flex-shrink: 0;
}

.testimonio-info {
    flex: 1;
}

.testimonio-nombre {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gold);
    margin-bottom: 3px;
}

.testimonio-pais {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-bronze);
    margin-bottom: 6px;
}

.testimonio-estrellas {
    color: #FFA000;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.testimonio-texto {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-text);
    margin: 0;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonios-grid-compacto {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Card del testimonio con borde dorado izquierdo */
.testimonio-card-carousel {
    background: white;
    padding: 40px 45px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-gold);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.testimonio-card-carousel:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Header: Avatar + Estrellas + Badge */
.testimonio-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.testimonio-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonio-estrellas {
    color: #FDB913;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonio-verificado {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.testimonio-verificado i {
    font-size: 1rem;
}

/* Texto del testimonio */
.testimonio-texto {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #5a5a5a;
    font-style: italic;
    margin: 0;
}

/* Nombre al final */
.testimonio-nombre-final {
    font-size: 1rem;
    color: var(--dark-gold);
    font-weight: 600;
    margin: 0;
}

/* =====================================================
   FLECHAS - FUERA DE LA CARD (SOLO DESKTOP)
   ===================================================== */

.testimonios-arrow-next,
.testimonios-arrow-prev {
    width: 55px;
    height: 55px;
    background: var(--primary-gold);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.testimonios-arrow-next:hover,
.testimonios-arrow-prev:hover {
    background: var(--dark-gold);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
}

.testimonios-arrow-next::after,
.testimonios-arrow-prev::after {
    font-size: 22px;
    font-weight: 900;
}

.testimonios-arrow-prev {
    left: -70px;
}

.testimonios-arrow-next {
    right: -70px;
}

.testimonios-arrow-next.swiper-button-disabled,
.testimonios-arrow-prev.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* =====================================================
   PAGINACIÓN CON LÍNEAS (NO PUNTITOS)
   ===================================================== */

.testimonios-pagination {
    bottom: 0 !important;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
}

.testimonios-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    background: var(--accent-bronze);
    opacity: 0.3;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonios-pagination .swiper-pagination-bullet-active {
    width: 45px;
    background: var(--primary-gold);
    opacity: 1;
}

.testimonios-pagination .swiper-pagination-bullet:hover {
    opacity: 0.6;
}

/* =====================================================
   RESPONSIVE - MOBILE/TABLET
   ===================================================== */

@media (max-width: 991px) {
    .testimonios-carousel-wrapper {
        padding: 0 20px; /* Sin espacio para flechas */
    }
    
    /* OCULTAR FLECHAS EN MOBILE/TABLET */
    .testimonios-arrow-next,
    .testimonios-arrow-prev {
        display: none;
    }
    
    .testimoniosSwiper {
        padding-bottom: 60px;
    }
    
    .testimonio-card-carousel {
        padding: 30px 25px;
        min-height: auto;
    }
    
    .testimonio-texto {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonios-carousel-wrapper {
        padding: 0 10px;
    }
    
    .testimonio-card-carousel {
        padding: 25px 20px;
        border-left-width: 3px;
    }
    
    .testimonio-header {
        gap: 12px;
    }
    
    .testimonio-avatar-small {
        width: 45px;
        height: 45px;
    }
    
    .testimonio-estrellas {
        font-size: 0.9rem;
    }
    
    .testimonio-texto {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    
    .testimonio-nombre-final {
        font-size: 0.9rem;
    }
    
    .testimonios-pagination .swiper-pagination-bullet {
        width: 25px;
        height: 3px;
    }
    
    .testimonios-pagination .swiper-pagination-bullet-active {
        width: 40px;
    }
}
/* =====================================================
   TESTIMONIOS BOOTSTRAP CAROUSEL
   ===================================================== */

.testimonios-visual {
    padding: 80px 20px;
    background: var(--warm-white);
}

/* Carousel con espacio para flechas */
.carousel-testimonios {
    padding: 0 80px;
    position: relative;
}

/* Card del testimonio */
.testimonio-card-carousel {
    background: white;
    padding: 40px 45px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-gold);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.testimonio-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.testimonio-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonio-estrellas {
    color: #FDB913;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonio-verificado {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.testimonio-verificado i {
    font-size: 1rem;
}

.testimonio-texto {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #5a5a5a;
    font-style: italic;
    margin: 0;
}

.testimonio-nombre-final {
    font-size: 1rem;
    color: var(--dark-gold);
    font-weight: 600;
    margin: 0;
}

/* =====================================================
   FLECHAS FUERA DE LA CARD
   ===================================================== */

.carousel-control-custom {
    width: 55px;
    height: 55px;
    background: var(--primary-gold) !important;
    border-radius: 50%;
    opacity: 1 !important;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.carousel-control-custom.carousel-control-prev {
    left: -60px;
}

.carousel-control-custom.carousel-control-next {
    right: -60px;
}

.carousel-control-custom:hover {
    background: var(--dark-gold) !important;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
}

.carousel-control-custom .carousel-control-prev-icon,
.carousel-control-custom .carousel-control-next-icon {
    width: 22px;
    height: 22px;
}

/* =====================================================
   PAGINACIÓN CON LÍNEAS (NO PUNTITOS)
   ===================================================== */

.carousel-indicators-custom {
    bottom: -50px;
    margin-bottom: 0;
}

.carousel-indicators-custom button {
    width: 30px;
    height: 3px;
    background-color: var(--accent-bronze) !important;
    opacity: 0.3;
    border-radius: 2px;
    margin: 0 4px;
    transition: all 0.3s ease;
    border: none;
}

.carousel-indicators-custom button.active {
    width: 45px;
    background-color: var(--primary-gold) !important;
    opacity: 1;
}

.carousel-indicators-custom button:hover {
    opacity: 0.6;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 991px) {
    .carousel-testimonios {
        padding: 0 20px;
    }
    
    /* OCULTAR flechas en mobile */
    .carousel-control-custom {
        display: none;
    }
    
    .carousel-indicators-custom {
        bottom: -40px;
    }
}

@media (max-width: 768px) {
    .testimonio-card-carousel {
        padding: 30px 25px;
        min-height: auto;
    }
    
    .testimonio-texto {
        font-size: 1rem;
    }
    
    .testimonio-header {
        gap: 12px;
    }
    
    .testimonio-avatar-small {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .carousel-testimonios {
        padding: 0 10px;
    }
    
    .testimonio-card-carousel {
        padding: 25px 20px;
        border-left-width: 3px;
    }
    
    .testimonio-estrellas {
        font-size: 0.9rem;
    }
    
    .testimonio-texto {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    
    .testimonio-nombre-final {
        font-size: 0.9rem;
    }
    
    .carousel-indicators-custom button {
        width: 25px;
        height: 3px;
    }
    
    .carousel-indicators-custom button.active {
        width: 40px;
    }
}