:root {
            --primary-color: #00a86b;
            --primary-dark: #008a5c;
            --primary-light: #4cd19a;
            --secondary-color: #ff7e5f;
            --accent-color: #ffd166;
            --dark-color: #1a2c3c;
            --light-color: #f8f9fa;
            --gray-light: #e9ecef;
            --gray: #6c757d;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-color);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--light-color);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark-color);
            line-height: 1.2;
        }
        
        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .section-title h2 span {
            color: var(--primary-color);
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: var(--gray);
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 38px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            gap: 10px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            box-shadow: 0 10px 20px rgba(0, 168, 107, 0.25);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 168, 107, 0.35);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
            font-weight: 600;
            padding: 16px 30px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }
        
        .btn-whatsapp:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
            background-color: #1da851;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .header-scrolled {
            padding: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: var(--transition);
        }
        
        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .logo-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
            letter-spacing: -0.5px;
        }
        
        .logo-profession {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray);
            letter-spacing: 1.5px;
            margin-top: 5px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        
        nav a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            padding: 5px 0;
            transition: var(--transition);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        nav a:hover {
            color: var(--primary-color);
        }
        
        .header-cta {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            z-index: 1001;
        }
        
        /* Hero Section */
        .hero {
            padding-top: 180px;
            padding-bottom: 120px;
            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.97)), 
                        url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 25px;
            font-weight: 800;
        }
        
        .hero-content h1 span {
            color: var(--primary-color);
            position: relative;
        }
        
        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: rgba(0, 168, 107, 0.2);
            z-index: -1;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 40px;
            font-weight: 500;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
        }
        
        .stat-item h3 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 5px;
            font-weight: 800;
        }
        
        .stat-item p {
            font-size: 1rem;
            margin-bottom: 0;
            font-weight: 600;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        
        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: linear-gradient(135deg, #009763, #25d366);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(255, 126, 95, 0.3);
            animation: float 3s 
        ease-in-out infinite;
        }
        
        .experience-badge h3 {
            font-size: 2.2rem;
            margin-bottom: 5px;
            font-weight: 800;
            color: #fff;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        /* About Section */
        .about {
            background-color: var(--white);
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        
        .about-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background-color: var(--white);
            padding: 20px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .about-badge i {
            font-size: 2.5rem;
            color: var(--primary-color);
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            font-weight: 800;
        }
        
        .about-content p {
            margin-bottom: 25px;
            color: var(--gray);
            font-weight: 500;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .feature-item i {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-top: 5px;
        }
        
        .feature-item h4 {
            font-weight: 700;
        }
        
        /* Services Section */
        .services {
            background-color: var(--light-color);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            z-index: 2;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 168, 107, 0.05));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .service-icon i {
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        .service-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 25px;
        }
        
        .price h4 {
            font-size: 1.8rem;
            color: var(--primary-color);
            font-weight: 800;
        }
        
        .price span {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 500;
        }
        
        /* Videos Section */
        .videos {
            background-color: var(--white);
        }
        
        .videos-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
        }
        
        .videos-header .section-title {
            margin-bottom: 0;
            text-align: left;
        }
        
        .videos-header .section-title h2::after {
            left: 0;
            transform: none;
        }
        
        .video-filters {
            display: flex;
            gap: 15px;
        }
        
        .filter-btn {
            padding: 10px 25px;
            background-color: var(--gray-light);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-btn.active, .filter-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .video-card {
            background-color: var(--light-color);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .video-thumbnail {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .video-card:hover .video-thumbnail img {
            transform: scale(1.05);
        }
        
        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.8rem;
            transition: var(--transition);
            cursor: pointer;
        }
        
        .video-play-btn:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-info {
            padding: 25px;
        }
        
        .video-category {
            display: inline-block;
            padding: 5px 15px;
            background-color: rgba(0, 168, 107, 0.1);
            color: var(--primary-color);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .video-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            line-height: 1.4;
            font-weight: 700;
        }
        
        .video-meta {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .video-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--light-color);
            position: relative;
        }
        
        .testimonials-slider {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .swiper {
            width: 100%;
            height: 100%;
            padding: 20px 0 60px;
        }
        
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .testimonial-card {
            background-color: var(--white);
            border-radius: 20px;
            padding: 50px;
            box-shadow: var(--shadow);
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial-content {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--dark-color);
            margin-bottom: 30px;
            position: relative;
            text-align: center;
            font-weight: 500;
        }
        
        .testimonial-content::before, .testimonial-content::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.3;
            position: absolute;
        }
        
        .testimonial-content::before {
            top: -20px;
            left: -10px;
        }
        
        .testimonial-content::after {
            bottom: -40px;
            right: -10px;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .client-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-details h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .client-details p {
            color: var(--gray);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--primary-color);
            background-color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: var(--shadow);
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.2rem;
        }
        
        .swiper-pagination-bullet-active {
            background-color: var(--primary-color);
        }
        
        /* WhatsApp Fixed Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }
        
        .whatsapp-button {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: #25D366;
            color: white;
            padding: 18px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
            transition: var(--transition);
            animation: pulse 2s infinite;
        }
        
        .whatsapp-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
            background-color: #1da851;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7); }
            100% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--white);
        }
        
        .contact-info-container {
            background-color: var(--light-color);
            border-radius: 20px;
            padding: 80px 60px;
            box-shadow: var(--shadow);
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .contact-info-container h2 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            font-weight: 800;
        }
        
        .contact-info-container h2 span {
            color: var(--primary-color);
        }
        
        .contact-info-container p {
            color: var(--gray);
            margin-bottom: 50px;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .contact-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(0, 168, 107, 0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-icon i {
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .contact-details h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .contact-details p {
            color: var(--gray);
            margin-bottom: 0;
            font-weight: 500;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(0, 168, 107, 0.1);
            border-radius: 50%;
            color: var(--primary-color);
            font-size: 1.3rem;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-5px);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-links li {
            list-style: none;
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .footer-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .footer-social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .newsletter-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .newsletter-form button:hover {
            background-color: var(--primary-dark);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            nav ul {
                gap: 25px;
            }
        }
        
        @media (max-width: 992px) {
            .hero-container, .about-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .hero {
                padding-top: 150px;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .experience-badge {
                right: 20px;
            }
            
            .about-image {
                order: 2;
            }
            
            .about-content {
                order: 1;
            }
            
            .videos-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 25px;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background-color: white;
                padding: 100px 30px 30px;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
                transition: right 0.4s ease;
                z-index: 1000;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                gap: 20px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-cta .btn {
                display: none;
            }
            
            .contact-info-container {
                padding: 60px 30px;
            }
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 30px;
            }
            
            .experience-badge {
                position: relative;
                right: auto;
                bottom: auto;
                margin-top: 30px;
                display: inline-block;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .videos-grid {
                grid-template-columns: 1fr;
            }
            
            .video-filters {
                flex-wrap: wrap;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 30px;
            }
            
            .contact-items {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-button span {
                display: none;
            }
            
            .whatsapp-button {
                padding: 18px;
            }
            
            .whatsapp-button i {
                font-size: 1.5rem;
            }
        }
/* Testimonials - Grid de 3 cards por slide */
.testimonials-slider {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.swiper {
    width: 100%;
    height: 100%;
    padding: 20px 0 60px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    font-size: 1rem;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 25px;
    position: relative;
    flex-grow: 1;
    line-height: 1.6;
}

.testimonial-content::before, .testimonial-content::after {
    content: '"';
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    font-weight: bold;
}

.testimonial-content::before {
    top: -15px;
    left: -5px;
}

.testimonial-content::after {
    bottom: -25px;
    right: -5px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.client-details p {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    gap: 3px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 1200px) {
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-slider {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .client-details h4 {
        font-size: 1rem;
    }
    
    .client-details p {
        font-size: 0.8rem;
    }
}