@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* RESET (corrigido: faltava o seletor) */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

/* Variáveis */
:root{
  --primaria: #f2f2f2;
  --secundaria: #95C11F;
  --terciaria: #000000;
  --quaternaria: #303030;
}

p,a{ font-family: "Montserrat", sans-serif; }
h1,h2,h3{ font-family: "Montserrat", sans-serif; }

.cor-prim{ color: var(--quaternaria); }

/* Background helpers (corrigido: background-image -> background-color quando é cor sólida) */
.bg-primaria{ background-color: #f4f1f0; }
.bg-primaria-2{ background-image: linear-gradient(var(--secundaria), var(--primaria)); }
.bg-primaria-3{ background-image: linear-gradient(var(--primaria), var(--secundaria)); }
.bg-secundaria{ background-color: var(--secundaria); }
.bg-quater{ background-color: #ffffff; }

figure{ margin: 0; }

.wd-60{ width: 60%; }
.wd-100{ width: 100%; }
.wd-40{ width: 50%; }

.banner-paginas{
  background-size: contain;
  background-position: center;
  width: 100%;
  background-repeat: no-repeat;
}
.banner-paginas h1{ color: white; }
.text-banner-paginas{ height: 300px; }

.text-title-principal,
.text-title-principal-mobile{
  color: var(--primaria)!important;
}
.text-title-principal p{
  color: var(--primaria)!important;
  font-size: 30px;
  font-weight: bold;
}
.text-title-principal-mobile p{
  color: var(--primaria)!important;
  font-weight: bold;
}

/* Botões */
.btn-branco{
  padding: 8px 40px;
  background-color: white;
  color: var(--quaternaria);
  border: 1px solid var(--quaternaria);
  border-radius: 20px;
}
.btn-branco:hover{
  transition: 1s;
  background-color: var(--quaternaria);
  color: white;
  border: 1px solid white;
}

.btn-primaria{
  padding: 8px 40px;
  background: var(--quaternaria);
  color: white;
  border-radius: 20px;
}
.btn-primaria:hover{
  transition: 1s;
  color: var(--quaternaria);
  background: white;
  border: 1px solid var(--quaternaria);
}

.btn-secundaria{
  padding: 8px 40px;
  background: var(--primaria);
  color: #a7775f;
  border-radius: 20px;
}
.btn-secundaria:hover{
  transition: 1s;
  color: #a7775f;
  background: white;
  border: 1px solid var(--primaria);
}

.btn-form{
  background: #83A548;
  padding: 16px;
  width: 186px;
  margin-left: 15px;
  font-weight: 600;
  font-size: 16px;
  color: white;
  border-radius: 8px;
}
.btn-form:hover{
  transition: 1s;
  color: #a7775f;
  background: white;
  border: 1px solid var(--primaria);
}

.btn-sub{
  background: #83A548;
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}
.btn-sub:hover{
  transition: 1s;
  color: #a7775f;
  background: white;
  border: 1px solid var(--primaria);
}

.btn-card-s-menu{
  padding: 10px;
  font-weight: bold;
  font-size: 15px;
  color: var(--primaria);
  background: var(--secundaria);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);

}
.btn-card-s-menu:hover{
  transition: 1s;
  color: var(--secundaria);
  background: white;
  border: 1px solid gray;
}

.btn-prima{
  padding: 12px;
  font-weight: 600;
  font-size: 18px;
  color: var(--primaria);
  background: var(--secundaria);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);

}
.btn-prima:hover{
  transition: 1s;
  color: var(--secundaria);
  background: white;
  border: 1px solid gray;
}

.btn-terciaria{
  padding: 15px 40px;
  background: #83A548;
  color: white;
  border-radius: 100px;
  font-weight: bold;
}
.btn-terciaria:hover{
  transition: 1s;
  color: #83A548;
  background: white;
  border: 1px solid var(--primaria);
}

.hr-custom{
  width: 200px;
  margin-left: -100px;
  color: white;
  opacity: 1;
}
.hr-custom-azul{
  width: 200px;
  margin-left: -100px;
  color: var(--quaternaria);
  opacity: 1;
}

.h2-branco{ color: white; }
.h2-azul{ color: var(--primaria); }

/* Slide Swiper da Home */
.btn-position{
  position: absolute;
  bottom: 40px;
}

/* Banner Home */
.banner-home{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.text-banner{ height: 450px; }
.banner-home h1{ color: white; }
.banner-home p{ color: white; }

/* Sobre */
.bg-sobre{
  background-repeat: no-repeat;
  background-size: contain;
}
.h3-nome{
  font-size: 40px;
  color: white;
}
.pd-sobre{ padding-top: 100px; }

/* A Clínica */
.pd-slide-clinica{
  padding-left: 100px;
  padding-right: 100px;
  background: transparent;
}

/* Social Media */
.swiper-button-next:after,
.swiper-button-prev:after{
  color: var(--quaternaria);
  font-weight: 1000;
}
.bg-social{
  background-size: cover;
  background-repeat: no-repeat;
}

/* Área de atuação */
.card-servico h4,
.card-servico p{
  color: white;
}

/* Sobre */
.formacao p{ color: white; }
.sombra-img{ box-shadow: 0px 10px 10px rgba(0,0,0,.3); }
.b-radius{ border-radius: 5px; }

.card-equipe{
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 10px 10px rgba(0,0,0,.3);
}
.card-equipe h5,
.card-equipe span,
.card-equipe p{ color: white; }
.card-equipe span{ font-style: italic; }

/* Termos */
.termos-custom h6{
  font-size: 30px;
  color: var(--primaria);
}
.border-termos{
  border-right: 1px solid var(--primaria);
  border-left: 1px solid var(--primaria);
}
.bg-termos{ background-color: #c6c6c6; }
.termos-custom p{ color: var(--primaria); }

/* Blog Home */
.page-numbers .current{
  background-color: var(--primaria)!important;
  padding: 5px;
  border-radius: 5px;
  color: var(--secundaria)!important;
}
.page-numbers .page-numbers{
  background-color: #e8e8e8;
  padding: 5px;
  border-radius: 5px;
  color: black;
  text-decoration: none;
}
.page-numbers{
  display: flex;
  padding-top: 30px;
  justify-content: center;
}
.page-numbers li{
  list-style: none;
  padding: 10px;
}
.entry-title{
  font-size: 25px;
  height: 75px;
}
.blog-card h4{ color: var(--primaria); }
.arrow-blog:after{ color: var(--primaria); }

/* Contato */
.mapa-contato iframe{
  border-radius: 20px;
  box-shadow: 0px 10px 10px rgba(0,0,0,.3);
  width: 100%;
  height: 50vh;
}
.contato-custom h5,
.contato-custom p{ color: var(--primaria); }
.contato-custom a{
  color: var(--primaria);
  text-decoration: none;
}
.form-contato input,
.form-contato textarea{
  border: 1px solid var(--primaria);
  box-shadow: 0px 10px 10px rgba(0,0,0,.3);
}

.accordion-button:not(.collapsed)::after{
  background-image: url(../img/arrow.svg);
}
.accordion-button:focus{
  box-shadow: 0px 0px 0px rgba(0,0,0,.3);
  border-color: transparent!important;
}
.accordion-item{
  box-shadow: 0px 10px 10px rgba(0,0,0,.3);
  border-radius: 20px !important;
}
.accordion-button:not(.collapsed){
  font-weight: bold;
  font-size: 20px;
  background-color: var(--primaria);
  color: #875726;
  padding: 32px 16px;
  border-radius: 20px !important;
}
.accordion-item:last-of-type .accordion-button.collapsed{
  background-color: white;
  font-weight: bold;
  font-size: 20px;
  padding: 32px 16px;
  color: var(--quaternaria);
  border-radius: 20px !important;
}
.accordion-header{ border-radius: 50px; }

.text-serv-p p,
.text-serv-p li{ color: white; }

.img-serv-p iframe{ width: 100%; }
.img-serv{ border-radius: 100%; }
.hg-custom{ height: 140px; }

/* Whats flutuante */
.whatsapp{
  width: 60px;
  height: 60px;
  line-height: 80px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  position: fixed;
  bottom: 40px;
  right: 30px;
  cursor: pointer;
  border-radius: 30%;
  transition: transform ease-out 0.1s, background 0.2s;
  z-index: 999;
  animation-duration: 1s;
}

/* Depoimentos */
#card-depoimento{ position:relative; top:0; }
#card-depoimento:hover{
  top:-4px;
  box-shadow: 0px 6px 6px rgba(0,0,0,.3);
  transition: all .2s ease-in-out;
}
.b-radius-10{ border-radius: 10px; }
.ava-custom p{
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}
.b-radius-100{ border-radius: 100%; }
.nome-depoimento{
  font-size: 14px;
  font-weight: bold;
}
.font-date{
  font-size: 12px;
  color: #989898;
}
.overflow-depoi{
  height: 100px;
  overflow-y: scroll;
  max-width: 100%;
}
.color-star i{ color: #fdc400; }
.overflow-depoi::-webkit-scrollbar{ width: 12px; }
.overflow-depoi::-webkit-scrollbar-track{ background: #eeeeee; }
.overflow-depoi::-webkit-scrollbar-thumb{
  background-color: #929292;
  border-radius: 20px;
  border: 3px solid #eeeeee;
}
.fs-7{ font-size: 14px; }
.shadow-depoi{
  border-radius: 10px;
  box-shadow: 0px 2px 2px rgba(0,0,0,.3);
  background-color: white;
}
.pad-depoi{ padding: 10px 20px; }
.text-depoi-card p{
  font-size: 14px;
  margin-bottom: 0;
}
.icone-google img{ width: 20px!important; }
.wd-avatar{ width: 50px!important; }

/* Para quem é indicado */
.title-cuida{
  font-size: 40px;
  font-weight: 600;
}
.text-indic{
  text-align: justify;
  line-height: 23px;
  word-spacing: 0.3px; /* corrigido: vírgula -> ponto */
}
.text-cuid{
  color: var(--quaternaria);
  text-align: justify;
}
.text-olter{
  text-align: center;
  color: white;
}
.title-older{
  font-size: 40px;
  color: var(--terciaria);
  font-weight: 600;
  text-align: start;
}
.icon-user{
  color: white;
  font-size: 50px;
  text-align: justify;
}
.closecl{
  background-color: var(--terciaria) !important;
  color: white;
}

/* Iframe / banners */
.banner-v{
  background-image: url(../img/fundo.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-depo{
background:
  radial-gradient(ellipse at center, #C4C4C4 0%, #ADAEAD 35%, #A09FA0 55%, #464646 100%),
  radial-gradient(ellipse at center, rgba(0,0,0,0) 45%, rgba(0,0,0,0.35) 100%);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
      background-attachment: fixed;
}
.borda-footer{
    border-radius: 50px 50px 0px 0px;
    background: #7fc241;
}
.text-video{
  color: var(--quaternaria);
  font-size: 40px;
  font-weight: 600;
}
.text-video-2{
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
}
.back-3{ color: #929292; }
.sombra-img-2{
  border-radius: 31px;
  box-shadow: 0px 10px 10px rgba(0,0,0,.3);
}

/* Indicados */
.title-sect{
  font-size: 50px;
  color: #e8e8e8;
  font-weight: 700;
}
.text-sect{
  font-weight: 500;
  color: #e8e8e8;
  font-size: 23px;
  text-align: justify;
}
.text-sect-2{
  font-weight: 400;
  color: #e8e8e8;
  font-size: 16px;
  text-align: justify;
}
.sombra-img-3{ border-radius: 10px; }
.img-ngtv{
  border-radius: 100%;
  box-shadow: 0px 10px 10px rgba(0,0,0,.3);
}
.genero{
  color: white;
  font-size: 30px;
  font-weight: 700;
}
.icone{ color: #eeeeee; }
.text-dic{
  color: wheat;
  text-align: justify;
}

/* Serviços */
.title-Servic{
  color: var(--quaternaria);
  font-weight: 600;
  font-size: 30px;
}
.title-Servic-2{
  color: var(--terciaria);
  font-weight: 900;
  font-size: 32px;
}
.hr-white{
  background-color: var(--terciaria);
  width: 100%;
}
.text-aba{ color: white; text-align: justify; }
.text-aba-2{ color: rgb(0,0,0); text-align: justify; }
.title-faq{ color: #f7007c; }
.text-ser p{ color: rgb(0,0,0); text-align: justify; }

/* Perguntas Frequentes */
.number-1{
  font-size: 80px;
  color: #ffffff;
}
.card-ser{
  border-radius: 30px;
  background-color: #af7d62;
  box-shadow: 0px 10px 10px rgba(0,0,0,.3);
}
.card-ser:hover{
  background-color: rgb(119,119,119);
  box-shadow: 0px 10px 10px rgba(251,142,255,.3);
}
.img-anali-lef{ padding-left: 50px; }
.img-sobr{
  border-radius: 30px;
  margin-top: 30px;
  box-shadow: 0px 10px 10px rgba(251,142,255,.568);
}
.img-sobr:hover{
  box-shadow: 0px 10px 10px rgba(255,13,74,.3);
}
.logo-1{
  width: 500px;
  height: 500px;
}
.lista-1 ul{
  list-style: none;
  font-size: 16px;
  line-height: 35px;
  font-weight: 300;
  padding-left: 0;
}

/* Header alinhado estilo print */
.nav-custom .logo-drath img{
  height: 100px;
  width: auto;
}
.nav-custom{
  padding-top: 18px !important;
  padding-bottom: 18px;
}
.nav-custom-hover a{
  color: #222 !important;
  font-weight: bold;
  text-decoration: none;
}
.nav-custom-hover a:hover{ color: #79B63E !important; }

@media (min-width: 992px){
  .text-total{ padding-left: 32px; }
  .nav-custom .navbar-collapse{
    display: flex !important;
    align-items: center;
    gap: 24px;
  }
  .nav-custom .navbar-nav{
    display: flex;
    align-items: center;
    gap: 18px;
  }
}

/* Seu hover */
.nav-custom-hover a:before{
  background-color: var(--terciaria);
}

/* Banner - Landing Page Sitex */
.banner-prin{
  position: relative;
  display: grid;
  background: linear-gradient(112deg, #7da84a 48%, #668045 58%);
  overflow: hidden;
  height: 750px;
}
.text-projet{
  color: var(--primaria);
  font-size: 60px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.text-total{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-total .logo-drath{
  margin: 0 0 14px 0;
  padding: 0 !important;
  text-align: left !important;
  width: 100%;
}
.text-total .logo-drath img{
  max-width: 260px;
  height: auto;
  display: block;
}
.text-total .text-temp{ width: 100%; }
.text-total .btn{ margin-top: 18px; }

.text-temp{
  color: #4140428f;
  line-height: 35px;
  font-size: 18px;
}
.seu-ema{
  border: 1px solid var(--primaria);
  width: 365px;
  height: 51px;
  padding: 16px;
  border-radius: 8px;
  gap: 8px;
}

/* Parceiros */
.parceiros{
  font-size: 25px;
  text-align: center!important;
  color: #999;
  font-weight: 600;
}
.linha-d{
  border-top: 1px solid;
  margin: 30px 0;
}
.swiper-container{
  width: 100%;
  height: auto;
  overflow: hidden;
}
.swiper-container .swiper-slide-p{
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-container .swiper-slide-p img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-container .swiper-slide{ width: 60%; }
.swiper-container .swiper-slide:nth-child(2n){ width: 40%; }
.swiper-container .swiper-slide:nth-child(3n){ width: 20%; }

/* Card Sitex */


/* ==========================
   CTA SITEX (igual ao mock)
   ========================== */

/* Área preta (onde aparece a faixa branca atrás) */
.sitex-cta-area{
  position: relative;
  padding: 34px 0;
  background: transparent; /* (se sua seção já é preta, pode manter) */
}

/* Faixa branca ATRÁS do card (igual ao print) */
.sitex-cta-area::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  transform: translateY(-50%);
  height: 120px;
  background:#fff;
  z-index: 0;
}

/* Garante que o card fique acima da faixa */
.sitex-cta-container{
  position: relative;
  z-index: 1;
}

/* Card verde */
.sitex-cta__row{
  position: relative;
  background: #86c34a;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.20);

  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 34px 44px;
}

/* X branco (imagem) — posição e tamanho para ficar IGUAL ao print */
.sitex-cta__decor{
  position: absolute;
  left: -10%;          /* empurra para a esquerda (mostra o X grande sem cobrir o texto) */
  top: 50%;
  transform: translateY(-50%);
  width: 74%;
  height: 150%;
  z-index: 1;
  pointer-events: none;
}

.sitex-cta__decor img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* mantém o desenho do X */
  object-position: center;
  transform: scale(1.08);
}

/* Conteúdo por cima */
.sitex-cta__content{
  position: relative;
  z-index: 2;
  width: 100%;

  /* “reserva” a área do X (igual ao mock) */
  padding-left: clamp(300px, 40vw, 620px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.logo-escri{
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1f211c;
  line-height: 1;
}

/* Coluna direita */
.sitex-cta__right{
  max-width: 420px;
}

/* Texto */
.sitex-cta__title{
  margin: 0 0 10px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

/* Lista */
.sitex-cta__list{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
}

/* Botão */
.sitex-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 26px;
  border-radius: 10px;

  background: #fff;
  color: #6aa92d;
  text-decoration: none;

  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;

  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  transition: transform .15s ease, filter .15s ease;
}
.sitex-cta__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
  color: var(--secundaria);
}

/* Responsivo */
@media (max-width: 991px){
  .sitex-cta-area::before{
    height: 90px;
  }

  .sitex-cta__row{
    padding: 26px 18px;
    border-radius: 32px;
    min-height: auto;
  }

  .sitex-cta__content{
    padding-left: 0;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .sitex-cta__right{
    max-width: 520px;
  }

  .sitex-cta__list{
    padding-left: 0;
    list-style: none;
  }

  .sitex-cta__decor{
    left: -38%;
    width: 125%;
    height: 220%;
    opacity: .22; /* para não brigar com o conteúdo no mobile */
  }
}
/* Sobre base */
.title-sitex{
  color: var(--primaria);
  font-size: 40px;
  font-weight: 550;
}
.text-sobre{
  color: #ffffff;
  font-weight: 500;
  font-size: 25px;
}
.banner-sobre{
  background: #86C34A;
  border-radius: 18px;
}

/* Cases */
.Cases{
  color: #999;
  font-size: 40px;
}
.quadro-indic{
  border: 1px solid var(--secundaria);
  border-radius: 30px;
  box-shadow: 10px 10px 10px rgba(251,242,252,.3);
  background-color: #f4f1f0;
  color: var(--terciaria);
  background-image: url(/wp-content/themes/Sitex/assets/img/drrhandersen.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  cursor: pointer;
  transition: 8s;
  background-position: 100% 0%;
}
.quadro-indic:hover{
  background-color: #f4f1f0;
  background-position: 100% 100%;
}
.btn-cases{
  background-color: var(--secundaria);
  color: #ffffff;
  text-align: center;
  padding: 8px 40px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  font-size: 20px;
}
.btn-cases:hover{
  background-color: white;
  color: var(--secundaria);
  border: 1px solid gray;
  transition: 1s;
}

/* ===== SOBRE (IGUAL REFERÊNCIA) ===== */
#sobre .banner-sobre{
  background:#86C34A;
  border-radius:22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  overflow:hidden;
  max-width:1480px;
  width:100%;
  margin:0 auto;
  padding:55px 55px !important;
}
#sobre .title-sitex{
  color:#fff;
  font-size:46px;
  font-weight:700;
  line-height:1.05;
  margin:0;
}
#sobre .sobre-swiper{
  width:100%;
  overflow:hidden;
}
#sobre .sobre-swiper .swiper-wrapper{
  align-items:center;
  padding-right:70px;
}
#sobre .sobre-slide{
  width: 210px !important;
  display:flex;
  justify-content:center;
}
#sobre .sobre-card{
  width:180px;
  height:180px;
  border-radius:22px;
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-shadow:0 14px 26px rgba(0,0,0,.18);
}
#sobre .sobre-card.dark{ background:#1f1f1f; color:#fff; }
#sobre .sobre-card.light{ background:#fff; color:#1f1f1f; }
#sobre .sobre-card i{
  font-size:62px;
  margin-bottom:12px;
  line-height:1;
}
#sobre .sobre-card p{
  margin:0;
  font-size:13px;
  font-weight:700;
  line-height:1.25;
  max-width:140px;
}

/* ✅ RESPONSIVO (corrigido: media query fechado) */
@media (max-width: 991px){
  #sobre .banner-sobre{ padding:36px 22px !important; }
  #sobre .title-sitex{ font-size:38px; text-align:center; }
  #sobre .sobre-swiper .swiper-wrapper{ padding-right:0; }
  #sobre .sobre-slide{ width: 200px !important; }
  #sobre .sobre-card{ width:170px; height:170px; }
}

/* =========================
   PLANOS (sua base atual)
   ========================= */
.planos{
  color: var(--secundaria);
  width: 100%;
  font-size: 42px;
}

.plano{
  border: 1px solid var(--secundaria);
  border-radius: 15px;
  padding: 20px;
  width: 380px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.plano h3{
  color: var(--secundaria);
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 600;
}

.preco{
  font-size: 40px;
  color: #000;
}
.valor{
  font-size: 40px;
  font-weight: bold;
  color: #000;
}

.mensal{
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.lista-plano{
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.lista-plano li{
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.lista-plano li svg{
  margin-right: 8px;
  flex-shrink: 0;
}

.btn-planos{
  display: block;
  background-color: var(--secundaria);
  color: #ffffff;
  text-align: center;
  padding: 12px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}
.btn-planos:hover{ background-color: #d3bfff; }
/* ==========================
   CONTATO (igual ao mock)
   ========================== */

/* Fundo escuro + diagonais */
.contato-area{
  position: relative;
  padding: 78px 0;
  overflow: hidden;



background:
  radial-gradient(ellipse at center, #C4C4C4 0%, #ADAEAD 35%, #A09FA0 55%, #464646 100%),
  radial-gradient(ellipse at center, rgba(0,0,0,0) 45%, rgba(0,0,0,0.35) 100%);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.contato-area::before,
.contato-area::after{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 55%);
  transform: rotate(18deg);
  pointer-events:none;
}
.contato-area::after{
  inset:-40% -30%;
  background: linear-gradient(315deg, rgba(255,255,255,.06), rgba(255,255,255,0) 60%);
  transform: rotate(-16deg);
}

/* Container interno centralizado */
.contato-wrap{
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 48px));
  margin: 0 auto;
  text-align: center;
}

/* Título */
.contato-title{
  color: #fff;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

/* Botões (pílulas) */
.contato-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contato-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: #1f211c;
  text-decoration: none;

  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;

  box-shadow: 0 14px 35px rgba(0,0,0,.30);
  transition: transform .15s ease, filter .15s ease;
}

.contato-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* Ícone verde redondo */
.contato-icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #7fc241;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}

.contato-icon i{
  font-size: 16px;
  line-height: 1;
}

/* Card do mapa */
.contato-map-card{
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow: hidden; /* arredonda o iframe */
  width: min(920px, 100%);
  margin: 0 auto;
}

/* Embed responsivo */
.contato-map-embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7; /* parecido com o print */
}

.contato-map-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile */
@media (max-width: 575px){
  .contato-area{ padding: 56px 0; }
  .contato-btn{ width: 100%; justify-content: center; }
  .contato-map-embed{ aspect-ratio: 16 / 10; }
}

/* Footer */
.bg-footer-02{ background: var(--primaria); }

.footer-custom h5{ color: white; }
.footer-custom p{ color: var(--primaria); }
.term-color{ color: white !important; }
.footer-custom a{
  color: var(--primaria);
  text-decoration: none;
}

.bg-footer-02 h5,
.bg-footer-02 p,
.bg-footer-02 a{
  color: white;
}

.border-footer{ border-top: 2px solid var(--primaria); }

.mapa iframe{
  width: 100%;
  box-shadow: 0px 10px 10px rgba(0,0,0,.3);
  border-radius: 5px;
}

/* HERO BASE */
.home-hero{
  padding: 40px 0 60px;
  background: #fff;
}

/* TOPO */
.home-topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

/* BOTÃO ORÇAMENTO */
.btn-orcamento{
  background: #9BCB3B;
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
}

/* HERO */
.hero-row{ min-height: 480px; }

.hero-left{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-logo{ max-width: 220px; }

.hero-text{
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* CTA */
.btn-cta{
  background: #9BCB3B;
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 700;
  width: fit-content;
}

/* IMAGEM */
.hero-right{
  display: flex;
  justify-content: flex-end;
}
/* ====== PLANOS (layout igual ao mock) ====== */
.planos-area {
  background: transparent;
}

.planos-wrap{
  background: #7fc241;              /* verde do fundo */
  border-radius: 34px;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
  position: relative;
}

/* Header */
.planos-title{
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 10px;
}

.planos-sub{
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

/* Grid */
.planos-grid{
  margin-top: clamp(18px, 3vw, 34px);
}

/* Card base */
.plano-card{
  background: #2f3b1b;              /* verde escuro */
  border-radius: 26px;
  padding: 28px 24px;
  color: #fff;
  text-align: center;

  display: flex;
  flex-direction: column;

  min-height: 470px;                /* evita “pulos” por alturas diferentes */
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.plano-card--featured{
  background: #1f211c;              /* card do meio mais escuro */
}

/* “Subida” do card do meio apenas no desktop */
@media (min-width: 992px){
  .plano-card--featured{
    transform: translateY(-14px);
  }
}

.plano-nome{
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0 18px;
}

/* Preço */
.plano-preco{
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin: 0 0 6px;
}

.plano-moeda{
  font-weight: 800;
  font-size: 18px;
  opacity: .95;
  margin-top: 10px;
}

.plano-valor{
  font-weight: 900;
  font-size: 62px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plano-desc{
  font-size: 12px;
  opacity: .35;
  margin-bottom: 18px;
}

/* Pills */
.plano-beneficios{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.plano-pill{
  width: min(260px, 100%);
  border: 1px solid rgba(149,193,31,.75);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .01em;
  background: rgba(149,193,31,.10);
  color: rgba(255,255,255,.92);
}

.plano-pill.is-disabled{
  opacity: .28;
  background: transparent;
}

/* Botão */
.plano-cta{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #7fc241;
  color: #ffffff;
  text-decoration: none;

  height: 46px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;

  max-width: 240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

  transition: transform .15s ease, filter .15s ease;
}
.plano-cus{
  color: white;
  font-size: 30px;
  font-weight: 600;
}
.plano-cta:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
  background-color: white;
  color: var(--secundaria);
}

/* Mobile refinements */
@media (max-width: 575px){
  .plano-card{
    padding: 24px 18px;
    min-height: 455px;
  }
  .plano-valor{
    font-size: 56px;
  }
}
/* ===== AJUSTE FINO - PLANOS (para ficar igual ao mock) ===== */

/* Fundo verde + container arredondado */
.planos-wrap{
  background: #7fc241;                 /* verde do mock */
  border-radius: 34px;
  padding: 56px 56px 54px;             /* menos “vazio” no topo */
  max-width: 1480px;                   /* limita como no print */
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);

}

/* Título e texto */
.planos-title{
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.planos-sub{
  max-width: 720px;                    /* largura do texto igual ao mock */
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.70);
  margin: 0 auto;
}

/* Grid / respiro entre cards */
.planos-grid{
  margin-top: 42px;
  row-gap: 22px;
}

/* Cards */
.plano-card{
  border-radius: 28px;
  padding: 30px 26px;
  min-height: 520px;                   /* estabiliza alturas */
  box-shadow: 0 22px 55px rgba(0,0,0,.20);
}

/* Card destaque (meio) */
@media (min-width: 992px){
  .plano-card--featured{
    transform: translateY(-22px);      /* sobe mais (igual mock) */
  }
}

/* Nome do plano */
.plano-nome{
  font-size: 19px;
  font-weight: 800;
  margin: 10px 0 16px;
}

/* Preço */
.plano-moeda{
  font-size: 16px;
  margin-top: 12px;
  opacity: .95;
}
.plano-valor{
  font-size: 66px;                     /* 12 maior e mais “hero” */
  font-weight: 900;
  letter-spacing: -0.05em;
}

/* Subtexto */
.plano-desc{
  font-size: 12px;
  opacity: .32;
  margin-bottom: 18px;
}

/* Pills */
.plano-pill{
  padding: 11px 16px;
  font-size: 13px;
  border: 1px solid rgba(149,193,31,.85);
  background: rgba(149,193,31,.10);
}
.plano-pill.is-disabled{
  opacity: .22;                        /* desabilitadas mais “apagadas” */
  background: transparent;
}

/* Botão */
.plano-cta{
  height: 48px;
  border-radius: 14px;
  max-width: 260px;
  font-size: 13px;
  letter-spacing: .06em;
}

/* Mobile: reduz padding do bloco verde e tira subida do destaque */
@media (max-width: 575px){
  .planos-wrap{
    padding: 36px 18px 30px;
    border-radius: 26px;
  }
  .plano-card{
    min-height: auto;
    padding: 26px 18px;
  }
  .plano-valor{ font-size: 58px; }
}
/* ===== AUMENTAR O QUADRO VERDE (soltar do .container do Bootstrap) ===== */
.planos-area .container{
  max-width: 100% !important;      /* remove o limite do bootstrap */
  padding-left: 0 !important;       /* remove as bordas internas */
  padding-right: 0 !important;
}

/* quadro verde maior, com limite máximo “bonito” */
.planos-wrap{
  width: min(1600px, calc(100vw - 48px)) !important; /* aumenta o quadro */
  margin: 0 auto !important;
  padding: 80px 70px 70px !important;                /* mais área verde */
}

/* mobile */
@media (max-width: 575px){
  .planos-wrap{
    width: calc(100vw - 24px) !important;
    padding: 46px 18px 34px !important;
    border-radius: 26px !important;
  }
}










/* ================================
   DEPOIMENTOS (igual ao mock)
   ================================ */

/* Seção + fundo */
.depoimentos-area{
  position: relative;
  padding: 78px 0;
  overflow: hidden;    /* corta o slide “entrando” */
}

/* Efeito diagonais (como no print) */
.depoimentos-area::before,
.depoimentos-area::after{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 55%);
  transform: rotate(18deg);
  pointer-events:none;
}
.depoimentos-area::after{
  inset:-40% -30%;
  background: linear-gradient(315deg, rgba(255,255,255,.06), rgba(255,255,255,0) 60%);
  transform: rotate(-16deg);
}

/* Container interno */
.depoimentos-wrap{
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
}

/* Título */
.depoimentos-title{
  color: #fff;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 44px;
}

/* Swiper: garante o “corte” do próximo card */
.depoSwiper{
  overflow: visible; /* importante: quem corta é a seção */
}

/* Slide com largura fixa (pra mostrar “um pedaço” do próximo) */
.depo-slide{
  width: 520px !important; /* ajuste fino */
}

/* Card */
.depo-card{
  background: #fff;
  border-radius: 42px;
  padding: 26px 28px;
  box-shadow: 0 22px 60px rgba(0,0,0,.30);
  min-height: 180px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

/* Texto do depoimento */
.depo-text{
  color: #a1a1a1;
  font-size: 16px;
  line-height: 1.55;
}

/* Evita que o wp injete margens enormes */
.depo-text p{
  margin: 0;
}

/* Rodapé do card */
.depo-footer{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar */
.depo-avatar{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  background: #1f211c;
  flex: 0 0 52px;
}
.depo-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Nome + estrelas */
.depo-meta{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.depo-name{
  color: #1f211c;
  font-weight: 800;
  font-size: 14px;
}
.depo-stars{
  display: flex;
  gap: 2px;
  color: #fdc400;
  font-size: 12px;
}

/* (Opcional) ícone Google */
.depo-google{
  margin-left: auto;
  opacity: .9;
}
.depo-google img{
  width: 18px;
  height: auto;
  display: block;
}

/* Responsivo */
@media (max-width: 991px){
  .depoimentos-area{ padding: 56px 0; }
  .depo-slide{ width: 86vw !important; } /* no mobile vira 1 por vez */
  .depo-card{ border-radius: 32px; }
}
/* ===== DEPOIMENTOS: todos os cards com a mesma altura ===== */

/* Faz todos os slides “esticar” igual */
.depoSwiper .swiper-wrapper{
  align-items: stretch;
}

/* O slide precisa permitir o card ocupar 100% */
.depo-slide{
  height: auto;
  display: flex;
}

/* Card com altura fixa/igual + estrutura */
.depo-card{
  width: 100%;
  height: 220px;              /* ajuste aqui (ex: 210/230) */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Texto: limita quantidade de linhas para não aumentar o card */
.depo-text{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;      /* quantidade de linhas (3 ou 4) */
  overflow: hidden;
}

/* Garante que o rodapé “cole” embaixo */
.depo-footer{
  margin-top: auto;
}

/* Avatar sempre com o mesmo tamanho (evita variações) */
.depo-avatar{
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}
.depo-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
}

/* Mobile: deixa o card um pouco mais alto (opcional) */
@media (max-width: 991px){
  .depo-card{
    height: 240px;
  }
  .depo-text{
    -webkit-line-clamp: 4;
  }
}


/* =========================
   AJUSTE FINAL (igual print)
   ========================= */

:root{
  --overlap-planos: 110px;  /* quanto o bloco verde (Planos) entra no preto */
  --overlap-sitex: 120px;   /* quanto o card Sitex "entra" no preto */
  --faixa-sitex: 120px;     /* altura da faixa branca atrás do card */
}

/* 1) PLANOS entrando na área preta */
.planos-area{
  position: relative;
  z-index: 5;
  margin-bottom: calc(var(--overlap-planos) * -1); /* puxa pra dentro da seção preta */
}

/* garante que o verde não "vaze" em retas */
.planos-wrap{
  overflow: hidden;
}

/* 2) DEPOIMENTOS: cria espaço no topo (pra receber Planos) e no fim (pra receber Sitex) */
.banner-depo{
  position: relative;
  z-index: 1;
  overflow: visible !important;

  /* topo empurra o conteúdo pra baixo, deixando o Planos "encaixado" */
  padding-top: calc(var(--overlap-planos) + 40px) !important;

  /* fundo reserva espaço pro card Sitex sem quebrar layout */
  padding-bottom: calc(var(--overlap-sitex) + 70px) !important;

  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* 3) SITEX: fica "dentro" da área preta, com faixa branca atrás */
.sitex-cta-area{
  position: relative;
  z-index: 6;
  margin-top: calc(var(--overlap-sitex) * -1); /* sobe e entra no banner-depo */
  padding-top: 0 !important;
  padding-bottom: 0 !important;

  background: transparent !important; /* mata qualquer fundo branco/cinza do section */
}

/* faixa branca atrás (igual print) */
.sitex-cta-area::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  /* centraliza a faixa na altura do card */
  top: 50%;
  transform: translateY(-50%);

  height: var(--faixa-sitex);
  background: #ffffff;
  z-index: -1;
}

/* garante que nada interno pinte fundo */
.sitex-cta-area > .container,
.sitex-cta-area .sitex-cta{
  background: transparent !important;
}

/* 4) Mobile: reduz overlaps */
@media (max-width: 575px){
  :root{
    --overlap-planos: 70px;
    --overlap-sitex: 70px;
    --faixa-sitex: 80px;
  }
}
/* =========================
   SITEX entrando no CONTATO
   ========================= */

:root{
  --overlap-sitex-contato: 110px; /* quanto o card Sitex entra no contato */
  --overlap-footer: 110px;        /* quanto o footer verde entra no contato */
}

/* =========================
   CONTATO (seção preta)
   ========================= */

/* Fundo escuro + diagonais */
.contato-area{
  position: relative;
  z-index: 1;

  /* antes era: padding: 78px 0;
     agora: reserva espaço em cima (card Sitex) e embaixo (footer) */
  padding-top: calc(78px + var(--overlap-sitex-contato));
  padding-bottom: calc(78px + var(--overlap-footer));
  padding-left: 0;
  padding-right: 0;

  overflow: hidden;

background:
  radial-gradient(ellipse at center, #C4C4C4 0%, #ADAEAD 35%, #A09FA0 55%, #464646 100%),
  radial-gradient(ellipse at center, rgba(0,0,0,0) 45%, rgba(0,0,0,0.35) 100%);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
    background-attachment: fixed;
}

.contato-area::before,
.contato-area::after{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 55%);
  transform: rotate(18deg);
  pointer-events:none;
}
.contato-area::after{
  inset:-40% -30%;
  background: linear-gradient(315deg, rgba(255,255,255,.06), rgba(255,255,255,0) 60%);
  transform: rotate(-16deg);
}

/* Container interno centralizado */
.contato-wrap{
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 48px));
  margin: 0 auto;
  text-align: center;
}

/* Título */
.contato-title{
  color: #fff;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

/* Botões (pílulas) */
.contato-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contato-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #ffffff;
  color: #1f211c;
  text-decoration: none;

  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;

  box-shadow: 0 14px 35px rgba(0,0,0,.30);
  transition: transform .15s ease, filter .15s ease;
}

.contato-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
  color: var(--secundaria);
}

/* Ícone verde redondo */
.contato-icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #7fc241;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
}

.contato-icon i{
  font-size: 16px;
  line-height: 1;
}

/* Card do mapa */
.contato-map-card{
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow: hidden;
  width: min(920px, 100%);
  margin: 0 auto;
}

/* Embed responsivo */
.contato-map-embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
}

.contato-map-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   SITEX entrando no CONTATO
   ========================= */
.sitex-cta-area{
  position: relative;
  z-index: 20;
  margin-bottom: calc(var(--overlap-sitex-contato) * -1) !important;
}

/* =========================
   FOOTER verde entrando no preto
   ========================= */
footer,
.footer-area,
.footer-wrap{
  position: relative;
  z-index: 30;
  margin-top: calc(var(--overlap-footer) * -1);
}

/* Mobile */
@media (max-width: 575px){
  :root{
    --overlap-sitex-contato: 70px;
    --overlap-footer: 70px;
  }

  .contato-area{
    padding-top: calc(56px + var(--overlap-sitex-contato));
    padding-bottom: calc(56px + var(--overlap-footer));
  }

  .contato-btn{ width: 100%; justify-content: center; }
  .contato-map-embed{ aspect-ratio: 16 / 10; }
}
  /* =========================
   CORREÇÃO: TELA “INDO PRO LADO”
   (overflow horizontal)
   ========================= */

/* Segurança geral: evita scroll lateral */
html, body{
  overflow-x: hidden;
}


/* Se as diagonais estiverem em .banner-depo (ou .bg-quater), garanta que não empurrem lateralmente */
.banner-depo::before,
.banner-depo::after,
.bg-quater::before,
.bg-quater::after{
  left: 0 !important;
  right: 0 !important;

  /* mantém o efeito sem “estourar” tanto a largura */
  inset: -40% 0 !important;
}

/* EXTRA: se algum bloco estiver usando 100vw e estourando 1~2px,
   isso elimina overflow residual. */
.contato-wrap,
.depoimentos-wrap{
  max-width: 100%;
}
/* =========================
   FOOTER (igual ao print)
   ========================= */

.footer-custom{
  padding: 0;
  margin: 0;
}

/* “Cartão” verde arredondado */
.footer-card{
  background: #7fc241;
  border-radius: 70px 70px 0 0;
  padding: 40px 56px 18px;
  overflow: hidden;
}

/* conteúdo central (limita largura como no print) */
.footer-inner{
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

/* esquerda */
.footer-left{
  max-width: 560px;
}

.footer-logo{
  margin: 0 0 14px;
}

.footer-logo img{
  display: block;
  max-width: 220px;
  height: auto;
}

.footer-text{
  margin: 0;
  color: rgba(255,255,255,.80);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

/* direita */
.footer-right{
  min-width: 280px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* sociais topo (bolinhas) */
.footer-socials{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.90);
  color: #fff;
  text-decoration: none;
}

.footer-social i{
  font-size: 14px;
  line-height: 1;
}

.footer-divider{
  width: 280px;
  height: 2px;
  background: rgba(255,255,255,.55);
  margin: 10px 0 8px;
}

/* contato */
.footer-contact-title{
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.footer-contact-icons{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.footer-icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.95);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.35);
}

.footer-icon i{
  font-size: 14px;
  line-height: 1;
}

/* base legal central */
.footer-bottom{
  max-width: 1320px;
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.25);
  text-align: center;
}

.footer-legal{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.90);
}

.footer-legal a{
  color: #fff;
  text-decoration: none;
}

.footer-terms{
  margin-left: 10px;
  display: inline-block;
}

/* responsivo */
@media (max-width: 991px){
  .footer-card{
    border-radius: 50px 50px 0 0;
    padding: 28px 22px 14px;
  }

  .footer-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer-right{
    align-items: center;
    text-align: center;
    min-width: 0;
  }

  .footer-divider{
    width: 220px;
  }

  .footer-contact-icons{
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
/* =========================
   FOOTER VERDE POR CIMA DO PRETO
   ========================= */

:root{
  --overlap-footer: 120px; /* ajuste fino: 80~160 */
}

/* garante que o PRETO fique abaixo na pilha */
.contato-area{
  position: relative;
  z-index: 1;
  /* reserva espaço para o footer "entrar" sem esmagar o conteúdo */
  padding-bottom: calc(78px + var(--overlap-footer));
}

/* garante que as diagonais do preto não passem por cima do footer */
.contato-area::before,
.contato-area::after{
  z-index: 0;
}
.contato-wrap{
  position: relative;
  z-index: 1;
}

/* footer sobe e fica POR CIMA do preto */
.footer-custom{
  position: relative;
  z-index: 50;
  margin-top: calc(var(--overlap-footer) * -1);
}

/* Mobile */
@media (max-width: 575px){
  :root{
    --overlap-footer: 70px;
  }

  .contato-area{
    padding-bottom: calc(56px + var(--overlap-footer));
  }
}









/* Botão */
.plano-cta-2{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: white;
  color: var(--secundaria);
  text-decoration: none;

  height: 46px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;

  max-width: 240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

  transition: transform .15s ease, filter .15s ease;
}
.plano-cta-2:hover{
  color: gray;
}
.plano-cus-2{
  color: white;
  font-size: 30px;
  font-weight: 600;
}
.plano-cta:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
  background-color: white;
  color: var(--secundaria);
}
.para-ma{
  font-size: 25px;
  color: white;
}

.portfolio-filters .is-active {
    background: gray;
    color: #ffffff;
    font-size: 16px;
    border-radius: 5px;
}
.btn-outline-dark {
    color: #212529;
    border: 1px solid var(--secundaria);
    font-size: 16px;

}

.depoSwiper{
  overscroll-behavior: contain;
  touch-action: pan-y;
}



