        /* TESTIMONIOS PAGE STYLES */
        .testimonios-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10rem 3rem 5rem;
            background: linear-gradient(135deg, var(--oscuro) 0%, #2a2a2a 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonios-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(122, 155, 118, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .testimonios-hero h1 {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .testimonios-hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* STATS */
        .testimonios-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: -4rem auto 5rem;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(122, 155, 118, 0.2) 0%, rgba(232, 220, 196, 0.1) 100%);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--verde);
            box-shadow: 0 20px 40px rgba(122, 155, 118, 0.2);
        }

        .stat-card h3 {
            font-size: 3rem;
            color: var(--beige);
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .stat-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* CEO TESTIMONIALS */
        .ceo-section {
            padding: 5rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            font-family: 'Playfair Display', serif;
        }

        .section-header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        .ceo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .ceo-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(42, 42, 42, 0.8) 100%);
            border-radius: 30px;
            padding: 3rem;
            border: 1px solid rgba(122, 155, 118, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .ceo-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(122, 155, 118, 0.1) 0%, transparent 70%);
            pointer-events: none;
            transition: all 0.4s ease;
        }

        .ceo-card:hover {
            transform: translateY(-10px);
            border-color: var(--verde);
            box-shadow: 0 30px 60px rgba(122, 155, 118, 0.3);
        }

        .ceo-card:hover::before {
            top: -20%;
            right: -20%;
        }

        .ceo-header {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .ceo-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--verde) 0%, var(--beige) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--oscuro);
            flex-shrink: 0;
            border: 3px solid rgba(122, 155, 118, 0.3);
        }

        .ceo-info {
            flex: 1;
        }

        .ceo-name {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--blanco);
            margin-bottom: 0.3rem;
        }

        .ceo-title {
            font-size: 1rem;
            color: var(--verde);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .ceo-company {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
            font-style: italic;
            position: relative;
            z-index: 2;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            color: var(--verde);
            opacity: 0.3;
            position: absolute;
            left: -1rem;
            top: -1rem;
            font-family: 'Playfair Display', serif;
        }

        .impact-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .metric {
            text-align: center;
            padding: 1rem;
            background: rgba(122, 155, 118, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(122, 155, 118, 0.2);
        }

        .metric-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--verde);
            margin-bottom: 0.3rem;
        }

        .metric-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .google-review-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--verde);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .google-review-link:hover {
            color: var(--beige);
            gap: 1rem;
        }

        /* VIDEO TESTIMONIALS */
        .video-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, rgba(122, 155, 118, 0.05) 0%, transparent 100%);
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .video-card {
            background: rgba(26, 26, 26, 0.8);
            border-radius: 25px;
            overflow: hidden;
            border: 1px solid rgba(122, 155, 118, 0.2);
            transition: all 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(-10px);
            border-color: var(--verde);
            box-shadow: 0 20px 40px rgba(122, 155, 118, 0.3);
        }

        .video-thumbnail {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            background: linear-gradient(135deg, rgba(122, 155, 118, 0.2) 0%, rgba(232, 220, 196, 0.1) 100%);
            cursor: pointer;
        }

        .video-thumbnail iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video-info {
            padding: 2rem;
        }

        .video-category {
            display: inline-block;
            background: rgba(122, 155, 118, 0.2);
            color: var(--verde);
            padding: 0.4rem 1rem;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .video-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--blanco);
            margin-bottom: 0.8rem;
            line-height: 1.3;
        }

        .video-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* CTA SECTION */
        .testimonios-cta {
            padding: 5rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-box {
            background: linear-gradient(135deg, #4a6b46 0%, #3a5b36 100%);
            padding: 4rem 3rem;
            border-radius: 30px;
            color: #ffffff;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            pointer-events: none;
        }

        .cta-box h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', serif;
            color: #ffffff;
            position: relative;
            z-index: 1;
            text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
        }

        .cta-box p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: #ffffff;
            line-height: 1.7;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .cta-button {
            display: inline-block;
            padding: 1.5rem 4rem;
            background: #E8DCC4;
            color: #1A1A1A;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            border: 3px solid #E8DCC4;
            position: relative;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            background: #ffffff;
            color: #2a5026;
            border-color: #ffffff;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .ceo-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .testimonios-hero {
                padding: 7rem 1.5rem 4rem;
                min-height: 50vh;
            }
            
            .testimonios-hero h1 {
                font-size: clamp(2rem, 8vw, 3rem);
            }
            
            .testimonios-hero p {
                font-size: 1.1rem;
            }
            
            .testimonios-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin: -3rem auto 4rem;
                padding: 0 1.5rem;
            }
            
            .stat-card {
                padding: 2rem 1.5rem;
            }
            
            .stat-card h3 {
                font-size: 2.5rem;
            }
            
            .ceo-section,
            .video-section,
            .testimonios-cta {
                padding: 4rem 1.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .ceo-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .ceo-card {
                padding: 2rem;
            }
            
            .ceo-avatar {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .ceo-name {
                font-size: 1.3rem;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
            
            .testimonial-text::before {
                font-size: 3rem;
            }

            .video-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .impact-metrics {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .metric {
                padding: 0.8rem;
            }
            
            .metric-value {
                font-size: 1.5rem;
            }
            
            .cta-box {
                padding: 3rem 2rem;
                border-radius: 25px;
            }
            
            .cta-box h2 {
                font-size: 2rem;
            }
            
            .cta-box p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .cta-button {
                padding: 1.2rem 2.5rem;
                font-size: 1rem;
                width: 100%;
                max-width: 350px;
            }
        }
        
        @media (max-width: 480px) {
            .testimonios-hero {
                padding: 6rem 1rem 3rem;
            }
            
            .stat-card {
                padding: 1.5rem 1rem;
            }
            
            .ceo-card {
                padding: 1.5rem;
            }
            
            .ceo-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .impact-metrics {
                grid-template-columns: 1fr;
            }
            
            .video-info {
                padding: 1.5rem;
            }
            
            .cta-box {
                padding: 2.5rem 1.5rem;
            }
            
            .cta-button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }
    </style>
<style>
    /* COMMUNITY SECTION */
    .community-section {
        padding: 8rem 2rem;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        position: relative;
        overflow: hidden;
    }

    .community-section::before {
        content: '';
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(122, 155, 118, 0.1) 0%, transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .community-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .community-header {
        text-align: center;
        margin-bottom: 5rem;
    }

    .community-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 700;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, var(--beige) 0%, var(--verde) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .community-subtitle {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.7);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .community-grid-three {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    @media (max-width: 968px) {
        .community-grid-three {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    .community-card {
        background: rgba(26, 26, 26, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 3rem 2rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .community-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--verde) 0%, var(--beige) 100%);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .community-card:hover::before {
        transform: scaleX(1);
    }

    .community-card:hover {
        transform: translateY(-10px);
        border-color: var(--verde);
        box-shadow: 0 20px 40px rgba(122, 155, 118, 0.2);
    }

    /* Social Icons Group */
    .social-combined .social-icons-group {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .social-icons-group .community-icon {
        width: 60px;
        height: 60px;
    }

    .community-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .community-icon svg {
        width: 50px;
        height: 50px;
        transition: transform 0.3s ease;
    }

    .social-icons-group .community-icon svg {
        width: 35px;
        height: 35px;
    }

    .community-card:hover .community-icon svg {
        transform: scale(1.1) rotate(-5deg);
    }

    /* Icon Colors */
    .whatsapp-icon {
        background: rgba(37, 211, 102, 0.15);
        color: #25D366;
    }

    .facebook-icon {
        background: rgba(24, 119, 242, 0.15);
        color: #1877F2;
    }

    .instagram-icon {
        background: rgba(225, 48, 108, 0.15);
        color: #E1306C;
    }

    .members-icon {
        background: rgba(122, 155, 118, 0.15);
        color: var(--verde);
    }

    .support-icon {
        background: rgba(230, 224, 206, 0.15);
        color: var(--beige);
    }

    .community-stat {
        font-size: 3rem;
        font-weight: 800;
        color: var(--beige);
        margin-bottom: 1rem;
        line-height: 1;
    }

    .community-label {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
    }

    .community-cta {
        text-align: center;
    }

    .community-button {
        display: inline-block;
        padding: 1.5rem 4rem;
        background: linear-gradient(135deg, var(--verde) 0%, var(--beige) 100%);
        color: var(--negro);
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(122, 155, 118, 0.3);
    }

    .community-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(122, 155, 118, 0.4);
    }

    @media (max-width: 768px) {
        .community-section {
            padding: 5rem 1.5rem;
        }

        .community-stat {
            font-size: 2.5rem;
        }

        .community-button {
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
        }
    }
