
    :root {
        --primary-color: #021452;
        --secondary-color: #23c3f4;
        --menu-color: #ffffff;
        --white: #ffffff;
        --light-bg: #f8f9fa;
        --dark-text: #333333;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        color: var(--dark-text);
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
    }
    
    /* Header Styles */
    .top-bar {
        background-color: var(--secondary-color);
        padding: 10px 0;
        color: white;
        font-size: 14px;
    }
    
    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .top-contact-info {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .top-social-icons {
        display: flex;
        gap: 15px;
    }
    
    /* CORREÇÃO DO TOPBAR PARA MOBILE */
    @media (max-width: 767.98px) {
        .top-bar .container {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }
        
        .top-contact-info {
            justify-content: center;
            width: 100%;
            margin-bottom: 5px;
        }
        
        .top-social-icons {
            justify-content: center;
            width: 100%;
        }
        
        .top-contact-info span {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 5px 0;
        }
        
        .top-contact-info i.fa-envelope {
            margin-left: 15px;
        }
    }
    
    @media (max-width: 575.98px) {
        .top-contact-info {
            flex-direction: column;
            gap: 8px;
        }
        
        .top-contact-info span {
            justify-content: center;
        }
    }

    .header-container {
        display: flex;
        width: 100%;
    }
    
    .logo-area {
        background-color: var(--primary-color);
        width: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 0;
    }
    
    .logo-area img {
        max-height: 100px;
    }
    
    .menu-area {
        background-color: var(--menu-color);
        flex: 1;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: relative;
    }
    
    /* Navegação e submenus */
    .navbar-nav {
        position: relative;
    }
    
    .navbar-nav .nav-item {
        position: relative;
    }
    
    .navbar-nav .nav-link {
        color: var(--primary-color) !important;
        font-weight: 500;
        padding: 45px 20px;
        position: relative;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--secondary-color) !important;
    }
    
    .navbar-nav .nav-link:before {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--secondary-color);
        transition: width 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover:before {
        width: 100%;
    }
    
    /* Submenu styles - DESKTOP */
    .navbar-nav .dropdown-menu {
        display: none;
        position: absolute;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border: none;
        border-radius: 5px;
        padding: 10px 0;
        min-width: 200px;
        z-index: 1000;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    .navbar-nav .dropdown-menu .dropdown-item {
        padding: 10px 20px;
        color: var(--dark-text);
        transition: all 0.3s ease;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: var(--light-bg);
        color: var(--secondary-color);
        padding-left: 25px;
    }
    
    .contact-btn {
        background-color: var(--secondary-color);
        color: white !important;
        border-radius: 50px;
        padding: 10px 25px !important;
        margin-left: 15px;
        transition: all 0.3s ease;
    }
    
    .contact-btn:hover {
        background-color: var(--primary-color);
    }
    
    /* CORREÇÃO DO MENU MOBILE */
    @media (max-width: 991.98px) {
        .header-container {
            flex-direction: column;
        }
        
        .logo-area {
            width: 100%;
            padding: 15px;
        }
        
        /* Ajustes do menu mobile */
        .navbar-nav .nav-link {
            padding: 15px 20px !important;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .navbar-nav .dropdown-menu {
            position: static;
            float: none;
            width: 100%;
            margin-top: 0;
            background-color: rgba(0,0,0,0.03);
            box-shadow: none;
            border: none;
            border-radius: 0;
            display: none;
            opacity: 1;
            transform: none;
            transition: none;
            padding: 0;
        }
        
        /* Remove o hover effect no mobile */
        .navbar-nav .dropdown:hover .dropdown-menu {
            display: none;
        }
        
        /* Mostra o submenu quando tem a classe show (via Bootstrap) */
        .navbar-nav .dropdown-menu.show {
            display: block !important;
        }
        
        .navbar-nav .dropdown-menu .dropdown-item {
            padding: 12px 20px 12px 40px !important;
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }
        
        .navbar-nav .dropdown-menu .dropdown-item:hover {
            background-color: rgba(35, 195, 244, 0.1);
            padding-left: 45px !important;
        }
        
        /* Seta indicadora de submenu */
        .navbar-nav .dropdown-toggle::after {
            margin-left: 5px;
            vertical-align: middle;
            float: right;
            margin-top: 5px;
        }
        
        /* Ajuste do botão de contato no mobile */
        .contact-btn {
            margin: 15px 20px;
            display: block;
            text-align: center;
            width: calc(100% - 40px);
        }
    }
    
    @media (max-width: 767.98px) {
        .navbar-nav .nav-link {
            padding: 12px 20px !important;
        }
        
        .navbar-nav .dropdown-menu .dropdown-item {
            padding: 10px 20px 10px 35px !important;
        }
        
        .contact-btn {
            margin: 10px 15px;
            width: calc(100% - 30px);
        }
    }

    /* Banner Slider - Versão Final Responsiva */
    .banner-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .banner-slide {
        position: relative;
        min-height: 100vh;
        height: auto;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
    }

    .banner-content {
        position: relative;
        z-index: 2;
        color: white;
        width: 90%;
        max-width: 600px;
        padding: 2rem;
        margin: 20px;
        background: rgba(2, 20, 82, 0.8);
        border-radius: 10px;
        box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
    }

    /* Ajustes para desktop */
    @media (min-width: 992px) {
        .banner-slide {
            min-height: 80vh;
            height: 80vh;
            align-items: flex-start;
            justify-content: flex-end;
        }
        
        .banner-content {
            position: absolute;
            width: 600px;
            padding: 40px;
            top: 15%;
            right: 10%;
            left: auto;
            margin: 0;
        }
    }

    .banner-content-inner {
        text-align: left;
    }
    
    .slick-prev, .slick-next {
        width: 50px;
        height: 50px;
        z-index: 10;
    }
    
    .slick-prev {
        left: 25px;
    }
    
    .slick-next {
        right: 25px;
    }
    
    .slick-prev:before, .slick-next:before {
        font-size: 50px;
        color: white;
    }
    
    /* Services Section */
    .services-section {
        padding: 80px 0;
        background-color: var(--light-bg);
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title h2 {
        color: var(--primary-color);
        font-size: 2.5rem;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    
    .section-title h2:after {
        content: "";
        position: absolute;
        width: 80px;
        height: 3px;
        background-color: var(--secondary-color);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-card {
        background-color: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        margin-bottom: 30px;
        height: 100%;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }
    
    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .service-img {
        height: 200px;
        overflow: hidden;
    }
    
    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .service-card:hover .service-img img {
        transform: scale(1.1);
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-content h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }
    
    .read-more {
        color: var(--secondary-color);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }
    
    .read-more i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }
    
    .read-more:hover i {
        transform: translateX(5px);
    }
    
    /* About Section */
    .about-section {
        padding: 80px 0;
        background-color: white;
    }
    
    .about-img {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.8s ease;
    }
    
    .about-img.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    .about-img img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .about-content {
        padding-left: 40px;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.8s ease;
    }
    
    .about-content.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    .about-content h2 {
        color: var(--primary-color);
        margin-bottom: 20px;
    }
    
    .about-features {
        margin-top: 30px;
    }
    
    .feature-item {
        display: flex;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        flex: 0 0 50px;
        height: 50px;
        background-color: var(--secondary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 1.2rem;
    }
    
    .feature-text h4 {
        color: var(--primary-color);
        margin-bottom: 5px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 80px 0;
        background-color: var(--light-bg);
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin: 15px;
        position: relative;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }
    
    .testimonial-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .testimonial-card:before {
        content: """;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 4rem;
        color: rgba(35, 195, 244, 0.1);
        font-family: Georgia, serif;
        line-height: 1;
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .author-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
    }
    
    .author-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .author-info h5 {
        color: var(--primary-color);
        margin-bottom: 5px;
    }
    
    .author-info p {
        color: var(--secondary-color);
        font-size: 0.9rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 80px 0;
        background-color: white;
    }
    
    .contact-form {
        background-color: white;
        border-radius: 10px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }
    
    .contact-form.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .form-control {
        height: 50px;
        border-radius: 5px;
        border: 1px solid #ddd;
        margin-bottom: 20px;
    }
    
    textarea.form-control {
        height: 150px;
    }
    
    .form-control:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 0.2rem rgba(35, 195, 244, 0.25);
    }
    
    .contact-info {
        background-color: var(--primary-color);
        color: white;
        padding: 40px;
        border-radius: 10px;
        height: 100%;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }
    
    .contact-info.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .contact-info h3 {
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .contact-info h3:after {
        content: "";
        position: absolute;
        width: 50px;
        height: 2px;
        background-color: var(--secondary-color);
        bottom: 0;
        left: 0;
    }
    
    .contact-item {
        display: flex;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        flex: 0 0 40px;
        height: 40px;
        background-color: var(--secondary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }
    
    .contact-text h5 {
        margin-bottom: 5px;
    }
    
    /* Suppliers Section */
    .suppliers-section {
        padding: 60px 0;
        background-color: var(--light-bg);
    }
    
    .supplier-logo {
        padding: 20px;
        background-color: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 120px;
        margin: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }
    
    .supplier-logo.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .supplier-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .supplier-logo img {
        max-height: 60px;
        max-width: 100%;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .supplier-logo:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }
    
    /* Footer */
    .footer {
        background-color: var(--primary-color);
        color: white;
        padding: 60px 0 0;
    }
    
    .footer-logo img {
        max-height: 70px;
        margin-bottom: 20px;
    }
    
    .footer-about p {
        margin-bottom: 20px;
    }
    
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: white;
        margin-right: 10px;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .social-links a:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
    }
    
    .footer-links h4 {
        color: white;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-links h4:after {
        content: "";
        position: absolute;
        width: 40px;
        height: 2px;
        background-color: var(--secondary-color);
        bottom: 0;
        left: 0;
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #ddd;
        transition: all 0.3s ease;
        display: inline-block;
        text-decoration: none;
    }
    
    .footer-links a:hover {
        color: var(--secondary-color);
        transform: translateX(5px);
    }
    
    .footer-contact-info {
        margin-bottom: 15px;
        display: flex;
    }
    
    .footer-contact-icon {
        color: var(--secondary-color);
        margin-right: 15px;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        background-color: rgba(0,0,0,0.2);
        padding: 20px 0;
        margin-top: 40px;
        width: 100%;
    }
    
    /* WhatsApp Button */
    .whatsapp-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: #25D366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 999;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .whatsapp-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        color: white;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .banner-slide {
            height: auto;
            padding: 100px 0;
        }
        
        .banner-content {
            margin: 20px;
        }
        
        .about-content {
            padding-left: 0;
            margin-top: 40px;
        }
    }
    
    @media (max-width: 767.98px) {
        .banner-content h1 {
            font-size: 2rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
        
        .contact-form {
            padding: 30px;
        }
    }
