* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 5%;
    position: absolute; 
    top: 0;
    z-index: 1000;
    background-color: transparent; 
}

.header-container nav a {
    text-decoration: none;
    color: white; 
    margin: 0 20px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: all color 0.3s ease;
    position: relative;
}

.header-container nav a:hover {
    color: #00d4ff;
    transform: translateY(-3px);
}

.header-container nav a, 
.header-container nav a:visited, 
.header-container nav a:active, 
.header-container nav a:link {
    text-decoration: none;
    color: white !important;
    margin: 0 20px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    outline: none;
}

.hero-section {
    height: 100vh;
    background-image: url('../img/IMG-HOME-1.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center; 
    padding-left: 10%;
}

.hero-content h1 {
    color: white;
    font-size: 70px;
    max-width: 500px;
    line-height: 1.1;
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.img-branco {
    filter: brightness(0) invert(1);
}

@keyframes reveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.btn-fale, .btn-ver-mais {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-align: center;
    
    background: linear-gradient(90deg, #1e67b1, #00d4ff) !important;
    color: white !important;
    text-decoration: none !important;
    
    padding: 13px 28px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.btn-fale:visited, .btn-ver-mais:visited,
.btn-fale:active, .btn-ver-mais:active,
.btn-fale:link {
    color: white !important;
    text-decoration: none !important;
}

.btn-fale:hover, .btn-ver-mais:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.5);
    color: white !important;
}

.btn-fale::after, .btn-ver-mais::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease-in-out;
}

.btn-fale:hover::after, .btn-ver-mais:hover::after {
    left: 100%;
}

.btn-fale a, .btn-ver-mais a {
    color: white !important;
    text-decoration: none !important;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#section1 {
    background: linear-gradient(-45deg, #0a2a43, #1e67b1, #00d4ff, #0a2a43);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.somos {
    background-color: white;
    padding: 60px 40px;
    border-radius: 20px; 
    max-width: 900px;  
    text-align: center;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.2); 
    margin: 0 auto;      
}

.somos h1 {
    color: #1e67b1;
    font-size: 32px;
    margin-bottom: 20px;
}

.somos p {
    color: #444;
    line-height: 1.6;
    font-size: 18px;
}

.bg-img2{
    background-image: url('../img/IMG-HOME-2.jpg');
    background-size: cover;
    background-position: center;
    height: 700px; 
}
#section2 {
    background-color: #1e3a8a;
    padding: 80px 5%;
    text-align: center;
    color: white;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.card {
    background-color: transparent;
    width: 200px;
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card.is-flipped .card-inner {
    transform: rotateY(180deg);
}

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

.card-front {
    background-color: #3b82f6;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.card-front .number {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    position: absolute;
    top: 15px;
    left: 15px;
}

.card-back {
    background-color: #0062ff;
    color: white;
    transform: rotateY(180deg);
}

.card-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: invert(100%) sepia(100%) saturate(5000%) hue-rotate(145deg) brightness(100%) contrast(100%);
}

.bg-white {
    background-color: white;
    height: 10px;
    width: 10;
}

.hidden-el {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1); 
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.card-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

.card:nth-child(even) .card-icon {
    animation-delay: 1s;
}
.card:nth-child(3n) .card-icon {
    animation-delay: 1.5s;
}

.card {
    background-color: transparent;
    width: 200px;
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s ease; 
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    border-radius: 15px;
}

.card:hover .card-inner {
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.highlight {
    background-color: rgba(0, 251, 255, 0.3); 
    border-radius: 2px;
    padding: 2px 8px;
    display: inline-block;
    transform: rotate(-1deg);
}

.servicos-container {
    display: grid;
    grid-template-columns: 1fr;
    background-color: white; 
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

#servicos-lista {
    padding: 100px 5%;
    background: linear-gradient(-45deg, #0a2a43, #1e67b1, #00d4ff, #0a2a43);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

.servicos-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pill-title {
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
}

.servicos-header h2 {
    color: #1e67b1;
    font-size: 30px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin: 0;
}

.servicos-header {
    color: #1e67b1;   
    font-size: 30px;
    font-weight: bold;
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.servico-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 25px;
    background-color: #f9f9f9;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.servico-item:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #00d4ff;
}

.servico-icon-mini {
    width: 35px;
    height: 35px;
    margin-right: 20px;
    object-fit: contain;
    filter: invert(41%) sepia(85%) saturate(1054%) hue-rotate(158deg) brightness(95%) contrast(101%);
}

.servico-item h3 {
    flex: 1;
    text-align: left;
    font-size: 18px;
    color: #1e3a8a;
    font-weight: bold;
}

.servico-resumo {
    display: flex;
    align-items: center;
    width: 100%;
    pointer-events: none;
}

.servico-detalhes {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
    padding-top: 0;
    text-align: left;
}

.servico-detalhes p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

.servico-item.aberto {
    background-color: white;
    border-color: #00d4ff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.servico-item.aberto .servico-detalhes {
    max-height: 500px;
    opacity: 1;
    padding-top: 15px;
    padding-bottom: 20px;
}

.servico-item.aberto .plus-icon {
    transform: rotate(45deg);
    color: #1e67b1;
}
.servico-detalhes ul {
    color: #000000;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.plus-icon {
    color: #1e3a8a;
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.bg-img3 {
    background-image: url('../img/IMG-HOME-3.jpg');
    background-size: cover;
    background-position: center;
    height: 700px; 
}

#presenca-nacional {
    padding: 100px 8%;
    background-color: #1e3a8a;
}

.presenca-container {
    background-color: white;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
}
.presenca-info h2{
    color: #1e67b1;
    font-size: 26px;
    margin-bottom: 20px;
}
.presenca-info p{
    color: #444;
    line-height: 1.6;
    font-size: 18px;
}

.presenca-mapa-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 600px;
}

.mapa-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.mapa-img-destaque {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

.pingo-wrapper {
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
}

.pingo-core {
    width: 8px;
    height: 8px;
    background-color: #00d4ff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.pingo-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: pingo-animation 2s infinite ease-out;
}

@keyframes pingo-animation {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.stat-box {
    background: #f8faff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #00d4ff;
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

#map {
    height: 100%;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1;
    background: #f8faff;
}

.leaflet-pulsing-icon {
    width: 12px !important;
    height: 12px !important;
    background: #00d4ff;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.leaflet-pulsing-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    animation: pulse-leaflet 2s infinite ease-out;
}

@keyframes pulse-leaflet {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

#quem-somos {
    padding: 100px 5%;
    background: linear-gradient(-45deg, #0a2a43, #1e67b1, #00d4ff, #0a2a43);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex; 
    justify-content: center;
}

.quem-somos-container {
    background-color: white;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 80px 60px;
    max-width: 1300px;
    width: 100%;
    padding: 80px 60px;
    box-sizing: border-box;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quem-somos-textos {
    text-align: left;
}

.quem-somos-textos h2 {
    font-size: 28px;
    color: #0a2a43;
    margin-bottom: 10px;
}

.quem-somos-textos p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0; 
}

.quem-somos-espacador {
    height: 35px;
}

.quem-somos-imagem {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quem-somos-imagem img {
    width: 100%;
    max-width: 550px; 
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.quem-somos-imagem img:hover {
    transform: scale(1.02);
}

.imagem-direita {
    opacity: 0;
}

.imagem-direita.show {
    animation: slideInFromRight 1s ease-out forwards;
}

.imagem-esquerda {
    opacity: 0;
}

.imagem-esquerda.show {
    animation: slideInFromLeft 1s ease-out forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #00d4ff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; 
}

#backToTop img {
    width: 60%;
    height: auto;
    transition: transform 0.3s ease;
}

#clientes{
    margin-top: 30px;
    align-items: center;
    text-align: center;
}

.clientes-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 60px 5%;
}

#frota {
    padding: 100px 5%;
    background: linear-gradient(-45deg, #0a2a43, #1e67b1, #00d4ff, #0a2a43);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    justify-content: center;
}

.frota-container {
    background-color: white;
    border-radius: 20px;
    max-width: 1100px;
    width: 100%;
    padding: 60px;
    box-sizing: border-box;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.frota-titulo {
    font-size: 32px;
    color: #0a2a43;
    margin-bottom: 50px;
    text-align: center;
}

.content-frota {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
}

.frota-stat-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.frota-stat-card:hover {
    transform: translateY(-10px);
}

.frota-stat-value {
    display: block;
    font-size: 60px; 
    font-weight: 900;
    color: #00d4ff; 
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Arial Black', sans-serif;
}

.frota-stat-card p {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    font-weight: bold;
}

.bg-img4{
    background-image: url('../img/IMG-HOME-6.jpg');
    background-size: cover;
    background-position: center;
    height: 700px;
}

#contato {
    padding: 100px 5%;
    background: linear-gradient(-45deg, #0a2a43, #1e67b1, #00d4ff, #0a2a43);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    justify-content: center;
}

.contato-container {
    background-color: white;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    align-items: start;
}

.contato-info h2 {
    font-size: 32px;
    color: #0a2a43;
    margin-bottom: 20px;
}

.contato-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.contato-detalhes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1e67b1;
    font-weight: bold;
}

.contato-item img {
    width: 25px;
    height: 25px;
    filter: brightness(0) saturate(100%) invert(32%) sepia(96%) saturate(763%) hue-rotate(185deg) brightness(91%) contrast(93%);
}

.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-form input, 
.contato-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.contato-form input:focus, 
.contato-form textarea:focus {
    border-color: #00d4ff;
}

.contato-form .btn-fale {
    width: 100%;
    margin-top: 10px;
}

.footer-simple {
    background-color: #0a2a43;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

.footer-completo {
    background-color: #0a2a43; 
    color: white;
    padding: 80px 5% 20px 5%;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; 
    gap: 40px;
}

.footer-col h3 {
    color: #00d4ff; 
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #00d4ff;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-descricao {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
    color: #00d4ff;
    padding-left: 8px; 
}

.footer-col p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

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

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 20px; 
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #00d4ff;
    border-color: #00d4ff;
    color: #0a2a43;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #ffffff1a;
    padding: 15px;
    margin-top: 30px;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 13px;
}

.footer-bottom a,
.footer-bottom a:visited,
.footer-bottom a:active,
.footer-bottom a:link {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    gap: 10px;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.lang-btn img {
    width: 30px;
    border-radius: 4px;
}

/* MENU */
.lang-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    min-width: 150px;
    z-index: 999;
}

.lang-menu.show {
    display: block;
}

/* OPÇÕES */
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.2s;
}

.lang-option img {
    width: 25px;
}

.lang-option:hover {
    background: #f2f2f2;
}