 /* === BARRA DE CONTATOS LARANJA === */
        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #EE8918;
            padding: 0.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #fff;
            z-index: 1001; /* Maior que o header */
            height: 36px;
            box-sizing: border-box;
        }

        .contact-info {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            height: 100%;
        }

        .contact-info a {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            height: 100%;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        .social-icons {
            display: flex;
            gap: 0.8rem;
            align-items: center;
            height: 100%;
        }

        .social-icons a {
            color: #fff;
            text-decoration: none;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            height: 100%;
        }

        .social-icons a:hover {
            transform: translateY(-2px);
        }

        /* === HEADER ESTILO FAST TORC === */
        .main-header {
            position: fixed;
            top: 36px; /* Ajustado para considerar a altura da barra de contatos */
            left: 0;
            width: 100%;
            background: #000;
            z-index: 1000;
            box-shadow: 0 4px 8px rgba(0,0,0,0.4);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.4rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }

        /* === LOGO === */
        .header-logo img {
            max-height: 100%;
            width: 110px;
            display: block;
        }

        /* === MENU LINKS === */
        .header-links {
            list-style: none;
            display: flex;
            gap: 1.8rem;
            margin: 0;
            padding: 0;
        }

        .header-links li a {
            color: #fff;
            font-size: 1rem;
            font-weight: 500;
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }

        .header-links li a::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            height: 2px;
            width: 0;
            background: #F07D00;
            transition: 0.3s ease;
        }

        .header-links li a:hover {
            color: #F07D00;
        }

        .header-links li a:hover::after {
            width: 100%;
        }

        /* === HAMBURGER === */
        .header-hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            width: 30px;
            height: 24px;
        }

        .header-hamburger span {
            width: 100%;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: 0.3s;
        }

        .header-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .header-hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .header-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* === RESPONSIVO === */
        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                gap: 0.5rem;
                padding: 0.5rem 1rem;
                height: auto;
            }
            
            .contact-info {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
            }
            
            .header-container {
                padding: 1rem 1.5rem;
            }

            .header-logo img {
                max-height: 50px;
                width: auto;
            }

            .header-links {
                position: absolute;
                top: 100%;
                right: 0;
                background: #222;
                flex-direction: column;
                align-items: start;
                width: 250px;
                transform: translateX(100%);
                transition: transform 0.3s ease;
                padding: 1rem;
                box-shadow: 0 4px 8px rgba(0,0,0,0.4);
            }

            .header-links.active {
                transform: translateX(0);
            }

            .header-hamburger {
                display: flex;
            }
            
            .main-header {
                top: 70px; /* Ajustado para mobile considerando a barra de contatos */
            }
        }

        @media (max-width: 480px) {
            .contact-info {
                font-size: 0.8rem;
            }
            
            .contact-info a span {
                display: none; /* Esconde o texto, mostra apenas ícones em telas muito pequenas */
            }
            
            .header-container {
                padding: 1rem;
            }

            .header-logo img {
                max-height: 44px;
                width: auto;
            }

            .header-links {
                width: 100vw;
                right: -1rem;
            }
        }

      