body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background-color: #075E98;
  color: #fff;
  scroll-behavior: smooth;
}

/* PRESETS */
a {
  color: #fff;
  margin-bottom: 0;
}

p {
  margin-bottom: .5rem!important;
}

h1, h2, h3, h4 {
  font-weight: 800;
}

ul {
  list-style: none;
}
h6 {
  font-weight: 700;
  margin-bottom: 0;
}

section {
  padding: 70px 0;
  scroll-margin-top: 111px; /* ajuste conforme a altura do seu menu */
}

section img {
  width: 80%;
  border-radius: 15px;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 111px;
  animation: 0.3s fade-in;
  box-shadow: var(--bs-box-shadow-sm) !important;
  z-index: 100000 !important;
  background: #fff !important;
}

.fixed a {
  color: #073656 !important;
}



.fixed .logo-top {
  position: fixed;
  top: 18.5px;
  background-image: url(../img/logo.webp);
  width: 150px;
  height: 74px;
  background-size: contain;
  background-repeat: no-repeat;
}

.highlight-light-blue {
  color: #8CCDF8;
}

.highlight-dark-blue {
  color: #073656;
}

.green-background {
  background-color: #87C720 !important;
}

.btn-custom-branco {
  color: #075E98;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px 16px;
  border: none;
}

.btn-custom-branco:hover {
  background-color: #d3d3d3;
  color: #075E98;
}

.btn-custom-verde {
  color: #fff;
  background-color: #87C720;
  border-radius: 5px;
  padding: 8px 16px;
  border: none;
}

.btn-custom-verde:hover {
  background-color: #aadb5b;
}

.btn-custom-laranja{
  color: #fff;
  background-color: #E27407;
  border-radius: 5px;
  padding: 8px 16px;
  border: none;
}

.svg-branco {
  fill: #fff;
}

.svg-azul {
  fill: #075E98;
}
/* PRESETS */


@media screen and (max-width: 1000px) {
  .hero-row {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero {
    padding-top: 0;
  }

  .hero-row img {
    margin-top: 40px;
  }
}

/* MENU
---------------------------------------------------
*/
nav ul li a {
  color: #fff;
  padding: 10px 7px 1px 7px;
}

.nav-link:focus {
  color: #fff;
}

.nav-item:hover {
  background-color: #3994d1;
  transition: background-color 0.3s ease;
  border-radius: 7px;
}

.navbar-nav {
  gap: 15px;
}

.logo-top {
  background-image: url(../img/logo-branco.webp);
  width: 280px;
  height: 139px;
  background-size: contain;
  background-repeat: no-repeat;
}

.navbar {
  background: #075E98;
}

.nav-link {
  color: #fff;
}

.nav-link:hover {
  color: #fff;
}

.active-border {
  border-bottom: 2px solid #E27407;
}

/* MENU SANDWICH */
/* Esconde menu sanduíche acima de 1200px */
@media screen and (min-width: 1200px) {
  .menu-toggle, .mobile-menu {
    display: none;
  }

}

@media screen and (max-width: 1199px) {
/* Botão do menu sanduíche fixo */
.menu-toggle {
  position: fixed;
  top: 46px;
  right: 30px;
  z-index: 1000002 !important;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.navbar-nav {
  display: none;
}

.logo-top {
  width: 250px;
}
.menu-toggle span {
  width: 30px;
  height: 3px;
  background: #E27407;
  display: block;
  border-radius: 2px;
  margin-top: -2px;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transform-origin: center;
  display: block;
}

/* Estilo do menu mobile */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: white;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000001 !important;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-menu li {
  margin: 15px 0;
}

.mobile-menu a {
  font-size: 1rem;
  color: #073656;
  font-weight: 600;
  text-decoration: none;
}

  #menu-toggle:checked ~ .mobile-menu {
    display: flex;
  }

  /* Animação para virar um "X" */
  #menu-toggle:checked + .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  #menu-toggle:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  #menu-toggle:checked + .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

}


/* SERVICOS
---------------------------------------------------
*/
.servicos .linha-4 {
  display: flex;
  gap: 20px;
  width: fit-content !important;
  margin: 0 auto 20px auto;
}

.servicos .linha-4 .coluna {
  background-color: #f2f2f2;
  min-height: 330px;
  width: 250px;
  padding: 20px 20px 0 20px;
  border-radius: 15px;
  display: grid;
  align-content: space-between;
}

.servicos .linha-2 {
  display: flex;
  gap: 20px;
  width: fit-content !important;
  margin: 0 auto 20px auto;
}

.servicos .linha-2 .coluna {
  background-color: #f2f2f2;
  min-height: 250px;
  width: 520px;
  padding: 20px 20px 0 20px;
  border-radius: 15px;
  display: grid;
  align-content: space-between;
}

.servicos .small-line {
  display: flex;
  gap: 20px;
  width: fit-content !important;
  margin: 10px auto 10px auto;
}

.servicos .small-line .coluna-small {
  background-color: #f2f2f2;
  margin: 0 auto 20px auto;
  width: 250px;
  min-height: 100px;
  padding: 10px 10px 0 10px;
  border-radius: 15px;
  align-content: center;

}

.servicos .medium-line {
  display: flex;
  gap: 20px;
  width: fit-content !important;
  margin: 10px auto 0 auto;
}

.servicos .medium-line .coluna-medium {
  background-color: #f2f2f2;
  margin: 0 auto 20px auto;
  width: 520px;
  min-height: 100px;
  padding: 20px;
  border-radius: 15px;
  align-content: center;
}

@media screen and (max-width: 1999px) {
  .servicos .container {
    max-width: 100% !important;
  }

  .servicos .linha-4 .coluna, .servicos .small-line .coluna-small {
    width: 220px;
  }

  .servicos .linha-2 .coluna, .servicos .medium-line .coluna-medium {
    width: 460px;
  }
}

@media screen and (max-width: 1000px) {
  .linha-2, .linha-4, .small-line, .medium-line {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }

  .servicos .linha-4 .coluna, .servicos .small-line .coluna-small {
    width: 100%;
  }

  .servicos .linha-2 .coluna, .servicos .medium-line .coluna-medium {
    width: 100%;
  }

}

@media screen and (max-width: 768px) {
  .linha-2, .linha-4, .small-line, .medium-line {
    display: grid !important;
    grid-template-columns: 1fr;
  }
}

/* EQUIPE
---------------------------------------------------
*/
.equipe {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.equipe .container {
  position: relative;
  width: 100%;
}

.equipe form {
  width: 100%;
  position: relative;
}

.equipe input {
  display: none;
}

.cards-wrapper {
  position: relative;
  transition: height 0.3s ease;
}

.lia img, .alessandra img {
  margin-left: 15%;
  width: 70%;
}

.equipe label.card {
  position: absolute;
  width: 100%;
  padding: 30px 70px;
  font-size: 1rem;
  text-align: justify;
  background: transparent;
  border: none;
  color: #fff;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Ativar card atual */
#alessandra:checked ~ .cards-wrapper .alessandra {
  position: relative;
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

#lia:checked ~ .cards-wrapper .lia {
  position: relative;
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/* Botões de navegação */
.equipe .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 2;
  display: none;
  user-select: none;
}

.equipe .nav-left {
  left: 0;
}

.equipe .nav-right {
  right: 0;
}

#alessandra:checked ~ .next-from-alessandra,
#alessandra:checked ~ .prev-from-alessandra,
#lia:checked ~ .next-from-lia,
#lia:checked ~ .prev-from-lia {
  display: block;
}

@media screen and (max-width: 1000px) {
  .row-time {
    display: grid;
  }

  .row-time .col:nth-child(1) {
    margin-bottom: 20px;
  }
}

/* QUEM SOMOS
---------------------------------------------------
*/
.quem-somos {
  padding-top: 0;
}

.quem-somos-ul img {
  width: 17px !important;
  margin-right: 10px;
}

.quem-somos-ul {
  list-style: none;
  padding: 10px;
}

.citacao {
  padding: 50px 0 0 0;
  text-align: justify;
  align-items: end;
  width: 70%;
  margin-left: 15%;
}

.citacao img {
  width: 255px;
}

@media screen and (max-width: 1200px) {
  .citacao {
    width: 80%;
    margin-left: 10%;
  }
}
@media screen and (max-width: 1000px) {
  .citacao {
    display: flex;
    flex-direction: column-reverse;
    width: 90%;
    margin-left: 5%;
    padding: 90px 0 0 0;
  }

  .alessandra-citacao-img {
    margin-bottom: 30px;
  }


}

@media screen and (max-width: 768px) {
  .right-quote {
    text-align: right;
  }
}


/* FUNIL 01
---------------------------------------------------
*/
.funil01 {
  background-image: url('../img/hero-funil01.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 100px 0;
}

/* LISTA DE MOTIVOS
---------------------------------------------------
*/
.motivos {
  width: 70%;
  margin-left: 15%;
}

.lista-de-motivos {
  padding: 30px 0;
}
.lista-de-motivos .row {
  align-items: flex-end;
}

.lista-de-motivos img {
  width: 300px;
  border-radius: 0;
  mix-blend-mode: screen;
}

@media screen and (max-width: 991px) {
.motivos {
    width: 100%;
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .motivo0, .lista-de-motivos {
    text-align: center;
  }
}


/* MISSÃO, VISÃO E VALORES
---------------------------------------------------
*/
.missao-visao-valores {
  width: 60%;
  margin-left: 20%;
  padding-top: 0;
}

.lista-missao-visao-valores {
  padding: 30px 0;
}

.lista-missao-visao-valores .circle {
  width: 170px;
  height: 170px;
  background: #F2F2F2;
  border-radius: 50%;
  text-align: center;
  align-content: space-evenly;
  margin-right: 15px;
}

.lista-missao-visao-valores .circle img {
  width: 90px !important;
  margin-right: 0;
}

.lista-missao-visao-valores .row {
  align-items: baseline;
}

.text-right {
  text-align: right;
}

.lista-missao-visao-valores img {
  width: 17px !important;
  margin-right: 10px;
}

@media screen and (max-width: 991px) {
.missao-visao-valores {
    width: 100%;
    margin-left: 0;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .missao .row {
    display: grid;
    text-align: center;
  }

  .visao .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .visao .row .text-right {
    text-align: center;
  }

  .lista-missao-visao-valores .circle {
    width: 90px;
    height: 90px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .lista-missao-visao-valores .circle img {
    width: 50px !important;
  }
}

/* FALE CONOSCO
---------------------------------------------------
*/

.faleconosco {
  background-image: url('../img/hero-faleconosco.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 100px 0 76px 0;
}

.faleconosco input {
  margin-bottom: 10px;
  border-radius: 0;
}

.faleconosco textarea {
  border-radius: 0;
}

.faleconosco .col-form {
  padding: 0 !important;
}

@media screen and (max-width: 1000px) {
  .fale-row {
    display: grid;
    width: 80%;
    margin-left: 10%;
  }

  .fale-row .col:nth-child(1) {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 768px) {
  .fale-row {
    width: 100%;
    margin-left: 0;
  }
}
/* FOOTER
---------------------------------------------------
*/
footer {
  background-color: #D9D9D9;
  padding: 50px 0;
}

footer .logo-footer img { 
  width:-webkit-fill-available;
}

footer ul li a {
  color: #073656;
  text-decoration: none;
}

.info-footer {
  padding-bottom: 50px;
}

.lista-3-footer li {
  margin-bottom: 13px;
}

footer .btn-custom-verde {
  width: fit-content;
  color: #fff;
}

@media screen and (max-width: 830px) {
  .info-footer {
    padding-bottom: 50px;
    display: grid;
    gap: 20px;
    text-align: center;
  }

  .logo-footer img {
    width: 300px !important;
  }

  footer .col-4 {
    width: auto;
  }

  footer .btn-custom-verde {
    margin: 0 auto;
  }
}


/* ELGATO
---------------------------------------------------
*/
.elgato {
    font-size: 0.7rem;
    text-decoration: none;
    color: #073656;
}