:root {
  --cor-light: #F7F7F7;
  --cor-dark: #222;
  --cor-cinza: #5D5D5D;
  --cor-laranja: #ED6B35;
  --transition: .25s all ease-in-out;
}

body {
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

figure {
  margin-bottom: 0;
}

hr {
  opacity: .1;
}

.h1,
h1 {
  font-size: calc(2.375rem + 1.5vw);
  line-height: 100%;
}

.bg-dark {
  background-color: var(--cor-dark) !important;
}

.botao {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background-color: #FFFFFF00;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0;
  padding: 20px 40px;
  transition: var(--transition);
  text-decoration: none;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.botao-colorido {
  background-color: var(--cor-laranja);
  color: var(--cor-light);
}

.botao-colorido:hover {
  border-color: #ED6B35;
  color: var(--cor-laranja) !important;
}


.botao-secundario {
  border-color: var(--cor-laranja);
  color: var(--cor-laranja);
  font-weight: 600;
}

.botao-secundario:hover {
  border-color: var(--cor-dark);
  background-color: var(--cor-dark) !important;
  color: var(--cor-light) !important;
}

.botao-sm {
  padding: 16px 32px;
}

.botao:hover {
  color: var(--cor-dark);
  background-color: #fff;
}

.link {
  color: var(--cor-laranja);
  text-decoration: none;
}

.link:hover {
  color: var(--cor-cinza);
  text-decoration: underline;
}

/* HEADER */

header {
  background-color: var(--cor-light);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: transform 0.3s ease;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

header.hide {
  transform: translateY(-100%);
}

header.show {
  transform: translateY(0);
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}



.header__logo {
  flex: 1;
}

.header__logo>img {
  max-height: 80px;
}

.header__nav {
  flex: 1;
}

.header__nav ul {
  padding: 0;
  justify-content: center;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 16px;
}

@media(min-width:996px) {
  .header__nav ul {
    gap: 36px;
  }
}

.header__nav ul li a {
  line-height: 4;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  transition: 0.4s ease-in-out;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  color: var(--cor-laranja);
}

.header__nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 2px;
  bottom: 0;
  background-color: var(--cor-laranja);
  transition: all 0.2s ease-in-out;
}

/* ._header__nav ul li a:hover {
  color: #fff;
} */

.header__nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

header {
  background-color: var(--cor-light);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: transform 0.3s ease;
}

header.hide {
  transform: translateY(-100%);
}

header.show {
  transform: translateY(0);
}

._header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}



/* ._header__logo {
  flex: 1;
}

._header__nav {
  flex: 2;
} */


._header__logo>img {
  max-height: 80px;
}


._header__nav ul {
  padding: 0;
  justify-content: center;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 16px;
}

@media(min-width:996px) {
  ._header__nav ul {
    gap: 36px;
  }
}

._header__nav ul li a {
  line-height: 4;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  transition: 0.4s ease-in-out;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  color: var(--cor-laranja);
}

._header__nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 2px;
  bottom: 0;
  background-color: var(--cor-laranja);
  transition: all 0.2s ease-in-out;
}

._header__nav ul li a:hover {
  color: var(--cor-laranja);
}

._header__nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

@media(max-width:768px) {


  ._header__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-toggle {
    margin-left: auto;
  }





























  .menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--cor-laranja);
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 4px 0;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 10px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -10px);
  }






}

/* Responsive */
@media (max-width: 768px) {

  ._hero {
    height: auto !important;
  }

  ._hero__wrapper {
    height: auto !important;
  }

  ._header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cor-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }


  ._header__logo>img {
    max-height: 56px;
  }

  ._header__nav.active {
    max-height: 300px;
  }

  ._header__nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, .5);
  }

  .menu-toggle {
    display: flex;
  }

  ._header__nav ul li a {
    display: flex;
    justify-content: center;
    line-height: 2;
  }

  ._header__nav ul li a:hover {
    color: var(--cor-laranja);
  }

  ._header__nav ul li a::after {
    display: none;
  }



}





/* HEADER. */







.hero__wrapper {
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  gap: 16px;
}

.hero__description {
  font-size: clamp(16px, 4.444vw, 24px);
}

/* HERO BASE */
.hero {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-top: 96px;
}

/* BACKGROUND IMAGES */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  animation: zoomFade 24s infinite;
  z-index: 0;
}

.hero-bg.bg1 {

  animation-delay: 0s;
}

.hero-bg.bg2 {

  animation-delay: 8s;
}

.hero-bg.bg3 {

  animation-delay: 16s;
}

/* ZOOM + FADE ANIMATION */
@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  5% {
    opacity: 1;
  }

  45% {
    opacity: 1;
    transform: scale(1.35);
  }

  50% {
    opacity: 0;
    transform: scale(1.35);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

/* DARK OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  /* Escurece o fundo */
  z-index: 1;
}

/* CONTEÚDO ACIMA DO OVERLAY */
.hero .container {
  position: relative;
  z-index: 2;
}


@media(max-width:768px) {
  .hero {
    max-height: 70dvh;
  }
}


.planos-card {
  width: 100%;
  height: auto;
  background-color: var(--cor-light);
  overflow: hidden;
  transition: var(--transition);
  outline: 1px solid transparent;
  color: var(--cor-cinza);
  margin: 24px 0;
  position: relative;
  padding-bottom: 16px;
}

.planos-card__tag {
  width: 200%;
  background-color: var(--cor-laranja);
  color: #fff;
  font-weight: bold;
  text-align: center;
  transform: rotate(45deg);
  font-size: 20px;
  position: absolute;
  top: 23px;
  left: -38px;
  z-index: 9999;
}


.planos-card:hover {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  outline: 1px solid var(--cor-laranja);
}

.planos-card:hover .planos-card__header {
  background-color: var(--cor-dark);
}

.planos-card__header {
  background-color: var(--cor-cinza);
  color: #fff;
  text-align: center;
  padding: 12px 24px;
  font-size: 28px;
  font-weight: medium;
  transition: var(--transition);
  position: relative;
}

.planos-card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 28px;
}

.planos-card__botao {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.planos-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.planos-card__list li {
  display: flex;
  gap: 6px;
  align-items: center;
}

.planos-card__list li svg {
  fill: var(--cor-laranja);
}

.planos-card__preco {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: normal;
  font-size: 20px;
  padding: 8px 0;
  line-height: 1.1;
}

.planos-card__preco span {
  font-size: 62px;
  line-height: 1;
  font-weight: bold;
}

.planos-card__valor {
  display: flex;
  align-items: start;
  width: 100%;
  height: 60px;
  justify-content: center;
  line-height: 1.92;
  font-weight: normal;
  font-weight: bold;
}




.footer__widget h3 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 12px;
  color: var(--cor-cinza);
}

.footer__widget:hover h3 {
  color: #fff;
  transition: var(--transition);
}

.footer__widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__widget ul li {
  line-height: 2;
}

.footer__widget ul li a {
  color: var(--cor-light);
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  transition: var(--transition);
}

.footer__widget ul li a:hover {
  color: var(--cor-laranja);
}


.footer__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  /* Mobile: 1 coluna */
  gap: 2rem;
  padding: 2rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet: 2 colunas */
    text-align: left;
  }
}


@media (min-width: 990px) {
  .footer__wrapper {
    grid-template-columns: 2fr 1fr 1fr 2fr;
    /* Desktop: layout original */
  }
  
}

@media(max-width:989px){
  .footer__widget.atendimento a{
    justify-content: center;
  }
  .footer__wrapper{
    gap: 44px;
  }
}



.footer__widget.atendimento {
  margin-top: 8px;
}

.footer__widget.atendimento a {
  text-decoration: none;
  color: var(--cor-light);
  display: flex;
  gap: 8px;
  height: 30px;
  margin-bottom: 12pxpx;
  font-size: 20px;
  align-items: center;
  line-height: 0;
}


.footer__widget.atendimento a svg {
  color: var(--cor-laranja);
  width: 20px;
  height: 20px;
}






/* >>> button whatsapp 1 */

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

._button-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulseWhatsApp 2s infinite;
  z-index: 999;
}

._button-whatsapp svg {
  fill: #fff;
  width: 52px;
  height: 52px;
}

/* button whatsapp 1 <<< */


.assinatura {
  opacity: .3;
  transition: var(--transition);
}

.assinatura:hover {
  opacity: 1;
}



.header__internas{
  margin-top: 86px;
  padding: 6rem 0;
  background-size: cover;
  background-position: center  center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
}

@media(max-width:768px){
  .header__internas{
    margin-top: 68px;
  }
}

.header__internas::after{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index:1;
}

.header__internas .container{
  position: relative;
  z-index: 2;
}

.header__internas .breadcrumbs{
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__internas a{
  text-decoration: none;
  color: #fff;
  opacity: .5;
  transition: var(--transition);
}

.header__internas a:hover{
  opacity: 1;
  color: var(--cor-laranja);
}

.header__internas .breadcrumbs svg{
  width: 12px;
  height: 12px; 
  margin-top: 2px;
  fill: var(--cor-laranja);
}

.header__internas .breadcrumbs .active{
  color: var(--cor-laranja);
}



.servico-card{
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 10px 15px -55px rgba(0,0,0,0.1);
  transition: var(--transition);
  border: 1px solid var(--cor-light);
  text-decoration: none;
  color: var(--cor-dark);
}

.servico-card:hover{
  box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.1);
}


.cor-laranja{
  color: var(--cor-laranja);
}
.servico-card p{
  padding: 20px 24px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.servico-card figure{
  margin: 0;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.servico-card figure img{
  object-fit: cover;
  width: 100%;
  height: 100%; 
  transition: var(--transition);
}

.servico-card:hover figure img{
  transform: scale(1.1);
}

.servicos-wrapper{
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media(min-width:540px){
  .servicos-wrapper{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width:768px){
  .servicos-wrapper{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:960px){
  .servicos-wrapper{
    grid-template-columns: repeat(3, 1fr);
  }
}




.sobre-box{
  max-width: 480px;
  padding: 60px 60px 60px 60px;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
}

input[type=text], input[type=email], input[type=number], select{
  height: 48px;
  display: flex;
  align-items: center; 
}

select{
  cursor: pointer;
}

input[type=checkbox], label{
  cursor: pointer;
}


/* Botão primário (btn-primary) */
.btn-primary {
  background-color: var(--cor-laranja);
  border-color: var(--cor-laranja);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--cor-laranja);
  border-color: var(--cor-laranja);
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.5);
}

/* Inputs com foco */
.form-control:focus {
  border-color: var(--cor-laranja);
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.25);
}

/* Checkbox e Radio marcados */
.form-check-input:checked {
  background-color: var(--cor-laranja);
  border-color: var(--cor-laranja);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.25);
  border-color: var(--cor-laranja);
}


form{
  font-size: 16px;

}

hr{
  opacity: 0;
}

[class*="-feedback"] {
      color: var(--bs-danger);
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 4px;
      font-weight: normal;
      line-height: 100%;
    }
    
[class*="-feedback"] svg {
      fill: var(--bs-danger);
      color: var(--bs-danger);
      width: 18px;
      height: 18px;
    }


    
.campo-contato input,
.campo-contato textarea,
.campo-contato select {
  transition: border 0.3s ease;
}

.form-label{
  color: var(--cor-laranja);
}


.form-check  {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.form-check-label input{
  margin-top: -1px;
}


.cmc-contato-mensagem-resultado{
    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: green;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 16px 0;
    
}

.cmc-contato-mensagem-resultado svg{
    width: 20px;
    height: 20px;
}


.contato-atendimento{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--cor-dark);
  gap: 6px;
}
.contato-atendimento  svg{

  color: var(--cor-laranja);
}


.contato-box{
  max-width: 480px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 30px 0px;
    padding: 50px;
    background-color: var(--cor-dark);
    color: #fff;
}