/* Aplicando a fonte Montserrat em todo o site */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Caso queira aplicar a fonte em outros elementos, você pode especificar por exemplo */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.btn-branco{
 border: #ffffff solid 1px;
 border-radius: 0px;
 color: #ffffff;
}

.btn-branco:hover{
 border: #ffffff solid 1px;
 border-radius: 0px;
 color: #006F89;
 background-color: #ffffff;
}


.btn-azul{
 border: #006F89 solid 1px;
 border-radius: 0px;
 color: #006F89;
}

.btn-azul:hover{
 border: #006F89 solid 1px;
 border-radius: 0px;
 color: #ffffff;
 background-color: #006F89;
}


/* social media */
.social-icons {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 10px;
}

/* Estilo para cada ícone */
.social-icon {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 0px;
    padding: 12px;
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
}

/* Hover */
.social-icon:hover {
   color: #006F89;
   transform: scale(1.1);
}

/* Cores de fundo */
.social-icon.facebook,
.social-icon.instagram,
.social-icon.linkedin {
    background-color: #000;
}

/* Ajustes para telas pequenas (responsivo) */
@media (max-width: 768px) {
    .social-icons {
        top: 50%;
        gap: 10px; /* Menor espaçamento entre ícones */
        padding-left: 5px; /* Menor margem à esquerda */
    }

    .social-icon {
        width: 35px; /* Reduz largura */
        height: 35px; /* Reduz altura */
        font-size: 18px; /* Ícone menor */
        padding: 8px; /* Menos espaçamento interno */
        border-radius: 6px; /* Ajuste proporcional */
    }
}

/* Para telas muito pequenas (tipo celulares compactos) */
@media (max-width: 480px) {
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        padding: 6px;
    }
}
/* Fim social media */


/* Navbar */

.nav-link {
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    background-color: #ffffff !important; /* Remove a cor de fundo */
    transition: top 0.3s ease, box-shadow 0.3s ease; /* Transição suave */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-left: 5%;
    padding-right: 5%;
    height: 100px;
    /* Remove a borda */
    border-bottom: none;

    /* Adiciona a sombra na base */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

/* Definir o comportamento inicial das links */
.nav-link {
    color: #000000 !important;
    padding: 10px !important;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    border-radius: 0px 0px 0px 0px;
}

.nav-link:hover {
    color: #006F89;
    padding: 10px !important;
    border-bottom: 2px solid #006F89;
}

.navbar-collapse{
    background-color: #ffffff;
    padding-top: 30px;
}

/* Custom hamburger button */
.custom-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border: 0px solid transparent !important; /* Círculo branco */
    border-radius: 50%; 
    background-color: transparent !important;
    position: relative;
    z-index: 1050;
}

/* Quando o botão está ativo (menu expandido ou clicado), sem borda e fundo */
.custom-toggler:focus, .custom-toggler:active {
    border: 0px !important;
    background-color: transparent !important; /* Fundo transparente */
    box-shadow: none !important; /* Sem sombra */
}

/* Barras do hamburger */
.toggler-bar {
    width: 25px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Efeito de hover: reduz largura das barras */
.custom-toggler:hover .toggler-bar {
    width: 15px;
}

/* Ícone de fechar */
.close-icon {
    display: none;
    color: white;
    font-size: 20px;
    margin-top: 10px;
    text-align: center;
}

/* Exibir o ícone de fechar quando o menu está aberto (somente em telas pequenas) */
.navbar-collapse.show .close-icon {
    display: block;
   
}

/* Responsividade: Exibir o ícone apenas em telas pequenas */
.d-lg-none {
    display: none !important;
}

@media (max-width: 991px) {
    .d-lg-none {
        display: block !important;
    }
}

/* Navbar oculta após rolar */
.navbar-hidden {
    top: -70px; /* Ajuste de acordo com a altura da sua navbar */
}

.navbar-brand img {
    height: 70px; /* tamanho padrão */
    transition: height 0.3s ease;
}

/* Em telas médias */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 55px;
    }
}

/* Em telas pequenas (celulares) */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px;
    }
}



/* =========================
   HERO SECTION
========================= */


.hero {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100vh; /* ocupa a altura total da tela */
    margin-top: 100px;
    background-color: #006F89;
}

/* Coluna da esquerda */
.hero-left {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 0px 0px 250px 0px;
    background-color: #fff;
}

.hero-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Coluna da direita */
.hero-marketing {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 30px;
    color: #fff;
}

.hero-marketing h2 {
    font-weight: 700;
    font-size: 2rem;
}

.hero-marketing p {
    margin-top: 20px;
    font-size: 18px;
}

.hero-marketing button {
    margin-top: 30px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 0px;
    color: #fff !important;
    padding: 10px 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-marketing button a {
    color: #fff;
    text-decoration: none;
}

.hero-marketing button:hover {
    background-color: #fff;
    color: #006F89;
    border-color: #006F89
}

.hero-marketing button:hover a {
     color: #006F89;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        height: auto;
        margin-top: 50px;
    }

    /* Coluna da esquerda em cima */
    .hero-left {
        width: 100%;
        height: 50vh; /* define uma altura menor para celulares */
        border-radius: 0;
        order: 1;
        margin-top: 50px;
        border-radius: 0px 0px 150px 0px;
    }

    /* Coluna da direita abaixo */
    .hero-marketing {
        width: 100%;
        order: 2;
        padding: 30px 20px;
        align-items: center;
        text-align: center;
    }

    /* Reduz tamanhos de textos e botões */
    .hero-marketing h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .hero-marketing p {
        font-size: 15px;
        margin-top: 15px;
    }

    .hero-marketing button {
        font-size: 14px;
        padding: 8px 18px;
        margin-top: 20px;
    }

    /* Reduz o tamanho do logo de marketing */
    .hero-marketing .marketing-logo {
        width: 350px;
        max-width: 60%;
        height: auto;
        margin-bottom: 15px;
    }
}


/* divisão */

.bg-fixa {
    width: 100%;
    height: 400px; /* altura para desktop */
    background-image: url('../img/divi1.jpg');
    background-size: cover;       /* cobre toda a área */
    background-position: left;    /* posiciona a imagem à esquerda */
    background-attachment: fixed; /* imagem fixa ao rolar */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

/* --- Responsivo (mobile) --- */
@media (max-width: 768px) {
    .bg-fixa {
        height: 250px;                /* menor altura */
        background-position: center;  /* centraliza a imagem */
        background-attachment: scroll; /* evita falhas no iOS */
        padding: 20px;
    }
}

/* ------------------------------------------------ */

.bg-fixa2 {
    width: 100%;
    height: 300px; /* altura para desktop */
    background-image: url('../img/divi2.jpg');
    background-size: cover;       /* cobre toda a área */
    background-position: top;    /* posiciona a imagem à esquerda */
    background-attachment: fixed; /* imagem fixa ao rolar */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

/* --- Responsivo (mobile) --- */
@media (max-width: 768px) {
    .bg-fixa2 {
        height: 250px;                /* menor altura */
        background-position: left;  /* centraliza a imagem */
        background-attachment: fixed; /* evita falhas no iOS */
        padding: 20px;
    }
}

/* ------------------------------------------------ */

.bg-fixa3 {
    width: 100%;
    height: auto; /* altura sempre automática */
    background-image: url('../img/bg-3.jpg');
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    position: relative;
}

.textos {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7) !important;
    padding: clamp(20px, 5vh, 60px);
}

.textos h2 {
    font-size: clamp(1.6em, 3vw, 3.5em);
    font-weight: 800;
    letter-spacing: -1.5px;
}

.textos p {
    font-size: clamp(1em, 1.5vw, 1.6em);
    font-weight: 400;
}

/* Tornar o card transparente */
.bg-fixa3 .card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Limita a largura total do formulário */
.bg-fixa3 .form-wrapper {
    width: 100%;
    max-width: 900px;
    margin: clamp(20px, 5vh, 40px) auto 0 auto;
}

/* Remove bordas arredondadas */
.bg-fixa3 .card,
.bg-fixa3 .form-control,
.bg-fixa3 .btn-branco {
    border-radius: 0 !important;
}

/* Evita que o card encoste nas laterais em telas menores */
@media (max-width: 768px) {
    .bg-fixa3 .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* Header transparente */
.bg-fixa3 .card-header {
    background: transparent !important;
    border: none;
}

.bg-fixa3 .card-header h4 {
    color: #fff;
}

/* Labels e inputs */
.bg-fixa3 .form-label {
    color: #fff !important;
    font-weight: 600;
}

.bg-fixa3 .form-control {
    background: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}

.bg-fixa3 .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.bg-fixa3 input[type="file"] {
    color: #fff;
}

.bg-fixa3 .form-control:focus {
    border-color: #fff !important;
    box-shadow: 0 0 5px rgba(255,255,255,0.5) !important;
}

/* reCAPTCHA centralizado */
.bg-fixa3 .g-recaptcha {
    margin: 0 auto;
}

/* Botão branco */
.bg-fixa3 .btn-branco {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 20px;
    font-weight: 700;
    transition: 0.3s;
}

.bg-fixa3 .btn-branco:hover {
    background: #fff;
    color: #000;
}

/* --- RESPONSIVIDADE --- */

/* Notebooks / laptops e desktops médios */
@media (min-width: 993px) and (max-width: 1200px) {
    .textos {
        padding: clamp(30px, 5vh, 50px);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .bg-fixa3 {
        background-attachment: scroll;
        height: auto !important;
    }

    .textos {
        padding: clamp(25px, 5vh, 40px);
    }
}

/* Celulares */
@media (max-width: 768px) {
    .textos {
        padding: clamp(20px, 5vh, 30px);
    }
}

/* Celulares muito pequenos */
@media (max-width: 480px) {
    .textos {
        padding: clamp(15px, 5vh, 20px);
    }
}





/* footer */   
.footer {
    background-color: #034454; /* ou outra cor de fundo */
    color: #fff;
    padding: 60px;
    text-align: center;
    font-size: 0.95em;
    height: auto;
}

.footer p {
    margin: 0;
    line-height: 1.6;
}

.footer strong {
    color: #0b7a96; /* cor destaque da marca */
}

/* fim footer */ 


/* Back to Top */

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #006F89;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;  /* Inicialmente oculto */
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Exibir o botão quando rolar para baixo 100px */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Para o ícone da seta */
.back-to-top i {
    pointer-events: none;
    z-index: 1;  /* Coloca a seta sobre o SVG */
}

/* Estilo do SVG (círculo de preload) */
.circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);  /* Começar a animação no topo */
}

/* Estilo do círculo */
.circle-svg circle {
    stroke-dasharray: 351.2; /* Circunferência do círculo (2 * PI * r) = 2 * 3.1416 * 56 */
    stroke-dashoffset: 351.2; /* Inicia com a borda "invisível" */
    transition: stroke-dashoffset 0.3s ease; /* Suaviza o preenchimento da borda */
}

/* Função para o efeito de borda progressiva com base no scroll */
@keyframes fill-border {
    0% {
        stroke-dashoffset: 351.2;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* FIM Back to Top */

/* cookie banner */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #cookie-banner p {
    margin: 0;
    max-width: 800px;
    line-height: 1.5;
  }

  #accept-cookies {
    background: #ff8000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 0px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  #accept-cookies:hover {
    background: #e67100;
  }

/* fim do cookie banner */

/* efeitos */
.fade-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}


/* fim efeitos */


/* =========================
   INICIATIVA
========================= */

.iniciativa{
    background-color: #ebebeb;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.iniciativa h2{
  color: #000000;
  font-size: 4em;
  font-weight: 800;
}

/* Alinhamento geral das colunas da seção Iniciativa */
#iniciativa .row {
  display: flex;
  align-items: center; /* centraliza verticalmente */
}

/* Coluna da esquerda */
#iniciativa .col-sm-6:first-child {
  text-align: right; /* alinha conteúdo à direita no desktop */
  padding: 50px;
}

/* Títulos da coluna esquerda */
#iniciativa .col-sm-6:first-child h2 {
  text-align: end;
  color: #006F89;
}

/* Coluna da direita (imagem) */
#iniciativa .col-sm-6:last-child {
  text-align: center;
}

/* Garantindo que a imagem fique centralizada */
#iniciativa .col-sm-6:last-child img {
  display: block;
  margin: 0 auto;
  border-radius: 50px;
}

/* ========= RESPONSIVIDADE PARA CELULAR ========= */
@media (max-width: 767px) {

  /* Inverte a ordem: imagem primeiro, texto depois */
  #iniciativa .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  /* Texto centralizado no mobile */
  #iniciativa .col-sm-6:first-child {
    text-align: center;
    margin-top: 20px;
  }

  #iniciativa .col-sm-6:first-child h2 {
    text-align: center;
  }
}


/* =========================
   BUSCAMOS
========================= */
.buscamos {
    padding: 50px;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.buscamos h2 {
    color: #006F89;
    font-size: 4em;
    font-weight: 800;
}

.buscamos h5 {
    color: #ffffff;
    font-size: 1em;
    font-weight: 800;
}


/* ----------------------
   COLUNAS: igualar altura
----------------------- */
.row > .col-6,
.row > .col-md-3 {
    display: flex;
    
}


/* ----------------------
   CARD
----------------------- */
.mycard {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #006F89;
    color: #ffffff;
    margin: 10px; /* <-- margem para afastar cards */
    border-radius: 0px;
    text-align: center;
    height: 100%; /* mesma altura */
}

.mycard:hover {
   
    background-color: #3896ac;
   
}

.mycard img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}


/* ----------------------
   MOBILE
----------------------- */
@media (max-width: 576px) {

    .buscamos h2 {
    color: #006F89;
    font-size: 2.5em;
    font-weight: 800;
}

    .buscamos {
        height: auto;
    }

    .mycard {
        padding: 15px;
        margin: 8px; /* mantém espaçamento no mobile */
    }

    .mycard img {
        width: 60px;
        height: 60px;
    }

    .mycard h5 {
        font-size: 0.8em;
    }
}

/* Espaçamento entre linhas no mobile */
@media (max-width: 576px) {
    .row > .col-6 {
        margin-bottom: 15px;
    }
}


/* =========================
   Seção "Como participar"
========================= */
.participar {
    background-color: #006F89;
    color: #ffffff;
    min-height: 100vh;             /* altura mínima */
    height: clamp(60vh, 80vh, 100vh); /* altura responsiva */
    padding: clamp(40px, 5vh, 100px) clamp(20px, 5vw, 50px); /* espaçamento superior/inferior responsivo */
    display: flex;
    align-items: center;           /* centraliza verticalmente o conteúdo dentro do container-fluid */
    box-sizing: border-box;
}

.participar .row {
    width: 100%;
}

/* Coluna esquerda (texto) */
.participar .col-sm-6:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centraliza verticalmente */
    align-items: flex-start; /* alinha horizontalmente à esquerda */
}

/* Coluna direita (imagem) */
.participar .col-sm-6:last-child {
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    align-items: center;     /* centraliza verticalmente */
}

/* Título */
.participar h2 {
    font-size: clamp(2.5em, 5vw, 4em);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
}

/* Imagem */
.participar img {
    border-radius: 50px;
    max-height: 70vh; /* limita altura para não quebrar o layout */
    width: auto;
}

/* =========================
   Media Queries
========================= */

/* Tablets (768px a 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .participar {
        padding: 40px 30px;
        height: clamp(50vh, 70vh, 90vh);
    }

    .participar h2 {
        font-size: 2em;
    }

    .participar img {
        max-height: 50vh;
    }
}

/* Notebooks pequenos (992px a 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .participar {
        padding: 50px 40px;
        height: clamp(55vh, 75vh, 90vh);
    }

    .participar h2 {
        font-size: 2em;
    }

    .participar img {
        max-height: 60vh;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .participar {
        padding: 30px 20px;
        flex-direction: column;
        height: auto;
    }

    .participar .col-sm-6 {
        width: 100%;
        margin-bottom: 30px;
        text-align: center; /* centraliza o texto em telas pequenas */
    }

    .participar h2 {
        font-size: 1.8em;
    }

    .participar img {
        max-height: 40vh;
        margin: 0 auto;
    }
}





/* -----------------------------
          PROPOSTA 
------------------------------ */

/* Container principal */
.montagem-proposta {
    padding: 50px 0;
}

/* Título principal */
.montagem-proposta h2 {
    font-size: 4em;
    font-weight: 800;
    color: #006F89;
     letter-spacing: -1.5px; /* diminui o espaço entre as letras */
}

/* Ícones */
.montagem-proposta h5 i {
    color: #006F89;
    margin-right: 10px; /* espaço entre o ícone e o texto */
}

/* Ajustes gerais */
.montagem-proposta h5 {
    margin-top: 25px;
    display: flex;
    align-items: center;
}

/* Ícones dentro de listas (PDF/Word) */
.montagem-proposta ul i {
    color: #006F89;
    margin-right: 8px;
}

/* Responsivo para telas menores */
@media (max-width: 576px) {
    .montagem-proposta {
        padding: 25px 10px;
    }

    .montagem-proposta h2 {
        font-size: 2.5em;
        text-align: center;
    }

    .montagem-proposta h5 {
        font-size: 1.1em;
    }
}

/* Seção de contato */
.secao-contato {
    width: 100%;
    background-color: #006F89;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    padding: 60px;
}

.secao-contato h2 {
    font-size: 2.4em;
    font-weight: 800;
    margin-bottom: 15px;
}

.secao-contato p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

/* Botão usando sua classe existente */
.secao-contato .btn-branco {
    padding: 15px 40px;
    font-size: 1.2em;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    border-radius: 0;
    transition: 0.3s;
}

.secao-contato .btn-branco:hover {
    background: #fff;
    color: #006F89;
}

/* Responsividade */
@media (max-width: 768px) {
    .secao-contato h2 {
        font-size: 1.8em;
    }

    .secao-contato p {
        font-size: 1.1em;
    }

    .secao-contato .btn-branco {
        width: 100%;
        max-width: 350px;
    }
}


/* Se quiser só para o cookie banner */
#cookie-banner .btn-branco {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 0;
    transition: 0.3s;
}

#cookie-banner .btn-branco:hover {
    background: #fff;
    color: #006F89;
}


