.social-icons a {
            margin: 0 10px;
            font-size: 2rem;
            color: #333;
            text-decoration: none;
        }
        .social-icons a:hover {
            color: #0077ff;
        }
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

:root {
    --azul-escuro: #0a2a66;
    --branco: #ffffff;
}
#titulo-principal{
    text-align: left;
}
body {
    font-family: "Montserrat", Sans-serif;
    padding-bottom: 60px; /* Para compensar o rodapé fixo */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* -------------------------------------------Header fixo------------------------------------------------------------ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--branco);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1000;
}

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

/* Logo */
.logo img {
    height: 45px;
    align-items: center;
}

/* Menu */
.menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: var(--azul-escuro);
    font-weight: 600;
    position: relative;
}

/* Botão orçamento */
.btn-orcamento {
    background-color: var(--azul-escuro);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 25px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-orcamento:hover {
    opacity: 0.85;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: transparent;
    border: none;
    color: var(--azul-escuro);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-radius: 6px;
    padding: 10px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
}

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

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

/* -----------------------------FIM DO HEADER FIXO--------------------------------*/
.banner {
    width: 100vw; /* Largura total da viewport */
    height: 70vh; /* Altura total da viewport */
    background-image: url('../imagens/navio.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 70px; /* Ajuste para compensar o header fixo (altura aproximada do header) */
    display: flex;
    align-items: center; /* Centraliza verticalmente o conteúdo interno */
    justify-content: flex-start; /* Alinha à esquerda, ajuste se necessário */
}

/* Ajustes na .title para melhor responsividade */
.title {
    font-family: "Montserrat", Sans-serif;
    margin-left: 3%; /* Use porcentagem em vez de pixels para responsividade */
    margin-bottom: 10%; /* Remova ou ajuste se necessário */
    width: 80%;
    max-width: 600px; /* Limite máximo para evitar overflow em telas grandes */
}

.description {
    font-size: 1.2em;
}

.segundo_topico{
    width: 100vw;
    display: flex;
    justify-content: center;
}

.segundo_topico h2{
    --max-width: 600px;
    margin-left: 5%;
    align-items: center;
    font-size: 2.0em;
    margin-top: 3%;
    font-family: "Montserrat", Sans-serif;
    margin-bottom: 3%;
}

.explicacao_superlonga{
    display: flex;
    align-items: flex-start;
    gap: 62px;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
}

.explicacao_superlonga img {
    width: 500px;
    height: 380px;
}

.explicacao_superlonga p {
    text-align: justify;
    width: 500px;
    font-size: 1.1em;
  font-family: "Montserrat", Sans-serif;
}

.missoes {
    display: flex;
    width: 100vw;
    justify-content: center;
    margin-top: 5%;
    margin-bottom: 5%;
    gap: 62px;
    text-align: center;
    line-height: 1.5;
}

.missoes div{
    background-color: #051c47;
    border-radius: 3%;
    color:#fff;
    --height: 200px;
    width: 313px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.1em;
}

.missoes h3 {
    text-align: left;
}

.missoes p {
    text-align: justify;
}

.missoes h3 i{
    width: 1.3em;
    height: 1.3em;
    vertical-align:top;
}

.missoes p1 {
    text-align: center;
    line-height: 1.4em;
}

/* ----------------------------INÍCIO RODAPÉ------------------------- */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background-color: #fff;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 5px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-left p, .footer-right p {
    margin: 0;
    font-weight: 600;
    color: #000;
}

.btn-especialista {
    background-color: var(--azul-escuro);
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-especialista:hover {
    opacity: 0.85;
}

.btn-saiba-mais {
    background-color: #fff;
    color: #000 !important;
    border: 1px solid #000;
    padding: 8px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-saiba-mais:hover {
    background-color: #f0f0f0;
}
/* ----------------------------FIM RODAPÉ------------------------- */

.fim_pagina{

    background-color: #444647; 
    width: 100%;
    height: 400px;
    padding-top: 3%;
}

.fim_pagina img{
    margin-left: 5%;
    padding-top: 2%;
    width: 3%;
    height: 1%;
}

.fim_pagina p{
    margin-left: 5%;
    padding-top: 2%;
    color: #fff;
    font-size: 1.2em;
}

.blocos {
    display: flex;
    justify-content: space-around;
    align-items: top;
    gap: 0px;
    color: #fff;   
}
.segundo_bloco h4, .Institucional h4, .terceiro_bloco h4 {
    margin-left: 5%;
}
.primeiro_bloco, .Institucional, .segundo_bloco, .terceiro_bloco {
    flex: 1;
    text-align: left;
    font-size: 15px;
}

.primeiro_bloco img {
    width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.terceiro_bloco h4{
    margin-left: 5%;
}
.whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        z-index: 9999;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #25d366;
        transition: box-shadow 0.2s;
      }
      .whatsapp-float:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.3);
        background: #1ebe57;
      }
      .whatsapp-float img {
        width: 38px;
        height: 38px;
      }