/* --- Variáveis e Reset --- */
        :root {
            /* --primary-color: #8CFF00; */
            /*  --primary-color: #33820E; */
            --primary-color: #60C840;
            --bg-dark: #0a0a0a;
            --bg-card: #141414;
            --text-light: #ffffff;
            --text-gray: #b3b3b3;
            --transition: all 0.3s ease;
            --container-width: 1200px;
            --topbar-height: 40px;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* --- CLASSE UTILITÁRIA DE CONTAINER --- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        /* --- NOVA: TOP BAR (Barra de Contatos) --- */
        .top-bar {
            background-color: #050505;
            height: var(--topbar-height);
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 1002;
            border-bottom: 1px solid #1a1a1a;
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            transition: opacity 0.5s ease, transform 0.5s ease;
            opacity: 1;
            transform: translateY(0);
        }

        .top-bar.hidden {
            opacity: 0;
            transform: translateY(-100%);
            pointer-events: none;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .top-bar-left,
        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .social-icons a {
            margin-right: 15px;
            color: #ccc;
            transition: var(--transition);
        }

        .social-icons a:hover {
            color: var(--primary-color);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #ddd;
            font-weight: 600;
        }

        .contact-info-item i {
            color: #fff;
            font-size: 0.9rem;
        }

        .contact-info-item span {
            letter-spacing: 0.5px;
        }

        .contact-info-item:hover {
            color: var(--primary-color);
        }

        .contact-info-item:hover i {
            color: var(--primary-color);
        }

        /* --- Header & Nav (Ajustado) --- */
        header {
            background: rgba(10, 10, 10, 0.95);
            position: fixed;
            width: 100%;
            top: var(--topbar-height);
            z-index: 1000;
            border-bottom: 1px solid #222;
            height: var(--header-height);
            display: flex;
            align-items: center;
            backdrop-filter: blur(10px);
            transition: top 0.3s ease;
        }

        header.top-bar-hidden {
            top: 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            position: relative;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--primary-color);
        }

        /* Menu Desktop */
        .desktop-nav {
            display: flex;
        }

        .desktop-nav ul {
            display: flex;
            gap: 2rem;
        }

        .desktop-nav a {
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
        }

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

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

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

        /* Menu Mobile (Sanduíche) */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1003;
            padding: 0.5rem;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1001;
            padding: 5rem 2rem 2rem;
            transition: right 0.4s ease;
            border-left: 1px solid #222;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-menu a {
            font-size: 1.2rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.5rem 0;
            display: block;
            border-bottom: 1px solid #222;
            transition: var(--transition);
        }

        .mobile-menu a:hover {
            color: var(--primary-color);
            padding-left: 0.5rem;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* --- Hero Section com Carousel Customizado --- */
        .hero {
            height: 90vh;
            position: relative;
            margin-top: calc(var(--topbar-height) + var(--header-height));
        }

        .hero-carousel {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .carousel-slides {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        .slide-content {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 900px;
            padding: 40px 20px;
            width: 100%;
        }

        .slide h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            font-weight: 800;
            line-height: 1.2;
        }

        .slide p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
            font-weight: 500;
        }

        /* Botão do Carousel */
        .btn {
            padding: 1rem 2.5rem;
            background-color: transparent;
            color: var(---text-light);
            font-weight: 700;
            border-radius: 5px;
            text-transform: uppercase;
            transition: var(--transition);
            border: 2px solid var(--text-light);
            cursor: pointer;
            display: inline-block;
            letter-spacing: 1px;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            background-color: rgba(140, 255, 0, 0.1);
            color: var(--primary-color);
            box-shadow: 0 0 15px rgba(140, 255, 0, 0.3);
            transform: translateY(-3px);
        }

        /* Botão Secundário */
        .btn-secondary {
            background-color: transparent;
            color: var(---text-light);
            border: 2px solid var(--text-light);
        }

        .btn-secondary:hover {
            background-color: rgba(140, 255, 0, 0.9);
            color: #000;
            box-shadow: 0 0 20px rgba(140, 255, 0, 0.5);
        }

        /* Controles do Carousel */
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .carousel-control:hover {
            background-color: var(--primary-color);
            color: #000;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control.prev {
            left: 30px;
        }

        .carousel-control.next {
            right: 30px;
        }

        /* Indicadores do Carousel */
        .carousel-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .indicator.active {
            background-color: var(--primary-color);
            transform: scale(1.3);
            border-color: white;
        }

        .indicator:hover {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }

        /* --- Seção Sobre (Nova) --- */
        #about {
            padding: 6rem 0;
            background-color: #0f0f0f;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--text-gray);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid #333;
            transition: var(--transition);
        }

        .about-image img:hover {
            transform: scale(1.02);
            border-color: var(--primary-color);
        }

        /* --- Serviços --- */
        .services {
            padding: 6rem 0;
            background-color: var(--bg-dark);
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .section-title .line {
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            margin: 0 auto;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .card {
            background: var(--bg-card);
            padding: 2.5rem;
            border-radius: 10px;
            border: 1px solid #222;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .card p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* --- Por que escolher --- */
        .why-us {
            padding: 6rem 0;
            background-color: #0f0f0f;
        }

        .why-us-wrapper {
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .why-us-img {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background: #222;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #333;
            position: relative;
        }

        .why-us-img::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            z-index: 1;
            opacity: 0.3;
        }

        .why-us-text {
            flex: 1;
            min-width: 300px;
        }

        .why-us-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .why-us-text p {
            margin-bottom: 1.5rem;
            color: var(--text-gray);
        }

        /* --- Contato --- */
        .contact {
            padding: 6rem 0;
            text-align: center;
            background-color: var(--bg-dark);
        }

        .contact-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            border: 2px solid #333;
            padding: 1.5rem;
            border-radius: 50%;
            background: #111;
            transition: var(--transition);
        }

        .contact-item:hover i {
            border-color: var(--primary-color);
            box-shadow: 0 0 15px rgba(140, 255, 0, 0.2);
        }

        /* --- Novo Rodapé --- */
        .main-footer {
            background-color: #050505;
            padding: 4rem 0 2rem;
            border-top: 1px solid #222;
        }

        .footer-container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 4rem;
        }

        .footer-about h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            /* color: var(--primary-color); */
            color: var(--text-light);
        }

        .footer-about p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-links h4,
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            /* color: var(--primary-color); */
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links a {
            color: var(--text-gray);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 0.8rem;
            color: var(--primary-color);
        }

        .footer-contact ul {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-contact li {
            color: var(--text-gray);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-contact i {
            color: var(--primary-color);
            margin-top: 3px;
            font-size: 1rem;
        }

        .footer-contact a {
            color: var(--text-gray);
            transition: var(--transition);
        }

        .footer-contact a:hover {
            color: var(--primary-color);
        }

        .hours {
            font-size: 0.9rem;
            color: #888;
            margin-top: 0.3rem;
            display: block;
        }

        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #222;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
        }

        /* --- Footer Responsivo --- */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }

            .footer-about {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {

            /* Esconde a Top Bar no Mobile para economizar espaço */
            .top-bar {
                display: none;
            }

            /* Header volta para o topo absoluto */
            header {
                top: 0;
            }

            /* Ajuste do hero para mobile */
            .hero {
                margin-top: var(--header-height);
                height: 75vh;
            }

            .slide h1 {
                font-size: 2.2rem;
            }

            .slide p {
                font-size: 1.1rem;
            }

            .carousel-control {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .carousel-control.prev {
                left: 15px;
            }

            .carousel-control.next {
                right: 15px;
            }

            .carousel-indicators {
                bottom: 20px;
            }

            /* Menu Mobile */
            .mobile-menu-toggle {
                display: block;
            }

            .desktop-nav {
                display: none;
            }

            /* Ajustes da seção Sobre */
            .about-content {
                flex-direction: column;
                gap: 3rem;
            }

            .about-text,
            .about-image {
                min-width: 100%;
            }

            /* Footer */
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-about {
                grid-column: span 1;
            }

            /* About e Why Us */
            .why-us-wrapper {
                flex-direction: column;
            }

            .container {
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 65vh;
            }

            .slide h1 {
                font-size: 1.8rem;
            }

            .slide p {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .carousel-control {
                display: none;
            }

            .section-title h2,
            .about-text h2 {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .main-footer {
                padding: 3rem 0 1.5rem;
            }

            .footer-container {
                padding: 0 1.5rem;
            }

            .btn {
                padding: 0.8rem 2rem;
                font-size: 0.8rem;
            }

            #h2ti {
                font-size: 2rem;
                font-weight: 800;
                margin-bottom: 20px;
                color: white;
            }


            #solutions {
                color: var(--primary);
            }

            #about {
                padding: 4rem 0;
            }
        }
