/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  background-color: #fff;
}

/* NAVBAR */
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background-color: #1f2d53; /* ou sua cor principal */
  position: relative;
  z-index: 10;
}




.logoo-anim {
  display: inline-block;
  margin-left: 120px; /* Aumente conforme necessário */
}

#logoo {
  width: 100%;
  max-width: 200px; /* Garante que não ultrapasse esse tamanho */
  height: auto; /* Mantém a proporção */
  margin-left: 43px;
  margin-top: 13px;
}

/* Ajustes para tablets */
@media (max-width: 768px) {
  #logoo {
    max-width: 160px;
    margin-left: 60px;
  }
}

/* Ajustes para celulares */
@media (max-width: 480px) {
  #logoo {
    position: absolute; /* Permite posicionar a imagem livremente */
       top: -68px; /* Ajusta a posição vertical (mova para cima) */
       left: 68px; /* Ajusta a posição horizontal (opcional) */
  }
}


/* LISTA DO MENU */
#navbar-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #2a335c;
}

/* RESPONSIVO (para celular) */
@media (max-width: 768px) {
  #navbar {
    flex-direction: column;
    align-items: center;
  }

  #navbar-list {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }

  #logoo {
    width: 140px;
  }

  .logoo-anim {
    margin-left: 0;
  }
}


body.info {
  font-family: "Segoe UI", sans-serif;
  color: #222;
  background-color: #fff;
}
/* Seção geral */
.section-cards {
  padding: 60px 20px;
  background: #f7f8fa;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

/* Título */
.sub-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

/* Grid dos cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Estilo do card */
.card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}



/* Imagem do card */
.card-image {
  width: 100%;
  height: 180px;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Conteúdo do card */
.card-content {
  padding: 20px 24px;
  text-align: justify;
}

.card-title {
  font-size: 20px;
  color: #28345c;
  margin-bottom: 10px;
  font-weight: 700;
  border-left: 4px solid #F47C20;
  padding-left: 10px;
}

.card-content p {
  font-size: 14px;
  line-height: 1.5;
 
  margin-bottom: 8px;
}

/* Responsividade para tablets */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsividade para celulares */
@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 160px;
  }

  .sub-title {
    font-size: 24px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-content p {
    font-size: 13px;
  }
}
#navbar::before,
#navbar::after {
  content: none !important;
  display: none !important;
}



#navbar {
  content: none !important;
  height: 74px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: none;
  z-index: 1000;
  box-sizing: border-box;
  transition: top 0.3s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Logo dentro da navbar */
#navbar #logo {
  margin-top: 6px;
  height: 38px;
  display: block;
}

/* Links da navbar */
#navbar a {
  text-decoration: none;
  color: #2a335c;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 8px;
  transition: color 0.3s ease;
}

#navbar a:hover {
  color: #ff6600;
}

/* --- Responsividade --- */

/* Para telas menores que 768px (tablets e celulares maiores) */
@media (max-width: 768px) {
  #navbar {
    height: 45px;          /* navbar um pouco mais baixa */
    padding: 0 15px;       /* menos espaçamento lateral */
  }
  
  #navbar #logo {
    height: 32px;          /* logo menor */
    margin-top: 4px;
  }

  #navbar a {
    font-size: 14px;       /* texto menor */
    padding: 4px 6px;
  }
}

/* Para telas menores que 480px (celulares pequenos) */
@media (max-width: 480px) {
  #navbar {
    height: 40px;          /* navbar mais compacta */
    padding: 0 10px;
  }
  
  #navbar #logo {
    height: 28px;          /* logo ainda menor */
    margin-top: 3px;
  }

  #navbar a {
    font-size: 12px;       /* texto bem pequeno */
    padding: 3px 5px;
  }

  /* Caso queira esconder alguns links no celular, por exemplo */
  #navbar a.hide-on-mobile {
    display: none;
  }
}

/* Sombra ao passar o mouse */
#navbar:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Classe que esconde o navbar */
#navbar.hide {
  top: -100px;
}

/* Responsividade opcional para ajustar layout em telas menores */
@media (max-width: 768px) {
  #navbar {
    flex-direction: column;
    padding: 10px 5%;
  }
}

.contact-section .container {
  max-width: 1180px;
  margin: auto;
  background: #fff;
  border: 2px solid #F47C20;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  margin-top: -49px;
}

/* Centraliza logo e título */
#logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 180px;
}

.contact-header h2 {
  text-align: center;
  font-size: 32px;
  color: #f68631;
  margin-bottom: 30px;
}

/* Layout do corpo */
.contact-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Informações */
.contact-info {
  flex: 1 1 300px;
}

.contact-info ul {
  padding: 0;
  list-style: none;
}

.contact-info li {
  font-size: 16px;
  color: #2a335c;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  word-break: break-word;
}

/* Formulário */
.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.field-group input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #2a335c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #f68631;
}




/* Mobile */
@media (max-width: 768px) {
  .contact-body {
    flex-direction: column;
    gap: 30px;
  }

  .field-group {
    flex-direction: column;
  }

  .contact-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
   .contact-body {
    flex-direction: column;
    gap: 30px;
  }

  .field-group {
    flex-direction: column;
  }

  .contact-form button {
    width: 100%;
  }
}



.container-footer {
  background-color: #96969657;
  color: #ffffff;
  padding: 20px 5%;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}

.footer-top {
  text-align: center;
  margin-bottom: 20px;
}

.footer-top a {
  margin: 0 15px;
  color: #2a335c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-top a:hover {
  color: #2a335c;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #2a335c;
    width: 100%;
  padding-top: 15px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.9rem;
  color: #2a335c;
   margin-right: 265px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-left: 265px;
}

/* Para telas menores, tipo tablets e celulares */
@media (max-width: 768px) {
  .footer-social-icons {
    margin-left: 20px; /* ou 0, depende do layout */
  }
}

@media (max-width: 480px) {
  .footer-social-icons {
    margin-left: 10px; /* mais ajustado para celular pequeno */
    gap: 10px; /* opcional, para diminuir o espaçamento */
  }
}

.footer-social-icons a {
 
  font-size: 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
/* Container da seção */
.veic-section {
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Grid com 2 colunas */
.veic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  align-items: stretch;
  margin-top: -45px;
}

/* Responsivo: 1 coluna no mobile */
@media (max-width: 768px) {
  .veic-grid {
    grid-template-columns: 1fr;
  }
}

/* Card individual */
.veic-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
  height: 450px; /* Altura fixa para cards iguais */
  cursor: pointer;
}

.veic-card:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

/* Parte superior azul (imagem) */
.veic-image-box {
  background-color: #2a335c;
  flex: 1 1 50%; /* ocupa metade da altura */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 30px 20px;
  overflow: hidden;
}

/* Título em laranja */
.veic-title {
  font-size: 22px;
  margin-bottom: 20px;
  color: #f68631;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  text-align: center;
}

/* Container para imagens duplas */
.veic-image-duo {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}

/* Imagens redondas para dupla */
.veic-img-round {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f68631;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.veic-img-round:hover {
  transform: scale(1.1);
}

/* Imagem única redonda dentro de .veic-image (antes .veic-img) */
.veic-image .veic-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f68631;
  background-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.veic-image .veic-img:hover {
  transform: scale(1.1);
}

/* Parte inferior laranja (texto) */
.veic-content {
  background-color: #f68631;
  flex: 1 1 50%; /* ocupa metade da altura */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 25px 20px;
  box-sizing: border-box;
  overflow-y: auto; /* rolagem interna se o texto for longo */
}

/* Texto na parte laranja */
.veic-text {
  font-size: 17px;
  margin-bottom: 14px;
  color: #fff;
  text-align: justify;
  line-height: 1.5;
  font-weight: 500;
  text-indent: 0;
  display: block;        /* Garante comportamento de bloco */
}


/* Ajustes para mobile */
@media (max-width: 768px) {
  .veic-card {
    height: auto; /* altura automática no mobile */
  }
  .veic-image-box,
  .veic-content {
    flex: unset;
    padding: 20px;
  }
}


.footer-social-icons img {
  width: 32px;
  height: 32px;
  object-fit: contain; /* garante que ícones diferentes mantenham proporção */
  display: inline-block;
}


@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-copy {
    margin-top: 10px;
    margin-right: 10px;
  }
}


/* Cabeçalho alinhado com logo */
.contact-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.contact-header .logo {
  width: 80px;
}
.contact-header h2 {
  font-size: 2.2rem;
  color: #f68631;
  margin: 0;
  margin-top: -93px;
}

/* Corpo com grid responsivo */
.contact-body {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-info {
  flex: 1;
  min-width: 260px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info li {
  font-size: 1.1rem;
  color: #1f2d53;
  margin-bottom: 15px;
  line-height: 1.5;
}



/* Formulário dividido em colunas no desktop */
.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.field-group input {
  flex: 1;
}



/* Estilização inputs e button */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #F47C20;
}
.contact-form button {
  background: #1F2D53;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #F47C20;
}

/* Feedback pós-envio */
.feedback {
  margin-top: 20px;
  padding: 15px;
  background: #dff0d8;
  color: #3c763d;
  border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-body {
    flex-direction: column;
    gap: 30px;
  }

  .contact-header {
    flex-direction: column;
  }

  .contact-header h2 {
    font-size: 1.8rem;
  }

  .field-group {
    flex-direction: column;
    gap: 15px;
  }

  .contact-info li {
    font-size: 13px;
  }

  .contact-form button {
    width: 100%;
  }
}


/* Logo */
.logo-anim img {
  height: 55px;
  max-width: 100%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

#unidades {
  
  background-color: #e3e2e3;
  font-family: 'Poppins', sans-serif;
  color: #19324C;
  margin-top: 123.5px;
}

.unidades-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.unidades-texto {
  flex: 1 1 45%;
  min-width: 280px;
  color: #f68631;
  margin-left: 20px;     /* empurra um pouco para a direita */
  margin-right: auto;    /* ajuda a manter o alinhamento */
  text-align: center;    /* centraliza o texto dentro do bloco */
  margin-top: 130px;
}


.unidades-texto h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 30px;
  border-bottom: 3px solid #f36f21;
  padding-bottom: 5px;
  display: inline-block;
  color: #2a335c;
}
.unidade-bloco {
  background-color: #e3e2e3;
  padding: 18px 22px;
  margin: 60px 0 20px 15px; /* TOP RIGHT BOTTOM LEFT → move pra baixo e pra direita */
  border-left: 5px solid #f36f21;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s, box-shadow 0.3s;
}


.unidade-bloco:hover {
  background-color: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.unidade-bloco h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.unidades-mapa {
  flex: 1 1 50%;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
 
.unidades-mapa-container {
  background-color: #e3e2e3; /* fundo branco para mais contraste e leveza */
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 420px;
  width: 100%;
  margin: 40px auto; /* centraliza horizontalmente e dá espaço vertical */
  margin-top: -9px;
}

.unidades-mapa-container:hover {
  transform: translateY(-4px); /* eleva um pouco no hover */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}


.unidades-mapa img {
  max-width: 100%; /* garante que respeite o limite do container */
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Responsividade */
@media (max-width: 768px) {
  .unidades-container {
    flex-direction: column;
    align-items: center;
    margin-top: -87px;

  }

  .unidades-texto,
  .unidades-mapa {
    flex: 1 1 100%;
    max-width: 100%;
    margin-left: 43px;
    margin-top: initial;
  }

  .unidades-texto h2 {
    font-size: 28px;
  }

  .unidade-bloco h3 {
    font-size: 17px;
  }

  .unidades-mapa-container {
    max-width: 100%; /* ocupa 100% da largura no celular */
  }
}

/* Centraliza menu horizontalmente */
#navbar-list {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: nowrap;
  padding-right: 62px;
}

/* Links */
#navbar-list li .nav-item {
  color: #1f3469;
  text-decoration: none;
  font-weight: 600;
  padding: 0px 16px;
  border-radius: 6px;
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
  font-size: 22px;
}

#navbar-list li .nav-item:hover,
#navbar-list li .nav-item:focus {
  background-color: #f38838;
  color: #fff;
  outline: none;
}

/* Quando rolar a página */
#navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#navbar.scrolled .nav-item {
  color: #f38838;
}

/* Botão hambúrguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 28px;
  height: 22px;
  justify-content: space-between;
  user-select: none;
}

.menu-toggle span {
  background: #f38838;
  height: 3px;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* Estilos para header e conteúdo principal */
.header-content {
  padding:425px 20px 30px;
  background-image: url("../images/Design sem nome.jpg");
  background-position: center top; /* mostra mais o topo da imagem */
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  min-height: 300px;
  box-sizing: border-box;
}
#heading {
  font-size: 25px;
  margin-bottom: 25px;
  line-height: 1.3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;  /* padrão: centralizado */
}

#highlight-purple {
  color: #f38838;
  font-weight: 700;
}

.sub-heading {
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
  text-align: center; /* padrão: centralizado */
}

.contato-button {
  padding: 14px 30px;
  background-color: #f38838;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 6px 12px rgba(243, 136, 56, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: block;
  margin: 0 auto; /* centralizado em telas pequenas */
}
@media (max-width: 768px) {
  .contato-button {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: 0;
    display: block;
    max-width: 220px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contato-button {
    font-size: 0.85rem;
    margin-left: auto;
    margin-right: 0;
    display: block;
    max-width: 220px;
    width: 100%;
    padding: 12px 20px; /* reduz um pouco o tamanho do botão */
  }
}


.contato-button:hover,
.contato-button:focus {
  background-color: #d96f1a;
  box-shadow: 0 8px 16px rgba(217, 111, 26, 0.6);
  outline: none;
}

/* Ajustes para telas grandes (desktop e maiores) */
@media screen and (min-width: 1024px) {
  .header-content {
    text-align: right;
    padding-right: 100px;
  }

  #heading {
    max-width: 500px;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    word-wrap: break-word;
            position: relative;
        top: -250px;
  }

  .sub-heading {
    max-width: 500px;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    word-wrap: break-word;
    position: relative;
    top: -263px;
  }

  .contato-button {
    margin-left: auto;
    margin-right: 0;
    position: relative;
    top: -278px;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  #navbar-list {
    display: none;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    flex-direction: column;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 95vw;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  #navbar-list.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  #navbar-list li {
    width: 100%;
  }

  #navbar-list li .nav-item {
    display: block;
    width: 100%;
    padding: 14px 10px;
    color: #333;
    white-space: normal;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
  }

  #navbar-list li .nav-item:hover,
  #navbar-list li .nav-item:focus {
    background-color: #f38838;
    color: #fff;
    outline: none;
  }

  .header-content {
    padding: 120px 15px 40px;
  }

  #heading {
    font-size: 11.5px;                 /* menor que antes */
    text-align: right;                
        
    margin-left: auto;
    margin-right: 0;
    line-height: 1.4;
    max-width: 173px;                 /* força quebra mais cedo */
    width: 100%;
    margin-top: -21px;
  }

.sub-heading {
  font-size: 10px;
  max-width: 90vw;
   
}
}
@media (max-width: 768px) {
  .sub-heading {
    font-size: 0.95rem;
    text-align: right;
    word-break: break-word;
    margin-left: auto;
    margin-right: 0;
    line-height: 1.3;
    max-width: 220px;
    width: 100%;
    margin-top: 5px; /* desce o texto só no responsivo */
  }
}

@media (max-width: 480px) {
  .sub-heading {
    font-size: 9px;
    text-align: right;
    word-break: break-word;
    margin-left: auto;
    margin-right: 0;
    line-height: 1.3;
    max-width: 220px;
    width: 100%;
    padding: 0 10px;
    position: relative;
    top:22px; /* desce o texto sem empurrar o layout */
  }
}

 

.section-sobre {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  font-family: "Raleway Bold", Arial, sans-serif;
  
  padding: 1rem; /* padding horizontal e vertical */
  text-align: center;
  
  margin-top: 2.8rem; /* ~45px convertido para rem */
  margin-left: auto;
  margin-right: auto;
}

/* Ajustes para tablets */
@media (max-width: 768px) {
  .section-sobre {
    margin-top: 2rem;
    padding: 0.8rem;
    max-width: 100%;
  }
}

/* Ajustes para celulares */
@media (max-width: 480px) {
  .section-sobre {
    margin-top: 1.5rem;
    padding: 0.5rem;
  }
}


#titulo-section {
  font-size: 2.5rem;
}

#highlight-cyan {
  color: #f68437;
}

.line {
  width: 200px;
  height: 8px;
  margin-top: 8px;
  background: #f68437;
  border-radius: 10px;
}
.linee {
  width: 200px;
  height: 8px;
  margin: -23px auto 0 auto; /* margem superior menor */
  background: #1f3469;
  border-radius: 10px;
}

.linee {
  width: 200px;
  height: 8px;
  margin: -23px auto 0 auto; /* margem superior menor */
  background: #1f3469;
  border-radius: 10px;
}



.text-sobre {
  margin-top: 10px; /* força o texto a subir "invadindo" o espaço anterior */
  font-size: 1.3rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  max-width: 900px;
  color: #1f3469;
}



#logo {
  display: block;
  margin: 20px auto 60px; /* Espaço maior abaixo da logo */
  max-width: 200px;
}

.section-sobre {
  text-align: center;
  padding: 10px 20px;
}

.sub-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

#highlight-cyan {
  color: #f38838;
}

.text-sobre {
  text-align: justify;
  font-size: 1rem;
  color: #28355a;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
 font-family: "Raleway Bold", sans-serif;
 margin-top: -10px;
}


.identity-orion {
  display: flex;
  flex-wrap: wrap;                /* permite quebrar em telas pequenas */
  justify-content: center;
  gap: 41px;
  padding: 60px 20px;
  box-sizing: border-box;
  margin-top: -54px;
}

/* CARD moderno e clean */
.id-orion {
  flex: 1 1 calc(33.33% - 30px);  /* 3 por linha com espaço */
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.id-orion:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* IMAGEM */
.id-img {
  width: 169px;
  height: auto;
  margin-bottom: 20px;
}

/* TÍTULO */
.id-title {
  font-size: 22px;
  color: #f68631;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}

/* TEXTO */
.id-text {
    font-size: 15px;
    color: #2a335c;
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
    word-spacing: 0em;
    font-weight: 700;
    margin: 0; /* remove margens que podem empurrar o texto */
    padding-top: 0; /* garante que não tenha espaço extra acima */

}

/* RESPONSIVO: em telas menores, empilha os cards */
@media (max-width: 768px) {
  .id-orion {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .identity-orion {
    padding: 40px 15px;
    gap: 20px;
  }
}



/* Responsivo */
@media (max-width: 768px) {
  #logo {
    margin: 20px auto 40px;
  }

  .sub-title {
    font-size: 1.6rem;
  }

  .text-sobre {
    font-size: 1rem;
    margin: 30px auto 40px;
    max-width: 95%;
  }

  .identity-orion {
    gap: 20px;
  }

  .id-orion {
    width: 90%;
    min-height: 400px;
    padding: 25px 15px;
  }

  .id-img {
    width: 140px;
  }
}


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-button img {
  width: 60px;
  height: 60px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}
