* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Commuters Sans, sans-serif;
    color: #ffffff;
    background-color: white;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Classe para exibir a seção ao rolar */
.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.azul-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent; /* Mantém o fundo transparente */
    z-index: 1000; /* Garante que o header fique acima de outros elementos */
}

.azul-logo {
    position: absolute;
    top: 10px;
    left: 20px;
}

.azul-logo img {
    width: 150px;
    margin-top: 15px;
}

.azul-nav-menu {
    background-color: white;
    border-radius: 25px;
    padding: 10px 30px;
}

.azul-nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.azul-nav-menu ul li a {
    text-decoration: none;
    color: #000000;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.azul-nav-menu ul li a:hover {
    background-color: #ffffff;
    border-radius: 25px;
}

.azul-social-icons {
    display: flex;
    gap: 10px;
    padding: 10px 20px;
    padding-bottom: 6px;
    background-color: white;
    border-radius: 25px;
    position: absolute;
    right: 20px;
    top: 20px;
}

/* Banner Section */
.azul-main-content {
    background-image: url('../img/backgrounds/banner-background.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Ajuste para evitar que o conteúdo fique sob o header fixo */
}

.azul-content-wrapper {
    max-width: 1200px;
    padding: 20px;
}

.azul-content-wrapper h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.azul-content-wrapper p {
    font-size: 18px;
    margin-bottom: 30px;
}

.azul-cta-button {
    text-decoration: none;
    color: #008cff;
    background-color: white;
    padding: 15px 30px;
    border-radius: 25px;
}

.azul-cta-button:hover {
    background-color: #e1e1e1;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .azul-logo img {
        width: 150px; /* Logo menor em telas menores */
        margin-top: 0; /* Ajusta a margem superior para centrar o logo */
    }

    .azul-nav-menu {
        display: none; /* Remove o menu em telas menores */
    }

    .azul-social-icons {
        padding: 5px 15px; /* Reduz o padding dos ícones sociais */
    }

    .azul-social-icons a img {
        width: 20px; /* Reduz o tamanho dos ícones sociais */
    }

    .azul-content-wrapper h1 {
        font-size: 32px; /* Reduz o tamanho do título */
    }

    .azul-content-wrapper p {
        font-size: 16px; /* Reduz o tamanho do parágrafo */
    }

    .azul-cta-button {
        padding: 10px 20px; /* Ajusta o padding do botão */
    }
}

@media (max-width: 480px) {
    .azul-logo img {
        width: 120px; /* Logo ainda menor em dispositivos muito pequenos */
    }

    .azul-content-wrapper h1 {
        font-size: 28px; /* Ajuste adicional do tamanho do título */
    }

    .azul-content-wrapper p {
        font-size: 14px; /* Ajuste adicional do tamanho do parágrafo */
    }

    .azul-cta-button {
        padding: 8px 15px; /* Padding ainda menor para o botão */
    }
}


/*                                                Info Section */
.azul-info-container {
    background-color: white;
    padding: 60px 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    flex-wrap: wrap; /* Permite que o conteúdo se ajuste em telas menores */
}

.azul-info-text {
    max-width: 50%;
    order: 1; /* O texto terá prioridade de exibição */
}

.azul-info-text h1 {
    font-size: 50px;
    color: #23337F;
    margin-bottom: 20px;
    font-weight: bold;
}

.azul-info-text p {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.azul-info-text h2 {
    font-size: 25px;
    color: #000;
    font-weight: bold;
    margin-bottom: 30px; /* Margem inferior adicionada para o espaçamento de 30px */
}

.azul-info-text h3 {
    font-size: 30px;
    color: #000 !important;
    margin-top: 20px;
    margin-bottom: 0px  !important;
    font-weight: bold;
}

.azul-info-underline {
    display: block;
    height: 3px;
    width: 100px;
    background-color: #23337F;
    margin-top: 30px; /* Margem superior para separar do texto */
}

.texto {
    float: left !important;
    width: 90% !important;
    margin-top: 10px !important;
}

.azul-info-image {
    position: relative;
    order: 2;
    width: 50%;
    height: auto;
    max-height: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.azul-info-image img {
    height: auto;
    width: 100%;
    object-fit: contain;
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .azul-info-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .azul-info-text {
        max-width: 100%;
        text-align: center;
    }

    .azul-info-text h1 {
        font-size: 36px;
    }

    .azul-info-text h2 {
        font-size: 28px;
    }

    .azul-info-underline {
        display: block;
        height: 3px;
        width: 100px;
        background-color: #23337F;
        margin-top: 10px; /* Espaço entre o título e a linha */
        margin-bottom: 30px; /* Espaçamento entre a linha e o conteúdo abaixo */
    }
    

    .azul-info-image {
        width: 80%; /* Ajusta o tamanho da imagem no mobile */
        margin-top: 40px;
    }
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .azul-info-container {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .azul-info-text {
        max-width: 100%;
    }

    .azul-info-image {
        width: 100%;
        margin-top: 20px; /* Mantém a imagem abaixo do texto */
    }
}





.azul-static-image-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding-left: 0;
    flex-wrap: wrap; /* Permite que os elementos se ajustem e fiquem um embaixo do outro em telas menores */
}

.azul-static-image {
    position: relative;
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0;
    box-sizing: border-box; /* Garante que padding e bordas sejam considerados no cálculo de largura e altura */
}

.azul-static-image img {
    max-height: 100%;
    width: auto;
    border-radius: 15px;
    max-width: 100%; /* Garante que a imagem não ultrapasse a largura disponível */
}

.azul-content-items {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-right: 50px;
    width: 95% !important;
    box-sizing: border-box; /* Garante que padding e bordas sejam considerados no cálculo de largura */
}

.azul-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.azul-icon img {
    width: 50px;
    height: 50px;
}

.azul-text {
    display: flex;
    flex-direction: column;
}

.azul-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.azul-text p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .azul-static-image-section {
        flex-direction: column;
        padding-left: 20px;
    }

    .azul-static-image {
        display: none; /* Esconde a imagem na versão responsiva */
    }

    .azul-content-items {
        grid-template-columns: 1fr; /* Ajusta para uma coluna na versão responsiva */
        gap: 20px;
        padding-left: 0;
    }
    
    .azul-text h3 {
        font-size: 16px; /* Ajusta o tamanho do texto */
    }

    .azul-text p {
        font-size: 12px; /* Ajusta o tamanho do texto */
    }
}





/*                                          Hero Section */
.azul-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    background-image: url('../img/backgrounds/oi.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Estilos para o conteúdo da seção */
.azul-overlay h1 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.azul-overlay p {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    width: 50%;
    margin: 0 25%;
    margin-bottom: 30px
}

.azul-overlay span {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .azul-hero-section {
        height: 50vh; /* Reduz a altura da seção em telas menores */
        padding: 0px 20px; /* Adiciona espaçamento lateral */
    }

    .azul-overlay h1 {
        font-size: 36px; /* Reduz o tamanho do título */
    }

    .azul-overlay p {
        font-size: 16px; /* Reduz o tamanho do parágrafo */
    }

    .azul-overlay span {
        font-size: 14px; /* Reduz o tamanho do span */
    }
}

@media (max-width: 480px) {
    .azul-hero-section {
        height: 60vh; /* Reduz ainda mais a altura da seção para dispositivos muito pequenos */
        padding: 0px 20px;
    }

    .azul-overlay h1 {
        font-size: 28px; /* Ajusta o tamanho do título para dispositivos menores */
    }

    .azul-overlay p {
        font-size: 14px; /* Ajusta o tamanho do parágrafo para dispositivos menores */
    }

    .azul-overlay span {
        font-size: 12px; /* Ajusta o tamanho do span para dispositivos menores */
    }
}


.info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 40px 0;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.content-right {
    width: 48%;
    padding: 20px;
    position: relative;
    background-color: #fff;
    border-left: 2px solid #333;
    border-top: 2px solid #333;
    color: #000
}

.content-left {
    width: 48%;
    padding: 20px;
    position: relative;
    background-color: #fff;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    color: #000
}

.content-left h2,
.content-right h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-left p,
.content-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #000
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .content-left,
    .content-right {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Cards Section */
.azul-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Estilos para os cards */
.azul-card {
    background-image: url('../img/backgrounds/fundo-cards.png');
    background-size: cover;
    background-position: center;
    padding: 15px;
    width: 400px;
    height: 480px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
}

/* Estilos para telas menores */
@media (max-width: 768px) {
    .azul-cards-container {
        flex-direction: column;
    }

    .azul-card {
        width: 100%; /* Card ocupa 100% da largura disponível */
        max-width: 400px; /* Limita a largura máxima do card */
        margin-bottom: 20px; /* Espaçamento inferior entre os cards */
    }
}

.azul-card-main {
    width: 500px;
    height: 590px;
    padding: 20px;
}

.azul-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.azul-card-header img {
    width: 25px;
    height: auto;
}

.azul-card-header h3 {
    font-size: 22px;
    font-weight: bold;
}

.azul-card-content {
    list-style: none;
    margin-bottom: 0px;
}

.azul-card-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.azul-card-content img {
    width: 18px;
    height: auto;
}

.azul-btn-contratar {
    display: block;
    width: 60%;
    padding: 10px;
    background-color: white;
    color: #000;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    margin: 20px auto 30px auto;
}

.azul-btn-contratar:hover {
    background-color: #e1e1e1;
}
/* Contact Section */
.azul-contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    min-height: 100vh;
    margin: 0 auto;
}

.azul-contact-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.azul-contact-header img {
    width: 300px;
    height: auto;
}

.azul-contact-text h2 {
    font-size: 24px;
    font-weight: 900;
    text-align: left;
    margin-bottom: 10px;
    color: #000000;
}

.azul-contact-text p {
    font-size: 16px;
    color: #666;
}

.azul-contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    width: 100%;
}

.azul-contact-form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.azul-contact-form-group input,
.azul-contact-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
}

.azul-contact-form-group textarea {
    resize: none;
}

.azul-contact-submit-button {
    width: 50%;
    padding: 10px;
    background-color: #23337F;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

.azul-contact-submit-button:hover {
    background-color: #1a285f;
}

/* Custom Contact Section */
.azul-custom-contact-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.azul-custom-map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.azul-custom-contact-info {
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 20px;
    width: 350px;
    border-radius: 50px 0px 0px 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    color: #23388D;
}

.azul-custom-logo {
    width: 150px;
    margin-bottom: 5px;
}

.azul-custom-contact-info p {
    margin: 10px 0;
}

.azul-custom-contact-info strong {
    color: #23388D;
}


.header-scrolled {
    background-color: rgba(35, 56, 141, 0.98); /* Fundo com opacidade */
    padding: 10px 50px; /* Ajusta o padding para o novo layout */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adiciona sombra para destacar o header */
    display: flex;
    justify-content: space-between;
    height: 10%;
    align-items: center;
}

.header-scrolled .azul-logo {
    position: static; /* Reseta o posicionamento */
    margin: 0;
}

.header-scrolled .azul-logo img {
    content: url('../img/logo/logo3.png'); /* Substitui a logo pela nova */
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100px; /* Ajusta o tamanho do logo */
}

.header-scrolled .azul-nav-menu {
    background-color: transparent; /* Remove o fundo branco do menu */
    padding: 0; /* Remove o padding extra */
}

.header-scrolled .azul-nav-menu ul {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    gap: 30px; /* Espaçamento entre os itens do menu */
}

.header-scrolled .azul-nav-menu ul li a {
    color: #ffffff; /* Muda a cor do texto do menu para branco */
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-scrolled .azul-nav-menu ul li a:hover {
    background-color: #1A285F; /* Azul mais escuro no hover */
    border-radius: 25px;
}

.header-scrolled .azul-social-icons {
    position: static; /* Reseta o posicionamento */
    background-color: transparent; /* Remove o fundo branco */
    padding: 0;
}

.header-scrolled .azul-social-icons a img {
    content: url('../img/icons/instagrambranco-icon.png'); /* Substitui a imagem da mídia social */
    width: 24px; /* Ajusta o tamanho da nova imagem, se necessário */
}





/* Estilos para o menu hambúrguer */
.hamburger-menu {
    display: none; /* Esconde o menu hambúrguer em telas grandes */
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2; /* Garante que o botão hambúrguer fique na frente do menu */
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: 0.4s;
}

/* Menu mobile cobrindo toda a tela */
.mobile-menu {
    display: none; /* Esconde o menu mobile por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 56, 141, 0.97); /* Cor de fundo com opacidade */
    z-index: 1; /* Garante que o menu fique acima de outros elementos, mas abaixo do hambúrguer */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px; /* Aumenta o tamanho da fonte para melhor visibilidade */
}

/* Adiciona as mídias sociais dentro do menu mobile */
.mobile-menu .azul-social-icons {
    position: static;
    margin-top: 30px; /* Espaço entre os links do menu e as mídias sociais */
    padding: 0;
    background-color: transparent; /* Remove o fundo branco */
    display: flex;
    justify-content: center;
}

.mobile-menu .azul-social-icons a img {
    width: 24px;
    height: auto;
    content: url('../img/icons/instagrambranco-icon.png'); /* Certifique-se de usar a imagem de ícone branco ou claro */
    margin: 0 10px;
}

@media (max-width: 768px) {
    .azul-logo {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 10px; /* Reduz o espaço entre a logo e o texto */
        text-align: center;
    }

    .azul-main-content {
        padding-top: 20px; /* Ajusta o padding para acomodar a logo acima do texto */
    }

    .hamburger-menu {
        display: flex;
    }

    .azul-nav-menu {
        display: none; /* Esconde o menu original em telas menores */
    }

    .azul-social-icons {
        display: none; /* Esconde as mídias sociais fora do menu */
    }

    .mobile-menu.open {
        display: flex; /* Mostra o menu mobile quando aberto */
    }
}

/* Animação do menu hambúrguer quando clicado */
.hamburger-menu.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
