 :root {
            --color-primary: #ff3333;
            --color-primary-dark: #cc0000;
            --color-secondary: #1e90ff;
            --color-secondary-dark: #0066cc;
            --color-text: #e8e8e8;
            --color-text-secondary: #b0b0b0;
            --color-text-light: #b0b0b0;
            --color-background: #0a1929;
            --color-surface: #132f4c;
            --color-border: rgba(255, 255, 255, 0.12);
            --color-accent: #00d4ff;
            --color-card-border: rgba(255, 255, 255, 0.15);
            --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --space-8: 8px;
            --space-12: 12px;
            --space-16: 16px;
            --space-24: 24px;
            --space-32: 32px;
            --space-48: 48px;
            --space-64: 64px;
            --space-80: 80px;
            --radius-sm: 6px;
            --radius-base: 12px;
            --radius-lg: 16px;
            --radius-full: 9999px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

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

        body {
            font-family: var(--font-family-base);
            color: var(--color-text);
            line-height: 1.7;
            background-color: var(--color-background);
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: rgba(10, 25, 41, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            box-shadow: var(--shadow-md);
            padding: 5px 0;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: var(--space-16) var(--space-32);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            height: 70px;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: var(--space-32);
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--color-text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-primary);
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--color-primary);
            color: white !important;
            padding: var(--space-12) var(--space-24);
            border-radius: var(--radius-base);
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            background: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .nav-cta::after {
            display: none;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--color-text);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            background: linear-gradient(135deg, #0a1929 0%, #132f4c 50%, #1e3a5f 100%);
            color: white;
            padding: var(--space-80) var(--space-32);
            position: relative;
            overflow: hidden;
            
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.02)" width="50" height="50"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-64);
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 3.7rem;
            font-weight: 700;
            margin-bottom: var(--space-24);
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
        }

        .hero-text .highlight {
            color: #ffeb3b;
            display: block;
        }

        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: var(--space-32);
            opacity: 0.95;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: var(--space-16);
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .btn-primary, .btn-secondary {
            padding: var(--space-16) var(--space-32);
            border-radius: var(--radius-base);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--color-primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--color-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(229, 57, 53, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: white;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-24);
            margin-top: var(--space-32);
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: var(--space-24);
            border-radius: var(--radius-base);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-card h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: var(--space-8);
            color: #ffeb3b;
        }

        .stat-card p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin: 0;
        }

        /* Problems Section */
        .problems-section {
            background: linear-gradient(to bottom, #0a1929 0%, var(--color-surface) 100%);
            padding: var(--space-80) var(--space-32);
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-64);
        }

        .section-label {
            color: var(--color-primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: var(--space-12);
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: var(--space-16);
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--color-text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-24);
        }

        .problem-card {
            background: #1a2332;
            padding: var(--space-32);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: all 0.3s ease;
            position: relative;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--color-primary);
            border-radius: 4px 0 0 4px;
            transition: height 0.3s ease;
        }

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

        .problem-card:hover::before {
            height: 100%;
        }

        .problem-icon {
            font-size: 2.5rem;
            margin-bottom: var(--space-16);
        }

        .problem-card h3 {
            font-size: 1.3rem;
            color: var(--color-text);
            margin-bottom: var(--space-12);
        }

        .problem-card p {
            color: var(--color-text-light);
            line-height: 1.7;
        }

        /* Solutions Section */
        .solutions-section {
            padding: var(--space-80) var(--space-32);
            background: #0f1e2e;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--space-32);
            margin-top: var(--space-48);
        }

        .solution-card {
            background: linear-gradient(135deg, var(--color-surface) 0%, #1a2332 100%);
            padding: var(--space-32);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: all 0.3s ease;
        }

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

        .solution-header {
            display: flex;
            align-items: center;
            gap: var(--space-16);
            margin-bottom: var(--space-24);
        }

        .solution-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            border-radius: var(--radius-base);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
        }

        .solution-card h3 {
            font-size: 1.4rem;
            color: var(--color-text);
            flex: 1;
        }

        .solution-card p {
            color: var(--color-text-light);
            line-height: 1.8;
            margin-bottom: var(--space-16);
        }

        .solution-features {
            list-style: none;
            margin-top: var(--space-16);
        }

        .solution-features li {
            padding: var(--space-8) 0;
            color: var(--color-text-light);
            display: flex;
            align-items: center;
            gap: var(--space-8);
        }

        .solution-features li::before {
            content: '✓';
            color: var(--color-primary);
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: var(--space-80) var(--space-32);
            background: linear-gradient(135deg, #0d2238 0%, #091827 100%);
            color: white;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-32);
            margin-top: var(--space-48);
        }

        .why-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: var(--space-32);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .why-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .why-card h3 {
            font-size: 1.3rem;
            margin-bottom: var(--space-16);
            display: flex;
            align-items: center;
            gap: var(--space-12);
        }

        .why-card p {
            opacity: 0.95;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: var(--space-80) var(--space-32);
            background: var(--color-surface);
            text-align: center;
        }

        .cta-box {
            max-width: 900px;
            margin: 0 auto;
            background: #1a2332;
            padding: var(--space-64);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .cta-box h2 {
            font-size: 2.5rem;
            color: var(--color-text);
            margin-bottom: var(--space-24);
        }

        .cta-box p {
            font-size: 1.2rem;
            color: var(--color-text-light);
            margin-bottom: var(--space-32);
        }

        /* Quiz Section */
        .quiz-section {
            padding: var(--space-80) var(--space-32);
            background: #0a1929;
        }

        .quiz-container {
            max-width: 900px;
            margin: 0 auto;
            background: #1a2332;
            padding: var(--space-48);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

        .form-group {
            margin-bottom: var(--space-32);
        }

        .form-group label {
            display: block;
            margin-bottom: var(--space-12);
            font-weight: 600;
            color: var(--color-text);
            font-size: 1.05rem;
        }

        .form-control {
            width: 100%;
            padding: var(--space-16);
            border: 2px solid var(--color-border);
            border-radius: var(--radius-base);
            font-family: var(--font-family-base);
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #0d1924;
            color: var(--color-text);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .checkbox-group, .radio-group {
            display: flex;
            flex-direction: column;
            gap: var(--space-12);
        }

        .checkbox-group label, .radio-group label {
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: var(--space-12);
            cursor: pointer;
            padding: var(--space-12);
            border-radius: var(--radius-sm);
            transition: background 0.3s ease;
        }

        .checkbox-group label:hover, .radio-group label:hover {
            background: rgba(229, 57, 53, 0.05);
        }

        /* Contact Section */
        .contact-section {
            padding: var(--space-80) var(--space-32);
            background: #0f1e2e;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-32);
            margin-top: var(--space-48);
        }

        .contact-card {
            background: #1a2332;
            padding: var(--space-32);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: all 0.3s ease;
        }

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

        .contact-icon {
            font-size: 3rem;
            margin-bottom: var(--space-16);
        }

        .contact-card h3 {
            color: var(--color-secondary);
            margin-bottom: var(--space-16);
            font-size: 1.3rem;
        }

        .contact-card p {
            color: var(--color-text-light);
            margin-bottom: var(--space-8);
        }

        .contact-card a {
            color: var(--color-primary);
            text-decoration: none;
            font-weight: 500;
        }

        /* Footer */
        footer {
            background: #050d15;
            color: rgba(255, 255, 255, 0.8);
            padding: var(--space-48) var(--space-32);
            text-align: center;
        }

        footer p {
            margin-bottom: var(--space-8);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: var(--space-48);
            }

            .hero-image {
                display: none;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }
        }

        /* Regra para Desktop / Geral */
        #header nav {
            /* Define o sistema de coordenadas para elementos filhos absolutos */
            position: relative; 
            display: flex; /* ou use a sua regra atual para alinhar itens */
            justify-content: space-between;
            align-items: center;
}
        .menu-toggle {
            display: none;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #0a1929;
                flex-direction: column;
                padding: var(--space-24);
                box-shadow: var(--shadow-md);
                gap: var(--space-16);
            }
            .nav-links.active {
                display: flex;
            }


            .nav-links li {
                text-align: center;
                margin: 10px 0;
            }

            .hero {
                padding: var(--space-48) var(--space-24);
            }

            .hero-text h1 {
                font-size: 2.2rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .problems-grid,
            .solutions-grid,
            .why-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .cta-box {
                padding: var(--space-32);
            }

            .cta-box h2 {
                font-size: 1.8rem;
            }
        }

        .hidden {
            display: none;
        }

        /* Hero Section */
        .hero-sobre {
            margin-top: 102px;
            background: linear-gradient(135deg, #0a1929 0%, #132f4c 50%, #1e3a5f 100%);
            padding: var(--space-80) var(--space-32);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-sobre::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.02)" width="50" height="50"/></svg>');
            opacity: 0.3;
        }

        .hero-sobre h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: var(--space-24);
            color: white;
            position: relative;
            z-index: 1;
        }

        .hero-sobre p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Main Content */
        .container-sobre {
            max-width: 1400px;
            margin: 0 auto;
            padding: var(--space-80) var(--space-32);
        }

        .section-sobre {
            margin-bottom: var(--space-64);
        }

        .content-sobre {
            background: #1a2332;
            padding: var(--space-48);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--color-border);
        }

        .content-sobre p {
            font-size: 1.2rem;
            line-height: 1.9;
            color: var(--color-text-light);
            margin-bottom: var(--space-24);
        }

        .content-sobre p:last-child {
            margin-bottom: 0;
        }

        /* Pilares */
        .pilares-section {
            padding: var(--space-80) var(--space-32);
            background: #0f1e2e;
            border-radius: var(--radius-lg)  
        }

        .title-pilares {
            text-align: center;
            font-size: 2.5rem;
            color: var(--color-text);
            margin-bottom: var(--space-48);
        }

        .pilares-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-32);
        }

        .pilar-item {
            background: linear-gradient(135deg, var(--color-surface) 0%, #1a2332 100%);
            padding: var(--space-32);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: all 0.3s ease;
        }

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

        .pilar-item h3 {
            font-size: 1.5rem;
            color: var(--color-secondary);
            margin-bottom: var(--space-16);
            display: flex;
            align-items: center;
            gap: var(--space-12);
        }

        .pilar-item h3::before {
            content: '✓';
            color: var(--color-primary);
            font-weight: 700;
            font-size: 1.8rem;
        }

        .pilar-item p {
            color: var(--color-text-light);
            line-height: 1.8;
            font-size: 1.1rem;
        }
        

        .cliente-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 16px;
            color: var(--color-text);
            font-weight: 700;
        }

        .subtitle-cliente {
            text-align: center;
            color: var(--color-text-secondary);
            margin-bottom: 48px;
            font-size: 1.1rem;
        }

        .carousel-cliente-wrapper {
            position: relative;
            padding: 0 60px;
        }

        .carousel-container-cliente {
            overflow-x: auto;
            scroll-behavior: smooth;
            display: flex;
            gap: 24px;
            padding: 20px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .carousel-container-cliente::-webkit-scrollbar {
            display: none;
        }

        .feedback-card {
            min-width: 350px;
            background: var(--color-surface);
            border: 1px solid var(--color-card-border);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-md);
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .feedback-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: var(--radius-full);
            background: var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            flex-shrink: 0;
        }

        .client-details h3 {
            font-size: 1.1rem;
            margin-bottom: 4px;
            color: var(--color-text);
        }

        .client-details p {
            color: var(--color-text-secondary);
            font-size: 0.9rem;
        }

        .stars {
            color: #f59e0b;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        .feedback-text {
            color: var(--color-text-secondary);
            line-height: 1.6;
            font-size: 1rem;
        }

        .nav-button-cliente {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            width: 48px;
            height: 48px;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .nav-button-cliente:hover {
            background: var(--color-primary);
            border-color: var(--color-primary);
            color: white;
            transform: translateY(-50%) scale(1.05);
        }

        .nav-button-cliente.prev {
            left: 0;
        }

        .nav-button-cliente.next {
            right: 0;
        }

        .nav-button-cliente svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
        }

        @media (max-width: 768px) {
            .carousel-wrapper {
                padding: 0 40px;
            }

            .feedback-card {
                min-width: 280px;
            }

            .nav-button-cliente {
                width: 40px;
                height: 40px;
            }
            .blog-slider {
  position: relative;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-slider img {
  width: 100%;
  height: 260px;          /* padrão desktop */
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

/* Mobile */
@media (max-width: 768px) {
  .blog-slider img {
    height: 200px;        /* padrão mobile */
  }
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
}
/* --- ESTILOS PARA RESPONSIVIDADE (Não alteram sua estrutura) --- */

/* 1. Ajustes Gerais de Container */
.container-blog {
    width: 95%; /* Garante margens nas laterais em telas pequenas */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
}

/* 2. Menu de Navegação (Mobile) */
@media (max-width: 768px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    /* Esconde o menu por padrão no mobile */
    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 70px; /* Ajuste conforme a altura do seu header */
        left: 0;
        width: 100%;
        background-color:#1a2332; /* Altere para a cor do seu site */
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* Classe que o seu JS deve ativar ao clicar no botão */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    /* Exibe o botão de hambúrguer que já está no seu HTML */
    .menu-toggle {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
    }
}

/* Se for Desktop, esconde o botão de menu */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    .nav-links {
        display: flex;
        list-style: none;
        gap: 20px;
    }
}

/* 3. Grid de Soluções/Artigos */
.solutions-grid {
    display: grid;
    gap: 20px;
    /* Faz o grid ter 1 coluna no mobile, 2 no tablet e 3 no desktop automaticamente */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* 4. Hero Section e Textos */
.hero-blog {
    padding: 60px 20px;
    text-align: center;
}

.hero-blog h1 {
    font-size: calc(1.8rem + 1vw); /* Fonte cresce conforme a tela */
}

/* 5. CTA Section (Caixa de Contato) */
.cta-box {
    width: 90%;
    margin: 0 auto;
    padding: 30px 15px;
    text-align: center;
}

/* 6. Imagens Fluidas */
img {
    max-width: 100%;
    height: auto;
}
.courses-page {
    padding: 60px 20px;
    background-color: var(--color-background);
}
        }
.container {
    max-width: 1200px;
    margin: 0 auto;
    
}

.courses-intro h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.courses-intro p {
    font-size: 1.05rem;
    color: #555;
    max-width: 800px;
}

/* ===== LISTA DE CURSOS ===== */
.courses-list {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;   /* 🔥 ESSENCIAL */
    text-align: center;    /* 🔥 TÍTULO CENTRALIZADO */
}

.course-image {
    width: 100%;
    display: flex;
    justify-content: center;
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.course-content p {
    font-size: 0.95rem;
    color: #666;
    flex-grow: 1;
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.course-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.btn-course {
    background: #0a58ca;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-course:hover {
    background: #084298;
}


.courses-trust h2 {
    text-align: center;
    margin: 20px;
    font-size: 1.8rem;
    margin-bottom: 15px;
    
}

.courses-trust p {
    text-align: center;
    font-size: 1rem;
    color: #f3eeee;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .courses-intro h1 {
        font-size: 1.8rem;
    }

    .course-image img {
        height: 180px;
    }

    .course-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .btn-course {
        width: 100%;
        text-align: center;
    }
}
/* ===============================
   CORREÇÕES MOBILE – CARROSSEL
   =============================== */
@media (max-width: 768px) {

  /* 🔒 Evita desalinhamento geral (100vw escondido) */
  html, body {
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
  }

  /* ===============================
     CARROSSEL
     =============================== */
  .carousel-container-cliente {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 12px;
    -webkit-overflow-scrolling: touch;
  }

  /* 1 feedback por vez */
  .feedback-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    height: auto;
  }

  /* 📏 Altura dinâmica correta */
  .feedback-card p {
    flex-grow: 1;
  }

  /* ===============================
     BOTÕES PREV / NEXT
     =============================== */
  .nav-button-cliente {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    z-index: 10;
  }

  .nav-button-cliente.prev {
    left: 6px;
  }

  .nav-button-cliente.next {
    right: 6px;
  }
}
/* ===============================
   CORREÇÃO ALINHAMENTO - PILARES
   =============================== */
@media (max-width: 768px) {

  .pilares-section {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .pilares-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

}
/* =========================================================
   CORREÇÃO DEFINITIVA MOBILE
   NÃO ALTERA ESTRUTURA ORIGINAL
   ========================================================= */
@media (max-width: 768px) {

  /* ---------------------------------------------------------
     BLINDAGEM GLOBAL (evita vazamento lateral)
     --------------------------------------------------------- */
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* ---------------------------------------------------------
     SEÇÕES – alinhamento com fundo
     --------------------------------------------------------- */
  section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* ---------------------------------------------------------
     CONTAINERS REAIS DO PROJETO
     (não usar div genérico)
     --------------------------------------------------------- */
  .container,
  .container-sobre,
  .container-cliente {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* ---------------------------------------------------------
     HERO / SOBRE (prevenção de 100vw escondido)
     --------------------------------------------------------- */
  .hero-sobre {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* ---------------------------------------------------------
     PILARES – CORREÇÃO DE DESALINHAMENTO
     --------------------------------------------------------- */
  .pilares-section {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .pilares-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* ---------------------------------------------------------
     CARROSSEL – MOBILE FIRST
     1 feedback por vez
     --------------------------------------------------------- */
  .carousel-container-cliente {
    width: 100%;
    max-width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    box-sizing: border-box;
  }

  .feedback-card {
    flex: 0 0 100%;
    min-width: auto;
    max-width: auto;
    scroll-snap-align: center;
    box-sizing: border-box;
  }

  /* ---------------------------------------------------------
     ALTURA DINÂMICA DOS FEEDBACKS
     --------------------------------------------------------- */
  .feedback-card {
    height: auto;
  }

  /* ---------------------------------------------------------
     BOTÕES PREV / NEXT – ALINHADOS NO MOBILE
     --------------------------------------------------------- */
  .nav-button-cliente {
    width: 38px;
    height: 38px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-button-cliente.prev {
    left: 6px;
  }

  .nav-button-cliente.next {
    right: 6px;
  }
/* =====================================================
   FEEDBACK – NOME E FUNÇÃO ABAIXO DA FOTO (MOBILE)
   ===================================================== */
@media (max-width: 768px) {

  .client-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .client-avatar {
    margin: 0;
  }

  .client-details {
    align-items: center;
  }

  .client-details h3 {
    margin: 0;
  }

  .client-details p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
  }
  

}

}


         
        
        