/* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f8faff;
            color: #1e2a3a;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== BOTÃO ===== */
        .btn-primary {
            display: inline-block;
            background: #2c3e8f;
            color: #fff;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 12px rgba(44, 62, 143, 0.3);
        }

        .btn-primary:hover {
            background: #1e2a6a;
            transform: translateY(-3px);
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: #2c3e8f;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid #2c3e8f;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #2c3e8f;
            color: #fff;
        }

        .btn-success {
            display: inline-block;
            background: #0d7c4a;
            color: #fff;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 12px rgba(13, 124, 74, 0.3);
        }

        .btn-success:hover {
            background: #0a5f38;
            transform: translateY(-3px);
        }

        /* ===== HEADER / NAVBAR ===== */
        header {
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e8f;
        }

        .logo img,
        .footer-logo img {
            max-height: 48px;
            width: auto;
            display: block;
        }

        .logo i {
            font-size: 2.2rem;
            color: #0d7c4a;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            font-weight: 500;
        }

        .nav-links a {
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #2c3e8f;
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: #2c3e8f;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: #2c3e8f;
            color: #fff !important;
            padding: 10px 22px;
            border-radius: 50px;
            font-weight: 600;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: #1e2a6a !important;
            color: #fff !important;
        }

        /* Menu hamburguer (mobile) */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #1e2a3a;
        }

        /* ===== HERO ===== */
        .hero {
            padding: 80px 0 60px;
            background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: #2c3e8f;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #4a5a6a;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image i {
            font-size: 18rem;
            color: #2c3e8f;
            opacity: 0.9;
            filter: drop-shadow(0 10px 20px rgba(44, 62, 143, 0.2));
        }

        /* ===== SERVIÇOS ===== */
        .services {
            padding: 80px 0;
            background: #ffffff;
        }

        .section-title {
            text-align: center;
            font-size: 2.6rem;
            margin-bottom: 16px;
        }

        .section-sub {
            text-align: center;
            font-size: 1.1rem;
            color: #4a5a6a;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: #f8faff;
            padding: 40px 28px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e9eff6;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(44, 62, 143, 0.08);
            border-color: #b3c4e0;
        }

        .service-card i {
            font-size: 3.2rem;
            margin-bottom: 20px;
        }

        .service-card:nth-child(1) i { color: #2c3e8f; }
        .service-card:nth-child(2) i { color: #0d7c4a; }
        .service-card:nth-child(3) i { color: #d97706; }
        .service-card:nth-child(4) i { color: #7c3aed; }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .service-card p {
            color: #4a5a6a;
        }

        /* ===== DIFERENCIAIS ===== */
        .diferenciais {
            background: #eef2ff;
            padding: 80px 0;
        }

        .diferenciais-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .diferencial-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: #fff;
            padding: 24px 28px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }

        .diferencial-item i {
            font-size: 2.2rem;
            color: #0d7c4a;
        }

        .diferencial-item span {
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* ===== FORMULÁRIO DE CONTATO ===== */
        .contato {
            padding: 80px 0;
            background: #ffffff;
        }

        .contato-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 40px;
        }

        .contato-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contato-info h3 {
            font-size: 2rem;
            color: #2c3e8f;
            margin-bottom: 16px;
        }

        .contato-info p {
            color: #4a5a6a;
            margin-bottom: 24px;
        }

        .contato-detalhe {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .contato-detalhe i {
            width: 40px;
            height: 40px;
            background: #eef2ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c3e8f;
            font-size: 1.2rem;
        }

        .contato-form {
            background: #f8faff;
            padding: 40px;
            border-radius: 24px;
            border: 1px solid #e9eff6;
        }

        .contato-form .form-group {
            margin-bottom: 20px;
        }

        .contato-form label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1e2a3a;
        }

        .contato-form input,
        .contato-form select,
        .contato-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e9eff6;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s ease;
            background: #fff;
        }

        .contato-form input:focus,
        .contato-form select:focus,
        .contato-form textarea:focus {
            outline: none;
            border-color: #2c3e8f;
        }

        .contato-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contato-form .btn-primary {
            width: 100%;
            text-align: center;
        }

        /* ===== DEPOIMENTOS ===== */
        .depoimentos {
            background: #f8faff;
            padding: 80px 0;
        }

        .depo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .depo-card {
            background: #fff;
            padding: 32px 28px;
            border-radius: 20px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
        }

        .depo-card i {
            color: #d97706;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }

        .depo-card p {
            font-style: italic;
            color: #1e2a3a;
        }

        .depo-card .autor {
            margin-top: 16px;
            font-weight: 600;
            color: #2c3e8f;
        }

        /* ===== CERTIFICACOES ===== */
        .certificacoes {
            background: #ffffff;
            padding: 60px 0;
            border-top: 1px solid #e9eff6;
            border-bottom: 1px solid #e9eff6;
        }

        .cert-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .cert-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            color: #4a5a6a;
        }

        .cert-item i {
            font-size: 2.5rem;
            color: #2c3e8f;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #1e2a3a;
            color: #cbd5e0;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
        }

        .footer-logo img {
            filter: brightness(0) invert(1);
            opacity: .55;
        }

        .footer-logo i {
            color: #0d7c4a;
            margin-right: 10px;
        }

        .footer-desc {
            max-width: 300px;
            margin-top: 12px;
            color: #94a3b8;
        }

        .footer-social {
            margin-top: 20px;
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            background: #2d3a4a;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
            color: #cbd5e0;
        }

        .footer-social a:hover {
            background: #2c3e8f;
            color: #fff;
        }

        .footer-col h4 {
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #94a3b8;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid #2d3a4a;
            padding-top: 24px;
            text-align: center;
            font-size: 0.9rem;
            color: #94a3b8;
        }

        /* ===== RESPONSIVO ===== */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content p {
                margin: 0 auto 30px;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-image i {
                font-size: 12rem;
            }
            .contato-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 16px;
                padding: 20px 0;
                background: #fff;
                border-top: 1px solid #e9eff6;
                margin-top: 16px;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .hero-content h1 {
                font-size: 2.4rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .diferencial-item {
                padding: 16px 20px;
            }
            .cert-grid {
                gap: 30px;
            }
            .contato-form {
                padding: 24px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .btn-primary, .btn-secondary, .btn-success {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
            .hero-image i {
                font-size: 8rem;
            }
        }

        /* ===== HERO ===== */
        .hero-detalhe {
            padding: 60px 0 40px;
            background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
        }

        .hero-detalhe .voltar {
            margin-bottom: 30px;
        }

        .hero-detalhe h1 {
            font-size: 3rem;
            margin-bottom: 12px;
        }

        .hero-detalhe h1 span {
            color: #2c3e8f;
        }

        .hero-detalhe .subtitle {
            font-size: 1.2rem;
            color: #4a5a6a;
            max-width: 700px;
        }

        .hero-detalhe .meta-info {
            display: flex;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .hero-detalhe .meta-info span {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #4a5a6a;
            font-weight: 500;
        }

        .hero-detalhe .meta-info i {
            color: #2c3e8f;
        }

        /* ===== CONTEÚDO ===== */
        .conteudo-servico {
            padding: 60px 0 80px;
            background: #ffffff;
        }

        .conteudo-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
        }

        .conteudo-principal h2 {
            font-size: 2rem;
            color: #1e2a3a;
            margin: 40px 0 16px;
        }

        .conteudo-principal h2:first-child {
            margin-top: 0;
        }

        .conteudo-principal h3 {
            font-size: 1.3rem;
            color: #2c3e8f;
            margin: 24px 0 12px;
        }

        .conteudo-principal p {
            color: #4a5a6a;
            margin-bottom: 16px;
        }

        .conteudo-principal ul {
            list-style: none;
            margin: 16px 0 24px;
        }

        .conteudo-principal ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid #e9eff6;
        }

        .conteudo-principal ul li:last-child {
            border-bottom: none;
        }

        .conteudo-principal ul li i {
            color: #0d7c4a;
            font-size: 1.2rem;
            width: 24px;
        }

        .conteudo-principal .destaque-box {
            background: #f8faff;
            border-left: 4px solid #2c3e8f;
            padding: 24px 28px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }

        .conteudo-principal .destaque-box strong {
            color: #2c3e8f;
        }

        .conteudo-principal .destaque-box p {
            margin-bottom: 0;
        }

        .conteudo-principal .img-placeholder {
            background: #eef2ff;
            border-radius: 16px;
            padding: 60px 20px;
            text-align: center;
            margin: 30px 0;
            color: #2c3e8f;
        }

        .conteudo-principal .img-placeholder i {
            font-size: 4rem;
            margin-bottom: 16px;
            display: block;
        }

        /* ===== SIDEBAR ===== */
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }

        .sidebar-card {
            background: #f8faff;
            border-radius: 20px;
            padding: 32px;
            border: 1px solid #e9eff6;
            margin-bottom: 24px;
        }

        .sidebar-card h4 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            color: #1e2a3a;
        }

        .sidebar-card ul {
            list-style: none;
        }

        .sidebar-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid #e9eff6;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sidebar-card ul li:last-child {
            border-bottom: none;
        }

        .sidebar-card ul li i {
            color: #0d7c4a;
            width: 20px;
        }

        .sidebar-card .btn-primary {
            width: 100%;
            text-align: center;
            margin-top: 8px;
        }

        .sidebar-card .btn-secondary {
            width: 100%;
            text-align: center;
            margin-top: 8px;
        }

        .sidebar-card .preco {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e8f;
            margin: 8px 0 4px;
        }

        .sidebar-card .preco small {
            font-size: 1rem;
            font-weight: 400;
        }

        .sidebar-card .desc-preco {
            color: #4a5a6a;
            margin-bottom: 16px;
        }

        .btn-back {
            display: inline-block;
            background: #eef2ff;
            color: #2c3e8f;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-back:hover {
            background: #2c3e8f;
            color: #fff;
        }

        /* ===== HERO SERVIÇOS ===== */
        .hero-servicos {
            padding: 80px 0 60px;
            background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%);
            text-align: center;
        }

        .hero-servicos h1 {
            font-size: 3.2rem;
            margin-bottom: 16px;
        }

        .hero-servicos h1 span {
            color: #2c3e8f;
        }

        .hero-servicos p {
            font-size: 1.2rem;
            color: #4a5a6a;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* ===== DETALHES DOS SERVIÇOS ===== */
        .detalhe-servico {
            padding: 80px 0;
            background: #ffffff;
            border-bottom: 1px solid #e9eff6;
        }

        .detalhe-servico:nth-child(even) {
            background: #f8faff;
        }

        .detalhe-servico:last-child {
            border-bottom: none;
        }

        .detalhe-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .detalhe-grid.reverse {
            direction: rtl;
        }

        .detalhe-grid.reverse > * {
            direction: ltr;
        }

        .detalhe-icon {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .detalhe-icon i {
            font-size: 12rem;
            opacity: 0.9;
            filter: drop-shadow(0 10px 20px rgba(44, 62, 143, 0.15));
        }

        .detalhe-conteudo h2 {
            font-size: 2.4rem;
            margin-bottom: 12px;
            color: #1e2a3a;
        }

        .detalhe-conteudo h2 span {
            color: #2c3e8f;
        }

        .detalhe-conteudo .sub-titulo {
            font-size: 1.1rem;
            color: #4a5a6a;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .detalhe-conteudo p {
            color: #4a5a6a;
            margin-bottom: 16px;
        }

        .detalhe-lista {
            list-style: none;
            margin: 20px 0 30px;
        }

        .detalhe-lista li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid #e9eff6;
        }

        .detalhe-lista li:last-child {
            border-bottom: none;
        }

        .detalhe-lista li i {
            color: #0d7c4a;
            font-size: 1.2rem;
            width: 24px;
        }

        .detalhe-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 8px;
        }