        /* ---------- RESET & GLOBAL ---------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #013750;
            --primary-dark: #002a3d;
            --primary-light: #1e5a7a;
            --secondary: #f8f9fa;
            --gray-light: #f1f5f9;
            --gray-dark: #1e1e1e;
            --text-dark: #1e293b;
            --text-muted: #475569;
            --white: #ffffff;
            --whatsapp: #25d366;
            --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 88px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.5;
            overflow-x: hidden;
        }

        h1, h2, h3, .logo-text, .section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ---------- TOP BAR (REDES SOCIAIS) ---------- */
        .top-bar {
            background-color: var(--gray-dark);
            color: var(--white);
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar .container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 20px;
        }

        .social-icon {
            color: var(--white);
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .social-icon:hover {
            background-color: var(--whatsapp);
            transform: translateY(-2px);
            color: white;
        }

        .social-icon.instagram:hover {
            background: linear-gradient(45deg, #f09433, #d62976);
        }

        /* ---------- MAIN NAVBAR ---------- */
        .main-nav {
            background: var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 24px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo-area img {
            max-height: 64px;
            border-radius: 10px;
            transition: var(--transition);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-link {
            color: white;
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 0;
            position: relative;
            letter-spacing: 0.3px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: white;
            transition: width 0.25s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }

        /* ---------- HERO SECTION (com overlay e imagem) ---------- */
        .hero {
            background: linear-gradient(105deg, rgba(0,0,0,0.8) 0%, rgba(1,55,80,0.85) 100%), 
                        url('https://admin.cnnbrasil.com.br/wp-content/uploads/sites/12/2022/01/hunters-race-MYbhN8KaaEc-unsplash.jpg?w=1200&h=900&crop=0');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 0;
            color: white;
        }

        .hero-card {
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(2px);
            border-radius: 24px;
            padding: 48px 40px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(1,55,80,0.2);
        }

        .hero-card h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .hero-sub {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-dark);
            border-bottom: 2px solid var(--primary);
            display: inline-block;
            padding-bottom: 4px;
            margin-bottom: 24px;
        }

        .hero-description {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.6;
            margin: 20px 0 28px;
        }

        .btn-primary-custom {
            background-color: var(--primary);
            color: white;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 48px;
            display: inline-block;
            font-size: 1rem;
            border: 2px solid transparent;
            transition: var(--transition);
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }

        .btn-primary-custom:hover {
            background-color: transparent;
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Seções padrão */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 48px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title span {
            background: white;
            padding: 0 20px;
            display: inline-block;
        }

        .title-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .title-decoration .line {
            height: 2px;
            background: var(--primary);
            width: 50px;
        }

        /* ITEM LIST (cards alinhados) */
        .items-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 20px;
        }

        .service-card {
            border-left: 4px solid var(--primary);
            background: var(--white);
            padding: 24px 20px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .service-card h3 {
            font-size: 1.35rem;
            color: var(--primary);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .city-badge {
            background: var(--gray-light);
            border-radius: 40px;
            padding: 8px 20px;
            font-weight: 500;
            color: var(--primary-dark);
            transition: 0.2s;
            text-align: center;
        }

        .city-badge:hover {
            background: var(--primary);
            color: white;
        }

        .differential-card {
            text-align: center;
            padding: 28px 16px;
            background: var(--gray-light);
            border-radius: 28px;
            transition: var(--transition);
        }

        .differential-card i {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .differential-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
        }

        /* Artigos */
        .article-link {
            display: flex;
            border-left: 4px solid var(--primary);
            padding: 20px;
            background: white;
            border-radius: 20px;
            transition: var(--transition);
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
        }

        .article-link:hover {
            transform: translateX(6px);
            background: #fefefe;
            box-shadow: var(--shadow-md);
        }

        .article-link h4 {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        /* CONTATO SECTION */
        .contact-section {
            background: var(--primary);
            padding: 60px 0;
        }

        .contact-wrapper {
            background: rgba(255,255,255,0.98);
            border-radius: 32px;
            padding: 48px 40px;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .contact-form input, 
        .contact-form textarea {
            width: 100%;
            border: 1.5px solid #e2e8f0;
            border-radius: 16px;
            padding: 14px 18px;
            font-family: 'Inter', sans-serif;
            transition: 0.2s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(1,55,80,0.2);
        }

        .social-row {
            display: flex;
            gap: 20px;
            margin-top: 24px;
        }

        .social-circle {
            width: 56px;
            height: 56px;
            background: var(--gray-light);
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .social-circle:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }

        /* Float WhatsApp */
        .float-wpp {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: var(--whatsapp);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
            box-shadow: 0 4px 14px rgba(0,0,0,0.2);
            transition: 0.2s;
        }

        .float-wpp:hover {
            transform: scale(1.08);
            background: #20b859;
        }

        .badge-notification {
            position: absolute;
            top: -6px;
            right: -6px;
            background: red;
            color: white;
            font-size: 12px;
            font-weight: bold;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.95); opacity: 0.9; }
            70% { transform: scale(1.1); opacity: 0.6; }
            100% { transform: scale(0.95); opacity: 0.9; }
        }

        /* Footer */
        .footer {
            background: var(--gray-dark);
            padding: 32px 0;
            color: #ccc;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .nav-links {
                gap: 20px;
            }
            .hero-card h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 88px;
                left: -100%;
                flex-direction: column;
                background: var(--primary);
                width: 80%;
                height: calc(100vh - 88px);
                padding: 40px 28px;
                gap: 28px;
                transition: 0.3s ease-in-out;
                box-shadow: 2px 0 12px rgba(0,0,0,0.1);
                z-index: 999;
            }
            .nav-links.active {
                left: 0;
            }
            .section-padding {
                padding: 60px 0;
            }
            .hero-card {
                padding: 32px 20px;
            }
            .items-grid {
                grid-template-columns: 1fr;
            }
            .contact-wrapper {
                padding: 32px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-card h1 {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
        }
