/* Reset básico para consistência */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.landing-page {
    background-color: #F9FAFB;
    color: #4B5563;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

html, body {
    scroll-behavior: smooth;
}

/* Cabeçalho */
.sticky-header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.sticky-header.scrolled {
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sticky-header.scrolled .navbar-nav .nav-link {
    color: #4B5563;
}

.sticky-header.scrolled .navbar-nav .nav-link:hover {
    color: #0052CC;
    background-color: rgba(0, 82, 204, 0.1);
}

.sticky-header.scrolled .navbar-toggler span {
    background-color: #4B5563;
}

.sticky-header.scrolled .buy-btn.rounded-pill a {
    color: #4B5563;
}

.sticky-header.scrolled .buy-btn.rounded-pill a:hover {
    color: #0052CC;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

.navbar-brand {
    margin: 0;
}

.menu-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin: 0 1rem;
}

.buy-btn {
    margin: 0;
    padding: 0.75rem 1.5rem;
    background-color: #0052CC;
    color: #E2E8F0;
    text-decoration: none;
    border-radius: 50px;
}

.logo-img {
    max-width: 130px;
    height: auto;
}

.navbar-nav.navbar_nav_modify {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-link {
    color: #E2E8F0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0052CC;
    background-color: rgba(0, 82, 204, 0.1);
}

.buy-btn.rounded-pill {
    margin: 0;
    padding: 0.75rem 1.5rem;
}

.navbar-toggler {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    padding: 0.5rem;
    background: none;
}

.navbar-toggler span {
    background-color: #E2E8F0;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 1199px) {
    .navbar-collapse {
        background-color: #0A2647; /* Mantém fundo azul escuro */
        padding: 1rem;
        text-align: center;
        margin-top: 0; /* Remove margem para tela cheia */
        border-radius: 0; /* Remove bordas arredondadas */
        box-shadow: none; /* Remove sombra para tela cheia */
        position: fixed; /* Fixa na tela */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* Altura total da viewport */
        z-index: 1000; /* Garante que fique acima de outros elementos */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centraliza verticalmente */
    }

    .sticky-header.scrolled .navbar-collapse {
        background-color: #FFFFFF; /* Fundo branco ao rolar */
    }

    .navbar-nav.navbar_nav_modify {
        flex-direction: column;
        gap: 2rem; /* Aumenta espaçamento entre itens */
        align-items: center;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem;
        font-size: 1.5rem; /* Aumenta tamanho da fonte para melhor legibilidade */
        color: #FFFFFF; /* Links brancos para contraste */
    }

    .sticky-header.scrolled .navbar-nav .nav-link {
        color: #4B5563; /* Links cinza escuro ao rolar */
    }
}

/* Hero Banner Slider */
.hero-banner {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    left: 0;
}

.hero-slider {
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 38, 71, 0.5);
    z-index: 2;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 3;
    padding-top: 250px;
}

.hero-banner h1 {
    color: #E2E8F0;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hero-banner h1 .highlight-gold {
    color: #d4af37;
}

.hero-banner h1::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #d4af37;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.hero-banner p.lead {
    color: #E2E8F0;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.hero-banner .buy-btn.rounded-pill {
    background-color: #0052CC;
    color: #E2E8F0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-banner .buy-btn.rounded-pill:hover {
    background-color: #003087;
    transform: scale(1.1);
}

/* Slick Slider Dots */
.slick-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #E2E8F0;
    background: transparent;
    cursor: pointer;
    text-indent: -9999px;
    transition: background 0.3s ease;
}

.slick-dots li.slick-active button {
    background: #E2E8F0;
}

/* Seções Gerais */
.section-dark,
.section-dark-alt {
    background-color: #F9FAFB;
    color: #4B5563;
}

.section-dark h2,
.section-dark-alt h2 {
    color: #0A2545;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-dark h2::after,
.section-dark-alt h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: #d4af37;
    margin: 0.5rem auto 1rem auto;
}

/* Cards */
.card {
    border: none;
    background-color: #0A2647;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card img {
    border-radius: 10px;
}

.card h3,
.card h4 {
    color: #FFFFFF;
    position: relative;
    display: inline-block;
}

.card h3::after,
.card h4::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #d4af37;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.card p,
.card ul li {
    color: #E2E8F0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Ícones em Cards */
.card i {
    color: #FFFFFF;
}

/* Botões */
.buy-btn.rounded-pill {
    background-color: #0052CC;
    color: #E2E8F0;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-btn.rounded-pill:hover {
    background-color: #003087;
    color: #E2E8F0;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Linha do Tempo */
.timeline {
    position: relative;
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #0A2647;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.timeline-content {
    background-color: #0A2647;
    border-radius: 10px;
    padding: 1.5rem;
    width: 45%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 2rem;
    margin-left: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 2rem;
    margin-right: auto;
    text-align: left;
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 50%;
    width: 16px;
    height: 16px;
    background-color: #0A2647;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 3;
    border: 2px solid #0A2647;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #FFFFFF;
}

.timeline-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #E2E8F0;
}

@media (max-width: 767px) {
    .timeline::before {
        left: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 3rem;
        margin-right: 1.5rem;
        width: calc(100% - 4.5rem);
        text-align: left;
    }

    .timeline-item::before {
        left: 1rem;
        top: 1rem;
    }
}

/* Mapa */
#map {
    background-color: #0A2647;
}

.leaflet-popup-content-wrapper {
    background-color: #0A2647;
    color: #E2E8F0;
    border-radius: 8px;
}

.leaflet-popup-tip {
    background-color: #0A2647;
}

/* Presença Nacional */
#presenca .card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

#presenca .card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#presenca .card h3 {
    color: #0A2545;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

#presenca .card p {
    color: #0A2545;
    font-size: 1rem;
    line-height: 1.6;
}

#presenca .widget {
    background-color: #0A2545;
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.3s ease;
}

#presenca .widget:hover {
    background-color: #3B82F6;
}

#presenca .widget h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
}

#presenca .widget i {
    color: #FFFFFF;
}

#presenca .widget p.coverage-text {
    color: #FFFFFF !important;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

#presenca .list-unstyled li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #E2E8F0;
}

#presenca .row {
    display: flex;
    align-items: stretch;
}

#presenca .col-md-6 {
    display: flex;
}

#presenca .col-md-6 .card,
#presenca .col-md-6 #map {
    flex: 1;
}

/* Nossas Instalações */
#instalacoes .card {
    background-color: #0A2647;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
}

#instalacoes .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#instalacoes .card h4 {
    color: #FFFFFF;
    font-size: 1.5rem;
}

#instalacoes .card p {
    color: #E2E8F0;
    font-size: 1rem;
    line-height: 1.6;
}

#instalacoes .card .fa-3x {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

#instalacoes .lead-text {
    font-size: 1.25rem;
    color: #4B5563;
    line-height: 1.5;
}

#instalacoes .inspiration-card {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#instalacoes .inspiration-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Nossa História */
#nossa-historia .card {
    background-color: #0A2647;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
}

#nossa-historia .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#nossa-historia .card h4 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#nossa-historia .card p,
#nossa-historia .card ul li {
    color: #E2E8F0;
    font-size: 1rem;
    line-height: 1.6;
}

#nossa-historia .card ul {
    list-style: none;
    padding: 0;
}

#nossa-historia .card ul li {
    margin-bottom: 0.5rem;
}

#nossa-historia .card ul li::before {
    content: '\2022';
    color: #FFFFFF;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

#nossa-historia .card .fa-3x {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

#nossa-historia .lead {
    font-size: 1.25rem;
    color: #4B5563;
}

/* Nossos Clientes */
#clientes {
    background-color: #F9FAFB;
    padding: 5rem 0;
}

.client-logo {
    border: none;
    border-radius: 10px;
    background-color: #FFFFFF;
    transition: transform 0.3s ease;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Setores Atendidos */
#setores-atendidos {
    background-color: #F9FAFB;
    padding: 5rem 0;
    margin-bottom: 5rem;
}

#setores-atendidos .card {
    background-color: #0A2647;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    min-height: auto;
}

#setores-atendidos .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#setores-atendidos .card h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

#setores-atendidos .card p {
    color: #E2E8F0;
    font-size: 0.8rem;
    line-height: 1.4;
}

#setores-atendidos .card .fa-2x {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

#setores-atendidos .lead {
    font-size: 1.25rem;
    color: #4B5563;
    line-height: 1.5;
}

/* Vantagens */
#vantagens {
    background-color: #F8F9FA;
    padding: 5rem 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

#vantagens h2 {
    color: #0A2545;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

#vantagens h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: #d4af37;
    margin: 0.5rem auto 1rem auto;
}

#vantagens .lead {
    color: #0A2545;
    font-size: 1.25rem;
}

#vantagens .card {
    border: none;
    border-radius: 10px;
    background-color: #FFFFFF;
    transition: transform 0.3s ease;
}

#vantagens .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#vantagens .card h4 {
    color: #0A2647;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

#vantagens .card h4::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #d4af37;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

#vantagens .card ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

#vantagens .card ul li i {
    color: #0A2647;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    #vantagens .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Footer */
.footer-bg {
    background-color: #113863;
    padding: 2rem 0;
}

.footer-bg h2,
.footer-bg h6 {
    color: #E2E8F0;
    position: relative;
    display: inline-block;
}

.footer-bg h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: #d4af37;
    margin: 0.5rem auto 1rem auto;
}

.footer-bg .gradient-13 {
    background: linear-gradient(45deg, #0052CC, #003087);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer-bg .landing-center {
    text-align: center;
    padding: 50px 0;
}

.footer-bg .landing-title h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-bg .license-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.footer-bg .license-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bg .license-list img {
    width: 24px;
}

.footer-bg .license-list h6 {
    font-weight: normal;
}

.footer-bg .sub-footer {
    padding: 20px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bg .sub-footer ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    list-style: none;
}

.footer-bg .sub-footer ul li a {
    color: #E2E8F0;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-bg .sub-footer ul li a:hover {
    color: #0052CC;
}

.footer-bg .sub-footer h6 {
    font-weight: normal;
}

@media (max-width: 767px) {
    .footer-bg .sub-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bg .sub-footer ul {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-bg .license-list {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .footer-bg .sub-footer {
        padding: 12px 0;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #E2E8F0;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
}

