        /* Reset e configurações gerais */
        :root {
            --primary: #0066cc;
            --primary-dark: #0052a3;
            --secondary: #00a859;
            --secondary-dark: #008e4a;
            --accent: #ff6b35;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --max-width: 1200px;
            --footer-bg: #023882;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #ffffff;
        }

        .container1 {
            background-color: #023882;
            width: 100%;
            max-width: auto;
            margin: 0 auto;
            padding: 0 20px;
        }

        img, video {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            margin: 0 auto;
            border-radius: 2px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: white;
            border-radius: var(--radius);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background-color: var(--secondary);
        }

        .btn-secondary:hover {
            background-color: var(--secondary-dark);
        }

        /* Header */
        header {
            background-color: var(--footer-bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: auto;
            margin: 0 auto;
        }

        .logo-container {
            flex-shrink: 0;
        }

        .logo-container img {
            height: 50px;
            width: auto;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 30px;
            flex-direction: column;
            justify-content: space-between;
            padding: 0;
            z-index: 1001;
        }

        .hamburger .line {
            width: 100%;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: var(--transition);
        }

        .hamburger.active .line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active .line:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .line:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        nav {
            flex-grow: 1;
            display: flex;
            justify-content: flex-end;
        }

        .menu-nav {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-link {
            font-weight: 600;
            color: white;
            padding: 8px 0;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: white;
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .has-submenu {
            position: relative;
        }

        .has-submenu:hover .submenu-container {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu-container {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: var(--shadow);
            border-radius: var(--radius);
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
        }

        .submenu {
            padding: 15px 0;
        }

        .submenu li {
            padding: 0;
        }

        .submenu a {
            display: block;
            padding: 10px 20px;
            color: var(--dark);
            transition: var(--transition);
        }

        .submenu a:hover {
            background-color: var(--light-gray);
            color: var(--primary);
        }

        /* Hero Section - NOVA */
        .hero {
            position: relative;
            height: 80vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            overflow: hidden;
            margin-top: 80px;
            margin-bottom: 80px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(rgba(2, 56, 130, 0.85), rgba(0, 86, 179, 0.8)), url('img/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Parcerias */
        .partnerships {
            padding: 80px 0;
            background-color: var(--light);
        }

        .partnership-card {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background-color: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 60px;
        }

        .partnership-media {
            flex: 1;
            min-width: 300px;
            overflow: hidden;
            position: relative;
        }

        .partnership-video, .partnership-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            transform-origin: center center;
        }

        /* Efeito de zoom nas imagens e vídeos */
        .partnership-media:hover .partnership-video,
        .partnership-media:hover .partnership-image {
            transform: scale(1.1);
        }

        /* Efeito de overlay ao passar o mouse */
        .partnership-media::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 56, 130, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .partnership-media:hover::after {
            opacity: 1;
        }

        .partnership-content {
            flex: 1;
            min-width: 300px;
            padding: 40px;
        }

        .partnership-content h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .partnership-content p {
            margin-bottom: 20px;
            color: var(--dark);
        }

        .highlight {
            background-color: rgba(0, 102, 204, 0.1);
            padding: 20px;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            margin: 25px 0;
        }

        .partnership-list {
            margin: 20px 0;
        }

        .partnership-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }

        .partnership-list li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }

        .partnership-reverse {
            flex-direction: row-reverse;
        }

        /* Footer - NOVO COM COR #023882 */
        footer {
            background-color: var(--footer-bg);
            color: white;
            padding-top: 60px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
            margin-bottom: 15px;
            filter: brightness(0) invert(1);
        }

        .footer-logo p {
            font-size: 1rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-item h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-item h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--secondary);
            bottom: 0;
            left: 0;
        }

        .footer-item ul li {
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-item ul li a {
            color: rgba(255, 255, 255, 0.9);
            transition: var(--transition);
        }

        .footer-item ul li a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            transition: var(--transition);
            color: white;
        }

        .social-icon:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
            color: white;
        }

        .copyright {
            text-align: center;
            padding: 25px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(2, 56, 130, 0.95);
            color: white;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 20px;
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .texto-banner {
            flex: 1;
            min-width: 250px;
            margin: 0;
            color: white;
        }

        .cookie-btn {
            padding: 10px 25px;
            border-radius: var(--radius);
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .cookie-btn.accept {
            background-color: var(--secondary);
            color: white;
        }

        .cookie-btn.accept:hover {
            background-color: var(--secondary-dark);
        }

        .cookie-btn.decline {
            background-color: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .cookie-btn.decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .section-title h2 {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero {
                height: 70vh;
                min-height: 500px;
            }

            .hamburger {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: var(--footer-bg);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 80px;
                transition: var(--transition);
                z-index: 1000;
            }

            nav.active {
                right: 0;
            }

            .menu-nav {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }

            .menu-nav li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-link {
                display: block;
                padding: 15px 20px;
            }

            .has-submenu .submenu-container {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: rgba(255, 255, 255, 0.05);
                border-radius: 0;
                display: none;
            }

            .has-submenu.active .submenu-container {
                display: block;
            }

            .submenu a {
                padding-left: 40px;
                color: white;
            }
            
            .submenu a:hover {
                background-color: rgba(255, 255, 255, 0.1);
                color: white;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 60px 20px;
                height: 60vh;
                min-height: 400px;
                margin-bottom: 60px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }

            .partnership-card {
                flex-direction: column;
            }

            .partnership-content {
                padding: 30px 20px;
            }

            .section-padding {
                padding: 60px 0;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero {
                height: 50vh;
                min-height: 350px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-btn {
                width: 100%;
            }
        }