:root {
   --primary: #5E35B1;
            --primary-light: #9575CD;
            --primary-dark: #263238;
            --secondary: #FF4081;
            --dark: #263238;
            --light: #f8f9fa;
            --white: #ffffff;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-400: #ced4da;
            --gray-500: #adb5bd;
            --gray-600: #6c757d;
            --gray-700: #495057;
            --gray-800: #343a40;
            --gray-900: #212529;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --border-radius-lg: 16px;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--gray-800);
            background-color: var(--light);
        }


          .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }


        /* Seção Testemunhos */
        .testimonials-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(94, 53, 177, 0.03) 0%, transparent 20%),
                radial-gradient(circle at 80% 80%, rgba(255, 64, 129, 0.03) 0%, transparent 20%);
            z-index: 0;
            animation: rotate 120s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }

        .section-header .subtitle {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Container do Slider */
        .testimonials-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto 3rem;
            z-index: 2;
        }

        /* Slider */
        .testimonials-slider {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
            background: var(--white);
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        /* Cards de Depoimento */
        .testimonial-card {
            flex: 0 0 100%;
            padding: 3rem;
            background: var(--white);
            display: flex;
            flex-direction: column;
            min-height: 450px;
            position: relative;
            opacity: 0.3;
            transform: scale(0.9);
            transition: var(--transition);
        }

        .testimonial-card.active {
            opacity: 1;
            transform: scale(1);
        }

        .testimonial-rating {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .testimonial-content {
            flex: 1;
            position: relative;
            padding: 0 1rem;
        }

        .quote-icon {
            position: absolute;
            top: -20px;
            left: -10px;
            width: 60px;
            height: 60px;
            opacity: 0.15;
            color: var(--primary);
            z-index: 0;
        }

        .testimonial-text {
            font-size: 1.15rem;
            color: var(--gray-800);
            font-style: italic;
            margin-bottom: 2.5rem;
            position: relative;
            line-height: 1.8;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-top: auto;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--primary-light);
            box-shadow: var(--shadow-md);
            flex-shrink: 0;
            position: relative;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .author-avatar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(94, 53, 177, 0.2), rgba(255, 64, 129, 0.2));
            border-radius: 50%;
            opacity: 0;
            transition: var(--transition);
        }

        .testimonial-card.active .author-avatar::after {
            opacity: 1;
        }

        .author-info h4 {
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .author-info p {
            font-size: 0.95rem;
            color: var(--gray-600);
            font-weight: 500;
        }

        /* Controles de Navegação */
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2rem;
            position: relative;
            z-index: 2;
        }

        .slider-nav {
            background: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            border: 2px solid var(--primary-light);
            color: var(--primary);
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .slider-nav:hover, .slider-nav:focus {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .slider-nav:active {
            transform: translateY(0);
        }

        .slider-dots {
            display: flex;
            gap: 0.8rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--gray-300);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .slider-dot:hover {
            background: var(--primary-light);
            transform: scale(1.2);
        }

        /* Indicadores de teclado para acessibilidade */
        .slider-nav:focus, .slider-dot:focus {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }

        /* CTA Section */
        .testimonials-cta {
            text-align: center;
            margin-top: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
            color: var(--white);
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .testimonials-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            z-index: -1;
        }

        .testimonials-cta p {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: var(--primary);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: var(--transition);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:active {
            transform: translateY(0);
        }

        .cta-button:focus {
            outline: 2px solid var(--white);
            outline-offset: 2px;
        }

        /* Animações */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Acessibilidade - Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .testimonial-card {
                padding: 2.5rem;
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 4rem 5%;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .testimonial-card {
                padding: 2rem;
                min-height: 380px;
            }
            
            .testimonial-text {
                font-size: 1.05rem;
            }
            
            .author-avatar {
                width: 60px;
                height: 60px;
            }
            
            .slider-nav {
                width: 45px;
                height: 45px;
            }
            
            .testimonials-cta p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            .testimonial-card {
                padding: 1.5rem;
                min-height: 420px;
            }
            
            .testimonial-author {
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }
            
            .author-info h4 {
                font-size: 1.1rem;
            }
            
            .cta-button {
                padding: 0.8rem 1.5rem;
            }
        }

        /* Modo escuro opcional (se necessário no futuro) */
        .dark-mode .testimonials-section {
            background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
        }

        .dark-mode .testimonial-card {
            background: var(--gray-800);
        }

        .dark-mode .testimonial-text {
            color: var(--gray-200);
        }

        .dark-mode .author-info h4 {
            color: var(--white);
        }

        .dark-mode .author-info p {
            color: var(--gray-400);
        }
