/* fontes */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
.rajdhani-light {
  font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.rajdhani-regular {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.rajdhani-medium {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.rajdhani-semibold {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.rajdhani-bold {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.raleway-regular {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.raleway-bold {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.font17{
	font-size: 17px;
}
.fontwhite{
    color: white;
}
:root {
  --cor-primaria: #296db7; /* Azul vibrante */
  --cor-secundaria: #6c757d; /* Cinza médio */
  --cor-fundo-claro: #f8f9fa; /* Branco quase */
  --cor-texto-escuro: #212529; /* Preto quase */
  --cor-destaque-vermelho: #dc3545; /* Vermelho */
}
/* CSS Document */
* {
  margin: 0;
  top: 0;
  right: 0;
  font-size: 12px;
}

/* se quiser esconder scroll horizontal */
body {
  overflow-x: hidden;
}
input,
textarea,
select,
button {
  max-width: 100%;
}

/* Fontes */
.tamanhoFonte {
  font-size: var(--size);
}
.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.inter-bold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
/* Fontes */
body {
  max-width: 100vw;
}
.barraCima {
  background: #A11C26;
  min-height: 50px;
  width: 100vw;
  z-index: 1;
}
.barraCimaConteudo {
  margin: 0 20vw;
  padding: 15px 0;
  color: white;
}
.esquerdaBarraCima {
  max-width: 15vw !important;
  min-width: 15vw !important;
  height: 100%;
  float: left;
  z-index: 2;
}
.direitaBarraCima {
  max-width: 15vw !important;
  text-align: right;
  min-width: 15vw !important;
  height: 100%;
  float: right;
  z-index: 3;
}
.menuPrincipal {
  background: #FFF;
  min-height: 100px;
  width: 100vw;
  z-index: 1;
}
.menuPrincipalConteudo {
  margin: 0 10%;
  padding: 30px 0;
  color: white;
}
.slideshow {
  min-width: 100vw;
  min-height: 400px;
  height: 400px;
  max-width: 100vw;
}
.slider {
  background-image: var(--bg-image);
  background-repeat: no-repeat; /* não repete */
  background-size: cover; /* preenche toda a tela */
  background-position: center; /* centraliza */
  height: auto; /* altura da tela inteira */
}
/* navbar */
/* NAVBAR */
.navbar {
  width: 100vw;
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
	position: sticky;
	z-index: 99;
}
/* CONTAINER */
.container {
  max-width: 80vw;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* LOGO */
.logo img {
  height: 75px;
}
/* MENU */
.menu {
  display: flex;
  gap: 30px;
}
.menu a {
  text-decoration: none;
  color: #1d3557;
  font-weight: 600;
  position: relative;
  padding-bottom: 1px;
}
.menu a:hover {
  color: #000;
}
.menu a {
  position: relative;
  padding: 15px 0;
}
.menu a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0; /* Fica dentro do link */
  width: 100%;
  height: 3px;
  background: #c62828;
  border-radius: 2px;
}


/* BOTÃO */
.btn-orcamento {
  background: #43a047;
  color: #fff;
  padding: 40px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-orcamento:hover {
  background: #43a047;
}
.btn-orcamento-mobile{
    display:none;
}
.menu-orcamento{
    background: #ff0;
}
.menu-orcamento a{
    padding: 100px;
}
/* RESPONSIVO */

/* slider */
.hero-slider {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.slide {
  width: 100%;
  height: 100%;
  background: var(--bg) center/cover no-repeat;
  position: absolute;
  inset: 0;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 25, 60, 0.95) 0%, rgba(0, 25, 60, 0.75) 45%, rgba(0, 25, 60, 0.3) 70%, rgba(0, 25, 60, 0.05) 100%);
  z-index: 1;
}
.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* TEXTO */
.hero-text {
  max-width: 500px;
  color: #fff;
}
.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 18px;
  margin-bottom: 15px;
}
.hero-text span {
  font-size: 14px;
  opacity: 0.85;
}
/* IMAGEM */

.hero-image {
  position: absolute;
  bottom: 0;          /* encosta no fundo da section */
  right: 5%;         /* afasta um pouco da borda direita */
  z-index: 2;
  display: flex;
  align-items: flex-end;
}

.hero-image img {
  max-height: 85vh;
  height: auto;
  object-fit: contain;
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  margin-top: -80px;
  z-index: 10 !important;
  position: relative;
  overflow: visible;
}
.card {
  background: white;
  border-radius: 12px;
  padding: 60px 25px 60px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative; /* SEM ISSO NÃO FUNCIONA */
  
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.icon {
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.card h3 {
  color: #d90000;
  font-size: 18px;
  margin-bottom: 15px;
}
.card p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}.arrow {
  position: absolute !important;
  top: auto !important;        /* ISSO REMOVE QUALQUER TOP */
  bottom: 20px !important;     /* FORÇA PRA BAIXO */
  right: 20px !important;

  width: 35px;
  height: 35px;
  border: 1px solid #ccc;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #777;
  font-size: 16px;
    transform: rotate(-45deg); /* ⬅️ gira a seta */
opacity: 0.5;
}
.about-section {
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  background: white;
}
/* Contadores */
.stats {
  display: flex;
  justify-content: space-between;
  max-width: 60vw;
  margin: 40px auto 60px; /* ⬅️ centraliza o bloco inteiro */
}
.stats div h2 {
  font-size: 52px;
  color: #0b4da2;
  margin: 0;
}
.stats div span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #0b4da2;
}
/* Grid principal */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  min-width: 1200px;
  margin: 60px auto;
}
.text h3 {
  font-size: 36px;
  color: #0b4da2;
  margin-bottom: 20px;
}
.text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}
.btn {
  display: inline-block;
  background: #c71c22;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}
.btn:hover {
  background: #a5171c;
}
/* Mapa */
.map img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin-left: auto;
}
.team-section {
  background: var(--cor-primaria);
  padding: 80px 0;
  /* bordas arredondadas só embaixo */
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden; /* importante para o conteúdo respeitar o raio */
}
.team-container {
  max-width: 70vw;
  margin: 0 auto;
  background: #2c6fb3;
  border-radius: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 100px;
  align-items: center;
}
/* Imagem */
.team-image img {
  height: 80%;
  border-radius: 30px;
  display: block;
}
/* Texto */
.team-text h2 {
  color: white;
  font-size: 62px;
  line-height: 1.2;
  margin-bottom: 25px;
}
.team-text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
  margin-bottom: 15px;
  font-size: 18px;
}
/* Botão */ .btn-light {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #7db9ff;
  color: #0b2b4a;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}
.btn-light img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  padding: 0px;
  box-sizing: content-box;
}
.btn-light:hover {
  background: #6aaeff;
}
/** divisoria */
.divider-image {
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 10;
}
.divider-image img {
  width: 100%;
  display: block;
}





/* secao-contato-index */

.contact-section {
  background: white;
  padding: 120px 0;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Títulos */
.contact-container h2 {
  font-size: 36px;
  font-weight: 400;
  color: #0b2b4a;
}

.contact-container h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0b2b4a;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* linha dupla */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid #dcdcdc;
  font-size: 15px;
  outline: none;
}

.contact-form input::placeholder {
  color: #bbb;
}

/* Botão */
.btn-submit {
  margin: 30px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #62b36f;
  color: #083c20;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.btn-submit .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit svg {
  width: 16px;
  height: 16px;
}


.contact-container {
  max-width: 600px;   /* mais elegante */
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  margin-top: 40px;
  gap: 18px;
}

/* linha dupla */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 15px;
}

/* campo email */
.contact-form > input {
  max-width: 100%;
}

/* botão */
.btn-submit {
  margin-top: 25px;
  padding: 16px 28px;
}


@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .map img {
    margin: 30px auto 0;
  }
  .stats {
    justify-content: center;
    gap: 40px;
  }
}
.team-section {
  background: var(--cor-primaria);
  position: relative;
}
/* RESPONSIVO */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    justify-content: flex-start;
    text-align: start;
  }
  .hero-image img {
    max-height: 50vh;
    margin-top: 30px;
  }
}


.footer {
  background: radial-gradient(circle at top left, #1a1a1a 0%, #050505 70%);
  padding: 90px 0 70px;
  color: white;
}

.footer-container {
  max-width: 65vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
}

/* LOGO */
.footer-logo {
  width: 220px;
  margin-bottom: 25px;
}

/* TEXTO */
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.footer-social img {
  width: 28px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-social img:hover {
  opacity: 1;
}

/* TÍTULOS */
.footer-links h4 {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 600;
}

/* LISTAS */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 16px;
}

/* LINKS */
.footer-links a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.footer-links a::before {
  content: "›";
  color: #fff;
  font-size: 20px;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links a {
    justify-content: center;
  }
}
/* ============================= */
/* MOBILE & TABLET FIXES */
/* ============================= */

@media (max-width: 1200px) {

  .about-section,
  .content-grid {
    min-width: unset !important;
    max-width: 90vw;
  }

  .stats {
    max-width: 90vw;
    gap: 30px;
  }

  .team-container {
    max-width: 90vw;
    padding: 60px;
  }

  .footer-container {
    max-width: 90vw;
  }
}

@media (max-width: 900px) {

  /* HERO */
  .hero-slider {
    height: auto;
    min-height: 90vh;
  }

  .hero-text h1 {
    font-size: 34px;
  }

  .hero-text p {
    font-size: 16px;
  }

  /* CARDS */
  .cards-container {
    grid-template-columns: 1fr 1fr;
    margin-top: -40px;
  }

  /* ABOUT */
  .stats {
    flex-direction: column;
    text-align: center;
  }

  .stats div h2 {
    font-size: 42px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .map img {
    margin: 0 auto;
  }

  /* TEAM */
  .team-container {
    grid-template-columns: 1fr;
    padding: 50px;
    text-align: center;
  }

  .team-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  .team-text h2 {
    font-size: 40px;
  }

  /* FORM */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links a {
    justify-content: center;
  }
}

@media (max-width: 480px) {

  /* HERO */
  .hero-text h1 {
    font-size: 28px;
  }

  .hero-image img {
    max-height: 40vh;
  }
	.esquerdaBarraCima{
		display: none;
	}
	.direitaBarraCima {
    max-width: 80vw !important;
    height: 100%;
    align-items: center;
    text-align: center;
		    text-align: center;
}
  /* CARDS */
  .cards-container {
    grid-template-columns: 1fr;
  }

  /* TEAM */
  .team-container {
    padding: 35px;
  }

  .team-text h2 {
    font-size: 32px;
  }

  /* FORM */
  .contact-container {
    max-width: 80vw;
	  margin: auto;
	  padding: 0;
  }

  /* FOOTER */
  .footer-logo {
    width: 160px;
    margin: 0 auto 20px;
  }
}.hamburger {
  width: 32px;
  height: 24px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #1d3557;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 30px 0;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 999;
  }

  .menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 600px) {

  .barraCimaConteudo {
    margin: 0;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
  }

  .esquerdaBarraCima {
    display: none;
  }

  .direitaBarraCima {
    float: none;
    min-width: unset !important;
    max-width: unset !important;
    width: auto;
    text-align: center;
  }
}

/* ===== PRODUCTS PAGE ===== */

.products-hero {
  position: relative;
  height: 420px;
  background: url("../assets/img/products-hero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
}

.products-hero-content {
  position: relative;
  text-align: center;
  color: #0b2b4a;
}

.products-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.products-hero-content p {
  font-size: 12px;
  color: #0b2b4a;
	font-weight: 400;
}
/* about */


/* ===== ABOUT PAGE ===== */

.about-hero {
  position: relative;
  height: 420px;
  background: url("../assets/img/about-hero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
}

.about-hero-content {
  position: relative;
  text-align: center;
  color: #0b2b4a;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-hero-content p {
  font-size: 12px;
  color: #0b2b4a;
	font-weight: 400;
}

/* Texto */

.about-text-section {
  background: white;
  padding: 80px 0;
}

.about-text-container {
  max-width: 60vw;
  margin: 0 auto;
  color: #0b2b4a;
  line-height: 1.8;
  font-size: 15px;
}

.about-text-container p {
  margin-bottom: 25px;
	font-weight: 400;
	font-size: 18px;
}
/* ===== ABOUT CONTENT ===== */

.about-content-section {
  max-width: 60vw;
  margin:  auto;
  padding: 0 20px;
  text-align: center;
}

.about-block {
  margin-bottom: 80px;
}

.about-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 35px;
}

/* Títulos */
.about-block h3 {
  color: #0b4da2;
  font-size: 42px;
  margin-bottom: 15px;
	text-align: left;
}

/* Texto */
.about-block p {
  color: #444;
  line-height: 1.7;
  font-size: 17px;
	text-align: justify;
	padding-bottom: 35px;
}

/* Rodapé */
.about-footer-title {
  color: #0b4da2;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-content-section {
    margin: 60px auto;
  }

  .about-img {
    margin-bottom: 25px;
  }

  .about-block h3 {
    font-size: 20px;
  }
}



/* ===== ABOUT PILLARS ===== */

.about-pillars {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.about-pillars-title {
  text-align: center;
  color: #0b4da2;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
}

.about-pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.about-pillar img {
  width: 100%;
  border-radius: 16px;
}

/* Texto */
.about-pillar-text h3 {
  color: #0b4da2;
  font-size: 42px;
  margin-bottom: 15px;
}

.about-pillar-text p {
  color: #444;
  line-height: 1.7;
  font-size: 17px;
	text-align: justify;
}

/* Alternar lados */
.about-pillar.reverse {
  grid-template-columns: 1fr 1fr;
}

.about-pillar.reverse img {
  order: -1;
}

@media (max-width: 768px) {
  .about-pillar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-pillar.reverse img {
    order: 0;
  }

  .about-pillar {
    gap: 30px;
  }
}

.slide {
  position: relative; /* referência para posicionamento absoluto */
}


/* ===== NOSSA ESTRUTURA ===== */

.estrutura {
  max-width: 1200px;
  margin: 120px auto;
}

.estrutura h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #0b4da2;
  margin-bottom: 50px;
}

/* GRID PRINCIPAL */
.estrutura-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 520px; /* altura fixa igual da imagem */
}

/* COLUNA DE TEXTOS */
.estrutura-textos {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* BLOCOS */
.bloco {
  flex: 1;
  padding: 30px;
  font-size: 16px;
  line-height: 1.7;
  color: #0b2b4a;
  align-items: center;
	text-align: justify;
}

/* CORES */
.branco {
  background: #ffffff;
}

.cinza {
  background: #D9D9D9;
}
.cinza-medio {
  background: #C0C0C0;
}
.cinza-escuro {
  background: #9A9A9A;
}
.negrito{
	font-weight: 800;
}
/* TEXTO */
.bloco strong {
  display: block;
  color: #0b4da2;
  margin-bottom: 8px;
  font-weight: 700;
}

/* IMAGEM */
.estrutura-imagem {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.estrutura-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ========================= */
/* FIX DO SLIDE NO MOBILE */
/* ========================= */

@media (max-width: 900px) {
  
  .slide .container {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: 60vh;   /* garante que o fundo azul cubra tudo */
  }

  .hero-image {
    position: relative;   /* 🔥 remove o absolute no mobile */
    right: auto;
    bottom: auto;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-image img {
    max-height: 45vh;
  }

}
.slider {
  touch-action: pan-y;
}


.services-slider {
  max-width: 45vw;
  margin: 0 auto;
	margin-top: 30px;
	position: relative;
	  overflow: visible;

}

.service-card {
  display: flex;
  gap: 40px;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  padding: 40px;
  background: #fff;
  align-items: center;
}

.service-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.service-content h2 {
  color: #174f9c;
  font-size: 32px;
  margin-bottom: 16px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  background: #e53935;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

/* Setas */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
}

.slick-prev:before,
.slick-next:before {
  color: #bdbdbd;
  font-size: 40px;
}

/* Mobile */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-image img {
    width: 100%;
    height: auto;
  }

  .tags {
    justify-content: center;
	}
}


.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
}

.slick-prev {
  left: -70px;
}

.slick-next {
  right: -70px;
}

.slick-prev svg,
.slick-next svg {
  color: #333;
}

.slick-prev:hover,
.slick-next:hover {
  background: #f5f5f5;
}


/** TRABALHE CONOSCO **/
.tc-section {
  padding: 80px 20px;
  background: #fff;
}

.tc-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tc-title {
  font-size: 32px;
  color: #0b3c78;
  margin-bottom: 40px;
  font-weight: 600;
}

.tc-form {
  width: 100%;
}

.tc-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.tc-input,
.tc-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: 14px;
  outline: none;
}

.tc-input::placeholder,
.tc-textarea::placeholder {
  color: #b5b5b5;
}

.tc-full {
  margin-bottom: 16px;
}

.tc-textarea {
  min-height: 160px;
  resize: none;
  margin-bottom: 20px;
}

.tc-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tc-file {
  background: #d6d6d6;
  color: #555;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.tc-submit {
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-submit span {
  font-size: 16px;
}

@media (max-width: 600px) {
  .tc-row {
    flex-direction: column;
  }

  .tc-actions {
    flex-direction: column;
    gap: 16px;
  }

  .tc-submit {
    width: 100%;
    justify-content: center;
  }
}




.ct-section {
  padding: 80px 20px;
  background: #fff;
}

.ct-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ct-title {
  font-size: 32px;
  color: #0b3c78;
  margin-bottom: 40px;
  font-weight: 600;
}

/* FORM */
.ct-form {
  margin-bottom: 40px;
}

.ct-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.ct-input,
.ct-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-size: 14px;
}

.ct-input::placeholder,
.ct-textarea::placeholder {
  color: #b5b5b5;
}

.ct-full {
  margin-bottom: 16px;
}

.ct-textarea {
  min-height: 160px;
  resize: none;
  margin-bottom: 20px;
}

.ct-submit {
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* INFO */
.ct-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.ct-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0b3c78;
  font-size: 14px;
}

/* MAPA */
.ct-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 16px;
}




@media (max-width: 600px) {
  .ct-row {
    flex-direction: column;
  }

  .ct-info {
    flex-direction: column;
    align-items: center;
  }
}
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-links {
  display: flex;
  gap: 24px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .menu-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 24px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 998;
  }

  .menu-links.open {
    right: 0;
  }
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}





/* MENU BASE */
.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 9999;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

/* LINKS */
.menu-links {
  display: flex;
  gap: 24px;
}

/* MOBILE */
@media (max-width: 768px) {

  .hamburger {
    display: flex !important;
  }

  .menu-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 24px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 9998;
  }

  .menu-links.open {
    right: 0;
  }
}
/* ===== HAMBURGER FIX DEFINITIVO ===== */
.hamburger {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 9999;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000 !important;
  border-radius: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
}

/* ===== FIX FINAL HAMBURGER ===== */
.hamburger {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 9999;
}

/* AS LINHAS */
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000 !important;
  border-radius: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
}





/* ================================================= */
/* MENU / NAVBAR � REFATORADO E LIMPO */
/* ================================================= */

.navbar {
  width: 100vw;
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

/* LINKS (DESKTOP) */
.menu-links {
  display: flex;
  gap: 30px;
}

.menu-links a {
  text-decoration: none;
  color: #1d3557;
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

.menu-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #c62828;
  border-radius: 2px;
}

/* HAMBURGER */
.hamburger {
  width: 32px;
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1d3557;
  border-radius: 2px;
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  .menu-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 30px;
    gap: 25px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .menu-links.open {
    right: 0;
  }
}

/* ANIMA��O X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}




.menu-principal-container {
  display: flex;
  align-items: center;
  position: relative;
}

/* LISTA */
.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

/* LINKS */
.menu a {
  text-decoration: none;
  color: #1d3557;
  font-weight: 600;
}

/* BOT�O HAMBURGER */
.menu-mb {
  display: none;
  width: 32px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-mb span {
  height: 3px;
  background: #1d3557;
  border-radius: 2px;
}

/* MOBILE */
@media (max-width: 900px) {

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 30px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .menu-principal-container.active .menu {
    right: 0;
  }

  .menu-mb {
    display: flex;
  }
  .btn-orcamento{
      display: none;
  }
  .btn-orcamento-mobile{
      display: block;
  }
}


@media (max-width: 900px) {

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 30px;
    transition: right 0.3s ease;
  }

  .menu-principal-container.mostrar .menu {
    right: 0;
  }

  .menu-mb.ativo span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-mb.ativo span:nth-child(2) {
    transform: rotate(45deg) translateY(8px);
  }
}
@media (max-width: 900px) {

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 30px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .menu-principal-container.mostrar .menu {
    right: 0;
  }

  .menu-mb {
    display: flex;
  }
}
@media (max-width: 900px) {

  .menu {
    display: flex;              /* <<< ESSENCIAL */
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 30px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .menu-principal-container.mostrar .menu {
    right: 0;
  }
}
/* ========================= */
/* MENU ZERO � DO ZERO */
/* ========================= */

.nav-zero-btn {
  width: 32px;
  height: 32px;
  display: none;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.nav-zero-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #1d3557;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* posições iniciais */
.nav-zero-btn span:nth-child(1) {
  top: 8px;
}

.nav-zero-btn span:nth-child(2) {
  top: 14.5px;
}

.nav-zero-btn span:nth-child(3) {
  top: 21px;
}



/* novo acima */
.nav-zero {
    width: 100vw;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9999;
}
.nav-zero-logo img {
  height: 60px;
}

/* LINKS DESKTOP */
.nav-zero-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-zero-links a {
  text-decoration: none;
  color: #1d3557;
  font-weight: 600;
}


.azul {
color: #1d3557;
    
}


/* MOBILE */
@media (max-width: 900px) {

  .nav-zero-btn {
  width: 32px;
  height: 32px;              
  display: flex;
  flex-direction: column;
  justify-content: center;   
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
	  z-index: 999;
	  margin-right: 20px;
}

  .nav-zero-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 30px;
    gap: 54px;
    transition: right 0.3s ease;
  }

  .nav-zero.open .nav-zero-links {
    right: 0;
  }
  .menu-btn span {
  background: red;
}
.nav-zero-logo{
      margin-left: 30px;

}
}

/* ANIMA��O X */
.nav-zero.open .nav-zero-btn span:nth-child(1) {
  transform: rotate(45deg);
  top: 14.5px;
}

.nav-zero.open .nav-zero-btn span:nth-child(2) {
  opacity: 0;
}

.nav-zero.open .nav-zero-btn span:nth-child(3) {
  transform: rotate(-45deg);
  top: 14.5px;
}
.nav-zero-links a {
    position: relative;
    padding: 10px 15px;
}

.nav-zero-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #c62828;
  border-radius: 2px;
}




/*LOADER */


div#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0.9;
  z-index: 99999;
}
.loader .title {
  color: var(--cor-preto);
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: lighter;
  text-align: center;
  font-family: arial;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top:-50px; 
  margin-left:-50px;
}
/*Carregand */
.carregando {
  font-size: 45px;
  color: #A11C26;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  display: block;
  transform: translateZ(0);
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
  margin-bottom: 35px;
  margin-left: 20px;
}
@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em,
    0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
    0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 
    0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 
    0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, 
    -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, 
    -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
     -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, 
     -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
     -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, 
     -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 
    0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes round {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg) }
}


.badge-sucesso {
    background-color: #22c55e; /* verde */
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.seta {
  position: absolute;
  bottom: 20px;     /* distancia do fundo */
  right: 20px;      /* canto direito */
  
  width: 40px;
  height: 40px;
  border-radius: 50%;
  
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}
