/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;

}

/* Header Styles */
.header {
    background-color: #00214e !important;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    max-height: 60px;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    display: block;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
    background-color: #001534 !important;
    color: #fff;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #00214e !important; 
    min-width: 200px;
    padding: 10px 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: #fff;
    padding: 8px 20px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #003871;
    color: #fff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s;
}

/*#################### Slider Styles#################### */
/* Container Principal do Slider */
.slider-container {
    margin-top: 0;
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Ajustes Responsivos para o Container */
@media (max-width: 768px) {
    .slider-container {
        height: 400px; /* Altura reduzida para tablets */
    }
}

@media (max-width: 576px) {
    .slider-container {
        height: 300px; /* Altura menor para smartphones */
    }
}

/* Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    will-change: transform; /* Otimização de performance */
}

/* Slides Individuais */
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden; /* Previne overflow de imagens */
}

/* Imagens dos Slides */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Centraliza a imagem */
}

/* Conteúdo dos Slides */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 80%;
    padding: 20px;
}

/* Títulos dos Slides */
.slide-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Parágrafos dos Slides */
.slide-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Overlay dos Slides */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* Navegação do Slider */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

/* Pontos de Navegação */
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.slider-dot:hover {
    transform: scale(1.2);
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Setas de Navegação */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0,0,0,0.7);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .slide-content {
        width: 90%;
    }

    .slide-content h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .slider-nav {
        bottom: 10px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    /* Oculta setas em telas muito pequenas */
    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }
}

/* Otimizações de Performance */
@media (hover: none) {
    .slider-arrow {
        opacity: 0.8;
        background: rgba(0,0,0,0.6);
    }
}

/* Suporte para Gestos Touch */
@media (pointer: coarse) {
    .slider {
        touch-action: pan-y pinch-zoom;
    }
}

/* Prevenção de Glitch em Transições */
.slider {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
/*###################### Footer ################################# */
/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #00214e 0%, #001534 100%); /* Usando a cor #00214e */
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #00214e; /* Atualizado para a mesma cor */
        padding: 80px 20px 20px;
        transition: right 0.3s;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 10px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #001534; /* Cor mais escura derivada do #00214e */
        padding-left: 20px;
        display: none;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Footer responsivo */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ######################Logo e Social #######################*/
.footer-logo-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    color: #00214e;
    transform: translateY(-3px);
}

/* Títulos das Colunas */
.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Links do Menu */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-links a:hover::before {
    width: 15px;
    left: -12px;
    opacity: 1;
}

/* Descrição */
.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Contato */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #fff;
    font-size: 16px;
}

.contact-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 5px 0;
}

.rfl-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.rfl-link:hover {
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo-column {
        align-items: center;
        text-align: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-description {
        text-align: center;
    }
}


/* Seção Sobre */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,33,78,0.1), transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Coluna da Imagem */
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #00214e;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Coluna do Texto */
.section-subtitle {
    color: #00214e;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    color: #00214e;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #00214e;
    border-radius: 2px;
}

.main-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.secondary-description {
    color: #555;
    margin-bottom: 30px;
}

/* Grid de Indústrias */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #00214e;
    color: white;
}

.industry-item i {
    font-size: 1.2rem;
    color: #00214e;
}

.industry-item:hover i {
    color: white;
}

.industry-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-column {
        order: 2;
    }

    .about-content-column {
        order: 1;
    }

    .section-title {
        font-size: 2rem;
    }

    .experience-badge {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 15px;
    }

    .industry-item {
        padding: 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Top Bar */
.top-bar {
    background: #e4451d;
    padding: 8px 0;
    font-size: 0.9rem;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.top-bar-left {
    display: flex;
    gap: 20px;
    color: #fff;
}

/* Estilos específicos para data/hora e login */
.datetime,
.user-login {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}

.datetime i,
.user-login i {
    color: #fff;
    font-size: 14px;
}

.operational-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-label {
    color: #fff;
    font-weight: 500;
}

.top-email {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.top-email:hover {
    color: rgba(255, 255, 255, 0.8);
}

.top-email i {
    font-size: 0.8rem;
    color: #fff;
}

/* ####################Header Principal ###################*/
/* Navbar Principal */
.navbar {
    background-color: #00214e;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Personalização do navbar do Bootstrap */
.navbar-nav .nav-link {
    color: #fff !important;
    padding: 8px 16px !important;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Responsividade */
@media (max-width: 992px) {
    .navbar-collapse {
        background: #00214e;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Oculta a top bar em dispositivos móveis */
    }

    .operational-contacts {
        text-align: center !important;
        margin-top: 10px;
    }

    .top-email {
        display: block;
        margin: 5px 0;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo-img {
        height: 40px;
    }
}

/* Animação do menu mobile */
.navbar-collapse {
    transition: all 0.3s ease;
}

.navbar-collapse.show {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*################## Seção de Serviços########################## */
.services-section {
     padding-top: 60px; /* Reduzido de 100px para 60px */
    padding-bottom: 100px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #e4451d;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    color: #00214e;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e4451d;
    border-radius: 2px;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid de Serviços - Atualizado para 4 colunas */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Cards de Serviço */
.service-card {
    height: 350px;
    perspective: 1500px;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-front, .service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-front {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-back {
    background: #00214e;
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(228, 69, 29, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 35px;
    color: #e4451d;
}

.service-front h3 {
    color: #00214e;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-front p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-back h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.service-back ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-back ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-btn {
    background: #e4451d;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #fff;
    color: #e4451d;
    transform: translateY(-3px);
}

/* Footer dos serviços */
.services-footer {
    text-align: center;
    margin-top: 50px;
}

.all-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00214e;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.all-services-btn:hover {
    background: #e4451d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 69, 29, 0.2);
}

.all-services-btn i {
    transition: transform 0.3s ease;
}

.all-services-btn:hover i {
    transform: translateX(5px);
}

/* Responsividade Atualizada */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas */
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 coluna no mobile */
        gap: 20px;
    }
    
    .service-card {
        height: 300px;
    }
}

/* Separador Moderno entre Seções */
.section-divider {
    position: relative;
    height: 120px; /* Reduzido de 150px para 120px */
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    overflow: hidden;
    margin-bottom: -20px; /* Adicionado para reduzir o espaço inferior */
}

.divider-content {
    position: absolute;
    top: 40%; /* Ajustado de 50% para 40% para subir um pouco */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
    z-index: 2;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #e4451d, transparent);
    opacity: 0.3;
}

.divider-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(228, 69, 29, 0.2);
    animation: pulse 2s infinite;
}

.divider-icon i {
    font-size: 24px;
    color: #e4451d;
    animation: spin 8s linear infinite;
}

.divider-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.divider-pattern svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

/* Animações */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(228, 69, 29, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(228, 69, 29, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(228, 69, 29, 0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsividade do Separador */
@media (max-width: 768px) {
    .section-divider {
        height: 120px;
    }

    .divider-content {
        gap: 20px;
    }

    .divider-icon {
        width: 50px;
        height: 50px;
    }

    .divider-icon i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .section-divider {
        height: 100px;
    }

    .divider-line {
        max-width: 100px;
    }

    .divider-content {
        gap: 15px;
    }
}

/*#################### Seção de Clientes e Atuação ###############*/
/* Seção de Clientes e Atuação */
.clients-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Cabeçalho da Seção */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #e4451d;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    color: #00214e;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e4451d;
    border-radius: 2px;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Container das Imagens */
.clients-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .showcase-image {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 33, 78, 0.9), transparent);
    padding: 30px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.image-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 1200px) {
    .clients-showcase {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .showcase-item {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .clients-showcase {
        gap: 30px;
    }

    .image-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 33, 78, 0.8), transparent);
    }

    .image-overlay h3 {
        font-size: 1.3rem;
    }

    .image-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .showcase-item {
        margin: 0 10px;
    }

    .image-overlay {
        padding: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}



/*###################### Estilo para o seletor de idiomas################### */
/* Estilos do seletor de idiomas */
/* Estilos do seletor de idiomas */
.language-selector {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    padding: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 30px;
    overflow: hidden;
    border-radius: 4px;
}

.lang-btn:hover {
    transform: scale(1.1);
    border-color: rgba(255,255,255,0.5);
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* Esconder elementos do Google Translate
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
} */

/* Responsivo */
@media (max-width: 991px) {
    .language-selector {
        margin: 15px 0;
        justify-content: center;
    }
}

/*############################### WhatsApp Float Button ##############*/
/* WhatsApp Float Button - Versão melhorada */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.whatsapp-button:hover {
    background: #22c15e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

.whatsapp-text {
    font-size: 14px;
    line-height: 1;
    color: white;
}

/* Tooltip melhorado */
.whatsapp-tooltip {
    position: absolute;
    top: -45px;
    right: 0;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 20px;
    border-width: 5px 5px 0 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    top: -40px;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        padding: 10px 16px;
    }

    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }

    .whatsapp-text {
        font-size: 13px;
    }
}

main {
    display: block;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
}

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Certifique-se de que as imagens estão visíveis */
.image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
html {
    scroll-padding-top: 100px; /* Ajuste este valor de acordo com a altura do seu header */
    scroll-behavior: smooth;
}

/* Adicione também um estilo de transição para o hover do link */
.nav-link[href*="#"] {
    transition: color 0.3s ease;
}

.nav-link[href*="#"]:hover {
    color: #e4451d !important;
}

