
.navbar-colorida {
  background: linear-gradient(90deg, rgb(0, 47, 107), rgb(0, 75, 150));
  height: 120px; /* ajustei para ficar elegante */
  padding: 0 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  font-family: 'Bebas Neue', sans-serif; /* fonte impactante */
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Icone, ainda é rascunho pq não tenho a foto*/
.navbar-colorida .navbar-brand {
  color: #ffffff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.navbar-colorida .navbar-brand:hover {
  transform: scale(1.1) rotate(-5deg);
}

/* Aproxima a seta do texto */
.navbar .dropdown-toggle-split {
  padding-left: 0.15rem;
  padding-right: 0.15rem;
  
}

/* Aumenta levemente o tamanho da seta */
.navbar .dropdown-toggle::after {
  font-size: 0.9rem;   /* padrão é menor */
}

/* Opcional: alinha melhor verticalmente */
.navbar .dropdown-toggle {
  display: flex;
  align-items: center;
  color:  rgb(0, 47, 107);
}



/* Aviadamento do icone, que vai ser a foto */

/* Logo da navbar */

.logo-navbar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .logo-navbar {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .logo-navbar {
    width: 40px;
    height: 40px;
  }
}

/* Hover da logo */
.logo-navbar:hover {
  transform: scale(1.2) rotate(10deg); /* animação divertida */
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.7); /* glow dourado */
  cursor: pointer;
}


/* Opções da navbar */
.navbar-colorida .nav-link {
  color: #ffffff;
  margin: 0 0.7rem;
  font-weight: 500;
  font-size: 17px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-colorida .nav-link:hover {
  color: #5db1ff;
  transform: translateY(-3px);
  text-decoration: underline wavy #ffc107;
}

.navbar-colorida .nav-link.active {
  color: azure;
  background-color: rgba(93, 177, 255, 0.22);
  border-radius: 25px;
  padding: 5px 15px;
  transition: all 0.3s ease;
}

/* os submenuzinhoinho */
.navbar-colorida .dropdown-menu {
  background-color: #00336b;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.navbar-colorida .dropdown-item {
  color: #ffffff;
  transition: all 0.3s ease;
}

.navbar-colorida .dropdown-item:hover {
  background-color: #0055aa;
  color: #ffc107;
}

/* a parte da pisquisa*/
.navbar-colorida .form-control {
  border-radius: 50px;
  padding: 0.4rem 1rem;
  border: none;
  transition: all 0.3s ease;
}

.navbar-colorida .btn-outline-info {
  border-radius: 50px;
  border: 2px solid #ffc107;
  color: #ffc107;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar-colorida .btn-outline-info:hover {
  background: #ffc107;
  color: #00336b;
  transform: scale(1.1);
  box-shadow: 0 0 10px #ffc107;
}

/* parte para aviadar no cll tbm*/
.navbar-colorida .navbar-toggler {
  border: 2px solid #ffffff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.navbar-colorida .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Para quando passar o mouse vai dar um efeitinho gay */
.navbar-colorida .nav-link:hover,
.navbar-colorida .navbar-brand:hover,
.navbar-colorida .icon-navbar:hover,
.navbar-colorida .btn-outline-info:hover {
  cursor: pointer;
}

/*Fontes do Site*/


@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.introducao {
  background-image: url("../imagens/in.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.195);

  padding: 80px 20px; /* controla a altura do bagulho */
  
  text-align: center;
  color: white;

  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  position: relative;
}

.introducao h1 {
  font-size: clamp(2.5rem, 10vw, 6rem);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}



.servi{
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem ;
    font-weight: 900;
    letter-spacing: 3px;
    color: rgb(70, 70, 181);
}


/* Parte dos serviços*/
.servicos-section {
  background: linear-gradient(180deg, #f0f4ff 0%, #d9e4ff 100%);
  padding: 60px 20px;
}

/* Título da seção */
.servicos-section h2 {
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #00336b;
  margin-bottom: 50px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}

/* Grupo di cards */
.servicos-section .card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

/* Hover nos cards */
.servicos-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Imagem do card */
.servicos-section .card img {
  object-fit: cover;
  height: 200px;
  width: 100%;
  transition: transform 0.3s ease;
}

.servicos-section .card img:hover {
  transform: scale(1.05);
}

/* Título e texto do card */
.servicos-section .card-title {
  font-family: 'Bebas Neue', sans-serif;
  color: #0d3c91;
  font-size: 1.5rem;
}

.servicos-section .card-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
  font-family:"Lexend", sans-serif;
}

/* Botão do card */
.servicos-section .btn {
  background: #0d3c91;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.servicos-section .btn:hover {
  background: #ffc107;
  color: #00336b;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255,193,7,0.4);
}

/* Pra deixar responsivinho */
@media (max-width: 992px) {
  .servicos-section .card img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .servicos-section .card img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .servicos-section h2 {
    font-size: 2rem;
  }
  
  .servicos-section .card img {
    height: 140px;
  }

  .servicos-section .card-title {
    font-size: 1.2rem;
  }

  .servicos-section .card-text {
    font-size: 0.9rem;
  }
}

/*Vou ver se faço uma parte pro resumiuinho ou se só deixo aquela parte e mesmo*/

/*parti do rodapé*/

.footer {
  background-color: #002f6b;
  color: #fff;
  padding: 30px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copy p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-social ul {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.footer-social a {
  color: #ffc107;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

/* Responsivo */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}


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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-contact i {
  color: #ffc107;
  font-size: 1.2rem;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffc107;
}

/* ===============================
   SEÇÃO SOBRE
================================ */
.sobre-section {
  background: linear-gradient(180deg, #d9e4ff 0%, #6f93d5 100%);
  padding: 80px 20px;
}

/* TÍTULO */
.sobre-section .subt h2 {
  text-align: center;
  color: #00336b;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
}

/* CONTAINER */
.home-sobre-cards-verticais {
  max-width: 900px;
  margin: 0 auto;
}

/* CARD */
.sobre-card-vertical {
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

.sobre-card-vertical:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
}

/* FLEX QUE NÃO QUEBRA */
.sobre-card-flex {
  display: flex;
  align-items: center;
}

/* ÍCONE */
.sobre-icone-wrapper {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-icone {
  font-size: 3.8rem;
  background: linear-gradient(135deg, #0d6efd, #6f9cff);
 background-clip: text;              /* padrão */
-webkit-background-clip: text;      /* Chrome / Safari */
-webkit-text-fill-color: transparent;

}

/* TEXTO */
.sobre-conteudo {
  flex: 1;
}

.sobre-card-vertical .card-body {
  padding: 30px;
}

.sobre-card-vertical h5 {
  color: #00336b;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.sobre-card-vertical p {
  color: #000241;
  line-height: 1.7;
  margin-bottom: 0;
}

/* BOTÃO */
.btn-saiba-mais {
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #02265d, #314674);
  border: none;
  transition: 0.3s ease;
}

.btn-saiba-mais:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
}

/* MOBILE (NÃO ALTERNA) */
@media (max-width: 768px) {
  .sobre-card-flex {
    flex-direction: row;
  }
}




/* ===============================
   MISSÃO VALORES E NUM SEI O QUE
================================ */
.jeito-section {

  padding: 80px 20px;
}

/* CONTAINER */
.container-jeito {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO */
.jeito-titulo {
  font-size: 2.4rem;
  font-weight: 700;
  color: #00336b;
  margin-bottom: 20px;
}

/* TEXTO DE ABERTURA */
.jeito-intro {
  font-size: 1.05rem;
  color: #02003a;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 60px;
}

/* BLOCOS */
.jeito-blocos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ITEM */
.jeito-item h3 {
  font-size: 1.2rem;
  color: #1a3d7e;
  font-weight: 600;
  margin-bottom: 10px;
}

.jeito-item p {
  font-size: 0.95rem;
  color: #00318d;
  line-height: 1.7;
  font-weight: 600;
}

.jeito-item{
  background-color: #fff9d9;
  border-radius: 20px;
  padding: 20px;
  border: double  #ffc107;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .jeito-blocos {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .jeito-titulo {
    font-size: 2rem;
  }
}


/*Parte dos clientes*/

/* ===============================
   SEÇÃO CLIENTES
================================ */
.clientes-section {
   background: linear-gradient(180deg,#7b9cdb 0%, #d5f4ff 100%);
  padding: 80px 20px;
}

/* CONTAINER */
.clientes-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO */
.clientes-titulo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00336b;
  margin-bottom: 50px;
}

/* GRID DAS BOLINHAS */
.clientes-bolinhas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
}

/* BOLINHA */
.cliente-bolinha {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* LOGO */
.cliente-bolinha img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(10%);
  transition: all 0.3s ease;
}

/* HOVER SUAVE */
.cliente-bolinha:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cliente-bolinha:hover img {
  filter: grayscale(0%);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .clientes-bolinhas {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

h1, h2, h3, h4, h5, h6{
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
}


#btn-topo {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg, #0055aa, #00336b);
  color: #fff;

  font-size: 26px;

  cursor: pointer;
  display: none;
  z-index: 999;

  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.lang-switch-container {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.15); /* Fundo sutil */
    padding: 3px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    text-decoration: none !important;
    color: #ffffff !important;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Estilo para destacar qual língua está ativa */
.lang-btn.active {
    background: #ffffff; /* Fundo branco no ativo */
    color: #003366 !important; /* Texto azul escuro para contraste */
}

.lang-flag {
    width: 18px;
    height: auto;
    border-radius: 2px;
    display: block;
}

#btn-topo:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #0077ff, #0055aa);
}


/* ===== MENU MOBILE ===== */
@media (max-width: 991px) {
  .navbar-colorida .navbar-collapse {
    background: linear-gradient(180deg, rgb(0, 47, 107), rgb(0, 75, 150));
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
  }

  .navbar-colorida .nav-link {
    color: #ffffff !important;
    font-size: 1.2rem;
    padding: 0.8rem 0;
  }

  .navbar-colorida .dropdown-menu {
    background-color: #002f6b;
  }
}
