#servicos,
#quem-somos,
#missao-visao-valores,
#diferenciais {
  scroll-margin-top: 110px;
}

html {
  scroll-behavior: smooth;
}

.hero-slider {
  background: var(--site-dark);
}

.hero-slider .swiper-slide-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.92) 15%,
      rgba(255,255,255,.82) 35%,
      rgba(255,255,255,.45) 65%,
      rgba(255,255,255,.10) 100%
    );
}

.hero-badge {
  padding: .55rem 1rem;
  border-radius: 50rem;
  color: var(--site-dark);
  background: rgba(255,255,255,.75);
  order:1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
  font-weight: 600;
}

.hero-title {
  max-width: 820px;
  font-size: clamp(1.35rem, 5vw, 4.25rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
  text-shadow:none;
  color: var(--site-dark);
}

.hero-text {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  opacity: .92;
  color: var(--site-dark-soft);
  text-shadow:none;
}

.hero-trust span {
  color: var(--site-dark);
  font-size: .95rem;
  font-weight: 500;
}

.hero-trust i {
  color: var(--site-primary);
}

.hero-pagination {
  bottom: 2rem !important;
  z-index: 5;
}

.hero-slider .swiper-pagination-bullet {
  width: .7rem;
  height: .7rem;
  background: rgba(255,255,255,.65);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--site-primary);
}

@media (max-width: 767.98px) {
  .hero-slider,
  .hero-slider .min-vh-100 {
    min-height: 720px !important;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.92) 0%,
        rgba(255,255,255,.85) 60%,
        rgba(255,255,255,.78) 100%
      );
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-pagination {
    bottom: 1.25rem !important;
  }
}

/* =========================================================
   PASSO A PASSO PREMIUM
========================================================= */

.section-spacing {
  padding: 6rem 0;
}

.site-steps {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left,
      rgba(var(--ar-primary-rgb), .08),
      transparent 35%);
}

/* Cabeçalhos */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--site-primary);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-title {
  color: var(--site-dark);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
}


/* =========================================================
   CARD LATERAL
========================================================= */

.steps-feature-card {
  position: relative;
  min-height: 580px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.steps-feature-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.steps-feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.15) 0%,
      rgba(0,0,0,.65) 100%
    ),
    linear-gradient(
      135deg,
      rgba(var(--ar-primary-rgb), .70) 0%,
      rgba(0,0,0,.15) 60%
    );
}

.steps-feature-content {
  position: relative;
  z-index: 2;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.steps-feature-title {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.steps-feature-text {
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  margin-bottom: 0;
}


/* =========================================================
   TIMELINE PREMIUM
========================================================= */

.steps-list {
  position: relative;
}

/* Linha vertical */

.steps-list::before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 50px;
  width: 3px;
  border-radius: 50px;

  background: linear-gradient(
    180deg,
    rgba(var(--ar-primary-rgb), .15),
    rgba(var(--ar-primary-rgb), .55),
    rgba(var(--ar-primary-rgb), .15)
  );
}

/* Card */

.steps-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.75rem;

  margin-bottom: 1.25rem;
  padding: 1.5rem;

  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 1.5rem;

  box-shadow: 0 12px 35px rgba(0,0,0,.05);

  transition: all .35s ease;
}

.steps-item:last-child {
  margin-bottom: 0;
}

.steps-item:hover {
  transform: translateY(-6px);

  border-color: rgba(var(--ar-primary-rgb), .20);

  box-shadow:
    0 20px 50px rgba(0,0,0,.08),
    0 0 0 1px rgba(var(--ar-primary-rgb), .08);
}


/* Número */

.steps-number {
  position: relative;
  z-index: 2;

  flex-shrink: 0;

  width: 100px;
  height: 100px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      var(--site-primary),
      var(--site-primary-hover)
    );

  color: #fff;

  font-size: 1.45rem;
  font-weight: 800;

  box-shadow:
    0 12px 30px rgba(var(--ar-primary-rgb), .25),
    0 0 0 10px rgba(var(--ar-primary-rgb), .08);
}

.steps-number span {
  line-height: 1;
}


/* Conteúdo */

.steps-body {
  flex: 1;
}

.steps-body h3 {
  color: var(--site-dark);

  font-size: 1.25rem;
  font-weight: 800;

  margin-bottom: .5rem;
}

.steps-body p {
  margin-bottom: 0;

  color: var(--site-muted);

  line-height: 1.7;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991.98px) {

  .section-spacing {
    padding: 5rem 0;
  }

  .steps-feature-card,
  .steps-feature-content {
    min-height: 450px;
  }

}


@media (max-width: 767.98px) {

  .section-spacing {
    padding: 4rem 0;
  }

  .steps-list::before {
    left: 35px;
    top: 45px;
    bottom: 45px;
  }

  .steps-item {
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1.25rem;
  }

  .steps-number {
    width: 70px;
    height: 70px;

    font-size: 1.05rem;

    box-shadow:
      0 8px 20px rgba(var(--ar-primary-rgb), .25),
      0 0 0 6px rgba(var(--ar-primary-rgb), .08);
  }

  .steps-body h3 {
    font-size: 1.05rem;
  }

  .steps-body p {
    font-size: .93rem;
    line-height: 1.6;
  }

}


@media (max-width: 575.98px) {

  .steps-feature-card {
    border-radius: 1.5rem;
  }

  .steps-feature-content {
    padding: 1.75rem;
  }

  .steps-feature-title {
    font-size: 1.8rem;
  }

}

/* =========================================================
   DIFERENCIAIS PREMIUM
========================================================= */

.site-differentials {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(var(--ar-primary-rgb), .08),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(var(--ar-primary-rgb), .03) 100%
    );
}

.site-differentials .section-description {
  max-width: 760px;
  margin: 0 auto;

  color: var(--site-muted);

  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================================================
   CARD
========================================================= */

.differential-card {
  position: relative;

  height: 100%;

  padding: 1.25rem;

  background: #fff;

  border-radius: 1.25rem;

  border: 1px solid rgba(0,0,0,.06);

  box-shadow:
    0 10px 30px rgba(0,0,0,.05);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.differential-card::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      135deg,
      rgba(var(--ar-primary-rgb), .08),
      transparent 45%
    );

  opacity: 0;

  transition: opacity .3s ease;

  pointer-events: none;
}

.differential-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(var(--ar-primary-rgb), .20);

  box-shadow:
    0 18px 45px rgba(0,0,0,.08);
}

.differential-card:hover::before {
  opacity: 1;
}

/* =========================================================
   CABEÇALHO
========================================================= */

.differential-header {
  display: flex;
  align-items: center;
  gap: .9rem;

  margin-bottom: .75rem;
}

/* =========================================================
   ÍCONE SEM FUNDO
========================================================= */

.differential-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  min-width: 48px;
}

.differential-icon img {
  width: 48px;
  height: 48px;

  object-fit: contain;
  display: block;

  filter:
    drop-shadow(
      0 4px 12px rgba(var(--ar-primary-rgb), .20)
    );
}

/* =========================================================
   TÍTULO
========================================================= */

.differential-header h3 {
  margin: 0;

  color: var(--site-dark);

  font-size: 1.05rem;
  font-weight: 800;

  line-height: 1.35;

  letter-spacing: -.02em;
}

/* =========================================================
   TEXTO
========================================================= */

.differential-body {
  position: relative;
  z-index: 2;
}

.differential-body p {
  margin: 0;

  color: var(--site-muted);

  font-size: .95rem;
  line-height: 1.75;
}

/* =========================================================
   CTA FINAL
========================================================= */

.differentials-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 2rem;

  margin-top: 4rem;

  padding: 2rem;

  border-radius: 1.5rem;

  background: #fff;

  border: 1px solid rgba(var(--ar-primary-rgb), .15);

  box-shadow:
    0 15px 40px rgba(0,0,0,.06);
}

.differentials-cta h3 {
  margin-bottom: .35rem;

  color: var(--site-dark);

  font-size: 1.35rem;
  font-weight: 800;
}

.differentials-cta p {
  margin-bottom: 0;

  color: var(--site-muted);

  line-height: 1.7;
}

.differentials-cta .btn {
  flex-shrink: 0;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

  .differentials-cta {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 767px) {

  .differential-card {
    padding: 1.1rem;
  }

  .differential-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .differential-icon img {
    width: 42px;
    height: 42px;
  }

  .differential-header h3 {
    font-size: 1rem;
  }

  .differential-body p {
    font-size: .92rem;
    line-height: 1.65;
  }

  .differentials-cta {
    padding: 1.5rem;
  }

  .differentials-cta .btn {
    width: 100%;
  }

}

/* =========================================================
   QUEM SOMOS
========================================================= */

.site-about{
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(circle at top left,
        rgba(var(--ar-primary-rgb),.08),
        transparent 35%),
        #fff;
}

/* =============================
   IMAGEM
============================= */

.about-image-wrap{

    position:relative;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
        0 30px 70px rgba(0,0,0,.12);
}

.about-image{

    width:100%;
    height:600px;

    display:block;

    object-fit:cover;

    transition:.5s;
}

.about-image:hover{

    transform:scale(1.03);

}

.about-image-wrap::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,0,0,.18) 100%
        );

    pointer-events:none;

}

/* =============================
   CARD ABAIXO DA FOTO
============================= */

.about-highlight{
    display:flex;
    align-items:center;
    gap:22px;
    margin-top:24px;
    padding:28px;
    border-radius:22px;
    background:
        linear-gradient(
            135deg,
            var(--site-primary),
            var(--site-primary-hover)
        );
    color:#fff;
    box-shadow:
        0 18px 45px rgba(var(--ar-primary-rgb),.28);
}

.about-highlight-icon{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:2rem;
}

.about-highlight h3{
    margin-bottom:.4rem;
    color:#fff;
    font-size:1.25rem;
    font-weight:800;
}

.about-highlight p{
    margin:0;
    color:rgba(255,255,255,.95);
    line-height:1.8;
    font-size:.98rem;
}

/* =============================
   TEXTO
============================= */

.about-content{
    padding-left:20px;
}

.about-text{
    color:var(--site-muted);
    font-size:1.05rem;
    line-height:1.95;
    margin-bottom:2rem;
}

.about-text p:last-child{
    margin-bottom:0;
}

/* =============================
   DIFERENCIAIS
============================= */

.about-points{
    display:grid;
    gap:16px;
    margin-top:2rem;
    margin-bottom:2.2rem;
}

.about-points div{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:700;
    color:var(--site-dark);
}

.about-points i{
    color:var(--site-primary);
    font-size:1.25rem;
}

/* =============================
   BOTÕES
============================= */

.about-content .btn{
    padding:.9rem 1.8rem;
    font-weight:700;
    border-radius:999px;
}

/* =============================
   RESPONSIVO
============================= */

@media (max-width:991px){
    .about-content{
        padding-left:0;
        margin-top:20px;
    }

    .about-image{
        height:480px;
    }

}

@media (max-width:767px){
    .about-image{
        height:340px;
    }

    .about-highlight{
        flex-direction:column;
        text-align:center;
        padding:24px 20px;
    }

    .about-highlight-icon img{
        width:40px;
        height:40px;
        object-fit:contain;
    }

    .about-text{
        font-size:1rem;
    }

    .about-points{
        gap:12px;
    }

    .about-content .btn{
        width:100%;
    }
}

/* =========================================================
   CTA FINAL
========================================================= */

.final-cta {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(var(--ar-primary-rgb), .035) 0%,
      #ffffff 100%
    );
}

.final-cta-box {
  position: relative;
  overflow: hidden;

  padding: 4rem;

  border-radius: 2rem;

  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, .16),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      var(--site-dark) 0%,
      var(--site-primary) 100%
    );

  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, .14);
}

.final-cta-box::before {
  content: "";

  position: absolute;
  top: -180px;
  right: -180px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, .12);

  pointer-events: none;
}

.final-cta-box::after {
  content: "";

  position: absolute;
  right: 80px;
  bottom: -220px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .045);

  pointer-events: none;
}

.final-cta-box .row {
  position: relative;
  z-index: 2;
}

/* =========================================================
   SELO
========================================================= */

.final-cta-badge {
  display: inline-flex;
  align-items: center;

  margin-bottom: 1.25rem;

  padding: .55rem .9rem;

  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50rem;

  background: rgba(255, 255, 255, .1);

  color: #fff;

  font-size: .78rem;
  font-weight: 800;

  letter-spacing: .06em;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

/* =========================================================
   TEXTO
========================================================= */

.final-cta h2 {
  max-width: 650px;

  margin-bottom: 1.25rem;

  color: #fff;

  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;

  line-height: 1.12;
  letter-spacing: -.04em;
}

.final-cta p {
  max-width: 610px;

  margin-bottom: 0;

  color: rgba(255, 255, 255, .8);

  font-size: 1.08rem;
  line-height: 1.75;
}

/* =========================================================
   BENEFÍCIOS
========================================================= */

.cta-benefits {
  display: flex;
  flex-wrap: wrap;

  gap: 1.25rem 2rem;

  margin-top: 2rem;
}

.cta-benefits > div {
  display: flex;
  align-items: center;

  gap: .7rem;

  color: #fff;

  font-size: .9rem;
  font-weight: 700;
}

.cta-benefits img {
  width: 50px;
  height: 50px;

  object-fit: contain;

  filter:
    brightness(0)
    invert(1);

  opacity: .92;
}

/* =========================================================
   BOTÃO
========================================================= */

.final-cta .btn-primary {
  border-color: #fff;
  background: #fff;
  color: var(--site-primary);

  font-weight: 800;

  box-shadow:
    0 1rem 2.5rem rgba(0, 0, 0, .18);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease;
}

.final-cta .btn-primary:hover {
  transform: translateY(-3px);

  border-color: #fff;
  background: rgba(255, 255, 255, .92);
  color: var(--site-primary-hover);

  box-shadow:
    0 1.25rem 3rem rgba(0, 0, 0, .24);
}

/* =========================================================
   IMAGEM
========================================================= */

.final-cta-image {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 520px;

  border-radius: 1.75rem;

  filter:
    drop-shadow(
      0 1.5rem 2.5rem rgba(0, 0, 0, .22)
    );
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991.98px) {

  .final-cta-box {
    padding: 3rem;
  }

  .final-cta-image {
    margin-top: 3rem;
    max-width: 480px;
  }

}

@media (max-width: 767.98px) {

  .final-cta-box {
    padding: 2rem 1.5rem;

    border-radius: 1.5rem;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .final-cta p {
    font-size: 1rem;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 1rem;
  }

  .final-cta .btn {
    width: 100%;

    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .final-cta-image {
    margin-top: 2.5rem;

    border-radius: 1.25rem;
  }

}

/* =========================================================
   TRUST BAR FOOTER
========================================================= */

.footer-trustbar {
  position: relative;
  padding: 2rem 0;
  background: #fff;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 1.35rem;
  border-radius: 1.25rem;
  background: rgba(var(--ar-primary-rgb), .06);
  border: 1px solid rgba(var(--ar-primary-rgb), .12);
}

.footer-trust-item i {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--site-primary), var(--site-primary-hover));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.footer-trust-item strong {
  display: block;
  color: var(--site-dark);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .2rem;
}

.footer-trust-item span {
  display: block;
  color: var(--site-muted);
  font-size: .9rem;
  line-height: 1.5;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;
  overflow: visible;
  padding: 5rem 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(var(--ar-primary-rgb), .10), transparent 30%),
    linear-gradient(180deg, var(--site-dark-soft) 0%, var(--site-dark) 100%);
  color: #fff;
}

.site-footer .navbar-brand img {
  width: 250px;
  max-width: 100%;
  height: auto;
}

.footer-description {
  margin-top: 1.25rem;
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  font-size: .95rem;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: .75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--site-primary);
  color: #fff;
  transform: translateY(-4px);
}

.site-footer h5 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.site-footer .nav {
  gap: .35rem;
}

.site-footer .nav-link {
  color: rgba(255,255,255,.72);
  transition: .25s;
  text-decoration: none;
}

.site-footer .nav-link:hover {
  color: var(--site-primary);
  padding-left: 6px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  line-height: 1.7;
}

.footer-contact-item:hover {
  color: var(--site-primary);
}

.footer-contact-item i {
  color: var(--site-primary);
  min-width: 18px;
  margin-top: 4px;
  font-size: 1rem;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  background: var(--site-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  transition: .3s;
}

.footer-whatsapp:hover {
  background: var(--site-primary-hover);
  color: #fff;
  transform: translateY(-3px);
}

.footer-map iframe {
  width: 100%;
  min-height: 230px;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.footer-bottom{
    margin-top:2rem;
    padding-top:1.5rem;
    border-top:1px solid rgba(255,255,255,.10);

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;

    gap:1rem;

    padding-bottom:80px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: .9rem;
}

.footer-bottom a {
  color: var(--site-primary-soft);
  text-decoration: none;
  font-weight: 800;
}

.footer-bottom a:hover {
  color: #fff;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991.98px) {
  .site-footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: center;
  }

  .footer-map iframe {
    margin-top: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;

    padding-bottom:95px;
  }
}

@media (max-width: 575.98px) {
  .footer-trustbar {
    padding: 1.5rem 0;
  }

  .footer-trust-item {
    align-items: flex-start;
  }

  .site-footer {
    padding: 4rem 0 2rem;
  }

  .site-footer .navbar-brand img {
    width: 210px;
  }

  .footer-whatsapp {
    width: 100%;
  }
}

/*=================================================
MISSÃO VISÃO VALORES
==================================================*/

.mvv-section {
  background:
    linear-gradient(
      180deg,
      rgba(var(--ar-primary-rgb), .03),
      transparent
    );
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;

  padding: .6rem 1rem;

  border-radius: 50rem;

  background: rgba(var(--ar-primary-rgb), .10);

  color: var(--site-primary);

  font-size: .85rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: .05em;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--site-primary);
}

.section-title {
  max-width: 900px;

  margin: 1rem auto;

  color: var(--site-dark);

  font-size: clamp(2rem, 4vw, 3.2rem);

  font-weight: 800;

  line-height: 1.15;
}

.section-subtitle {
  max-width: 750px;

  color: var(--site-muted);

  font-size: 1.1rem;

  line-height: 1.8;
}

.mvv-card {
  position: relative;

  padding: 2.5rem;

  height: 100%;

  border-radius: 30px;

  background: #fff;

  border: 1px solid rgba(0,0,0,.05);

  box-shadow:
    0 15px 45px rgba(0,0,0,.06);

  transition: all .35s ease;
}

.mvv-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

.mvv-icon {
  width: 90px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;

  border-radius: 24px;

  background:
    rgba(var(--ar-primary-rgb), .08);
}

.mvv-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.mvv-card h3 {
  margin-bottom: 1rem;

  color: var(--site-dark);

  font-size: 1.5rem;
  font-weight: 700;
}

.mvv-card p {
  margin-bottom: 0;

  color: var(--site-muted);

  line-height: 1.8;
}

@media (max-width: 991.98px) {

  .section-title {
    font-size: 2rem;
  }

  .mvv-card {
    padding: 2rem;
  }

}

@media (max-width: 767.98px) {

  .mvv-section {
    text-align: center;
  }

  .mvv-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .section-subtitle {
    font-size: 1rem;
  }

}

/*=================================================
PÁGINA CONTATO
==================================================*/

body {
  overflow-x: hidden;
}

/* Seção superior */
.bg-fundo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(var(--ar-primary-rgb), .12), transparent 35%),
    linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.bg-fundo .container {
  position: relative;
  z-index: 2;
}

.bg-fundo h1 {
  color: var(--site-primary-hover) !important;
  text-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.bg-fundo > .container > p {
  max-width: 720px;
  color: var(--site-muted) !important;
}

/* Cards de informações */
.bg-fundo .card {
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(18, 21, 25, .08);
  transition: all .25s ease;
}

.bg-fundo .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(18, 21, 25, .12);
}

.bg-fundo .card-body {
  padding: 2rem;
}

.bg-fundo .card-title {
  position: relative;
  padding-bottom: .85rem;
  color: var(--site-dark);
}

.bg-fundo .card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--site-primary);
}

.bg-fundo .card p {
  color: var(--site-muted);
  line-height: 1.6;
}

.bg-fundo .btn-outline-primary {
  border-radius: 999px;
  font-weight: 600;
}

/*=================================================
FORMULÁRIO CONTATO
==================================================*/

.contact-form-section {
  margin-top: -260px;
  position: relative;
  z-index: 5;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 0;
  background:
    linear-gradient(135deg,
      var(--site-primary),
      var(--site-primary-hover));
  box-shadow: 0 35px 90px rgba(var(--ar-primary-rgb), .35);
}

.contact-form-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  pointer-events: none;
}

.contact-form-bg-shape.shape-1 {
  width: 360px;
  height: 360px;
  top: -160px;
  right: -120px;
}

.contact-form-bg-shape.shape-2 {
  width: 240px;
  height: 240px;
  left: -90px;
  bottom: -90px;
}

.contact-form-badge {
  display: inline-flex;
  align-items: center;
  padding: .45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
}

.contact-form-card .form-label {
  color: #fff;
  font-weight: 600;
}

.contact-form-card .form-control {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .96);
  color: var(--site-dark);
  border-radius: 16px;
}

.contact-form-card .form-control::placeholder {
  color: rgba(18, 21, 25, .45);
}

.contact-form-card .form-control:focus {
  border-color: #fff;
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .18);
}

.contact-services-box {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
}

.service-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option {
  display: flex;
  align-items: center;
  gap: .85rem;
  width: 100%;
  min-height: 76px;
  padding: 1rem;
  border-radius: 20px;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: all .25s ease;
}

.service-option:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .16);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .16);
  font-size: 1.25rem;
}

.service-check:checked + .service-option {
  background: #fff;
  color: var(--site-primary);
  border-color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
}

.service-check:checked + .service-option .service-icon {
  background: rgba(var(--ar-primary-rgb), .1);
}

.contact-submit-btn {
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 999px;
  font-weight: 700;
}

/* Modal mapa */
#modalMapa .modal-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
}

#modalMapa .modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

#modalMapa iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.contact-form-card small {
  color: rgba(255,255,255,.85);
}

.contact-form-link {
  color: var(--site-support) !important;
  font-weight: 700;
}

.contact-form-link:hover {
  color: #fff !important;
}

/*=================================================
MOBILE
==================================================*/

@media (max-width: 991.98px) {
  .bg-fundo {
    text-align: center;
  }

  .bg-fundo > .container > p {
    margin-left: auto;
    margin-right: auto;
  }

  .bg-fundo .card-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-form-section {
    margin-top: -230px;
  }
}

@media (max-width: 767.98px) {
  .bg-fundo .container {
    padding-top: 4rem !important;
  }

  .bg-fundo h1 {
    font-size: 3rem;
  }

  .bg-fundo .card-body {
    padding: 1.5rem;
  }

  .contact-form-section {
    margin-top: -215px;
  }

  .contact-form-card {
    border-radius: 28px;
  }

  .contact-services-box {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .service-option {
    min-height: 68px;
  }
}

@media (max-width: 575.98px) {
  .bg-fundo h1 {
    font-size: 2.5rem;
  }

  .bg-fundo > .container > p {
    font-size: 1rem !important;
  }

  .contact-form-section {
    margin-top: -185px;
  }

  .contact-form-card .card-body {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .contact-form-card h2 {
    font-size: 2rem;
  }

  .contact-submit-btn {
    width: 100%;
  }

  .h-captcha {
    transform: scale(.88);
    transform-origin: center;
  }
}

/*=================================================
POLÍTICA DE PRIVACIDADE
==================================================*/

.privacy-hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 35%),
    linear-gradient(135deg, rgba(0,0,0,.12), rgba(0,0,0,.28));
  pointer-events: none;
}

.privacy-hero-content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.privacy-hero-content span {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--site-support);
}

.privacy-hero-content h1 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.privacy-hero-content p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: rgba(255,255,255,.86);
}

.privacy-section {
  padding: 4rem 0 5rem;
  background:
    linear-gradient(180deg, rgba(var(--ar-primary-rgb), .04), transparent 260px);
}

.privacy-card {
  padding: 3.5rem;
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.08);
}

.privacy-card h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--site-dark);
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p,
.privacy-card li {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--site-muted);
}

.privacy-card p {
  margin-bottom: 1.15rem;
}

.privacy-card ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.privacy-card li {
  margin-bottom: .55rem;
}

.privacy-card a {
  font-weight: 700;
  color: var(--site-primary);
  text-decoration: none;
}

.privacy-card a:hover {
  color: var(--site-primary-hover);
  text-decoration: underline;
}

.privacy-company {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(var(--ar-primary-rgb), .06);
  border-left: 5px solid var(--site-primary);
  color: var(--site-dark);
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .privacy-hero {
    padding: 7rem 0 4rem;
  }

  .privacy-card {
    padding: 2.25rem;
    border-radius: 26px;
  }
}

@media (max-width: 575.98px) {
  .privacy-hero {
    padding: 6.5rem 0 3.5rem;
  }

  .privacy-hero-content h1 {
    font-size: 2.15rem;
  }

  .privacy-hero-content p {
    font-size: 1rem;
  }

  .privacy-section {
    padding: 2.5rem 0 3.5rem;
  }

  .privacy-card {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .privacy-card h2 {
    font-size: 1.25rem;
  }

  .privacy-card p,
  .privacy-card li {
    font-size: .96rem;
    line-height: 1.75;
  }
}

/*=================================================
HEADER
==================================================*/

.site-header {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: all .35s ease;
  z-index: 1030;
}

/* Estado transparente */
.site-header .nav-link{
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.site-header .nav-link:hover,
.site-header .nav-link.show {
  color: #fff;
}

.site-header .navbar-toggler {
  border-color: rgba(255,255,255,.3);
}

.site-header .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* Estado após rolagem */
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.site-header.scrolled .nav-link {
  color: var(--ar-gray-900);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.show {
  color: var(--ar-primary);
}

.site-header.scrolled .navbar-toggler-icon {
  filter: none;
}

.site-header-container {
  min-height: 74px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  padding: .35rem .9rem .35rem 0;
}

.site-brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform .25s ease;
}

.site-brand:hover img {
  transform: scale(1.025);
}

.site-nav .navbar-nav {
  align-items: center;
  gap: .25rem;
}

.site-nav .nav-link {
  position: relative;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--ar-gray-900);
  padding: .8rem .95rem;
  text-transform: uppercase;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus,
.site-nav .nav-link.show {
  color: var(--ar-primary);
}

.site-nav .nav-link::after {
  transition: all .25s ease;
}

.site-nav .nav-link:not(.dropdown-toggle)::before,
.site-nav .dropdown-toggle::before {
  content: "";
  position: absolute;
  left: .95rem;
  right: .95rem;
  bottom: .35rem;
  height: 3px;
  border-radius: 999px;
  background: var(--ar-primary);
  opacity: 0;
  transform: scaleX(.5);
  transition: all .25s ease;
}

.site-nav .nav-link:hover::before,
.site-nav .nav-link:focus::before,
.site-nav .nav-link.show::before {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  font-weight: 800;
  letter-spacing: .01em;
  padding: .75rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(var(--ar-primary-rgb), .25);
}

.site-dropdown {
  border: 0;
  border-radius: 18px;
  padding: .65rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.site-dropdown .dropdown-item {
  border-radius: 12px;
  font-weight: 650;
  color: var(--ar-gray-800);
  padding: .65rem .85rem;
}

.site-dropdown .dropdown-item:hover,
.site-dropdown .dropdown-item:focus {
  color: var(--ar-primary);
  background: rgba(var(--ar-primary-rgb), .08);
}

.site-dropdown .dropdown-all {
  font-weight: 800;
  color: var(--ar-primary);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .04em;
}

.site-toggler {
  border: 0;
  box-shadow: none !important;
  padding: .55rem;
  border-radius: 14px;
  background: rgba(var(--ar-primary-rgb), .08);
}


/* =========================================================
   AÇÕES DO HEADER
========================================================= */

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;

  gap: .65rem;

  margin-left: .75rem;
}

/* Base dos botões */

.header-actions .btn,
.header-cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  white-space: nowrap;

  font-weight: 800;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease;
}

/* =========================================================
   ÁREA DO CLIENTE
========================================================= */

.btn-area-cliente {
  min-height: 44px;

  padding: .7rem 1.05rem;

  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;

  background: rgba(255,255,255,.10);

  color: #fff !important;

  font-size: .82rem;
  font-weight: 800;

  letter-spacing: .01em;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 8px 22px rgba(0,0,0,.10);
}

.btn-area-cliente:hover {
  transform: translateY(-2px);

  border-color: #fff;

  background: #fff;

  color: var(--site-primary) !important;

  box-shadow:
    0 12px 28px rgba(0,0,0,.16);
}

.btn-area-cliente i {
  font-size: 1rem;
}


/* Área do cliente com header rolado */

.site-header.scrolled .btn-area-cliente {
  border-color: rgba(var(--ar-primary-rgb), .25);

  background:
    rgba(var(--ar-primary-rgb), .055);

  color: var(--site-primary) !important;

  box-shadow:
    0 7px 18px rgba(0,0,0,.05);
}

.site-header.scrolled .btn-area-cliente:hover {
  border-color: var(--site-primary);

  background: var(--site-primary);

  color: #fff !important;

  box-shadow:
    0 12px 28px rgba(var(--ar-primary-rgb), .22);
}


/* Mobile */
@media (max-width: 991.98px) {

  .site-header {
    padding-top: .45rem;
    padding-bottom: .45rem;
  }

  .site-header-container {
    min-height: 64px;
  }

  .site-brand img {
    width: 180px;
  }

  .site-nav {
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(0, 0, 0, .06);
  }

  .site-nav .navbar-nav {
    align-items: stretch;
    gap: .15rem;
  }

  .site-nav .nav-link {
    padding: .9rem 0;
    font-size: .95rem;
  }

  .site-nav .nav-link::before {
    display: none;
  }

  .site-dropdown {
    border-radius: 14px;
    box-shadow: none;
    background: rgba(var(--ar-primary-rgb), .04);
    margin-bottom: .5rem;
  }

  .header-cta-mobile {
    font-weight: 800;
    border-radius: 999px;
    padding: .85rem 1rem;
  }

  /* Área dos botões no menu mobile */

  .header-mobile-actions {
    padding: 1rem 0 .35rem;

    margin-top: .5rem;

    border-top:
      1px solid rgba(0,0,0,.06);
  }

  .header-mobile-actions .btn {
    min-height: 50px;

    width: 100%;

    border-radius: 1rem;
  }

  .header-mobile-actions .btn-area-cliente {
    margin-bottom: .65rem;

    border-color:
      rgba(var(--ar-primary-rgb), .25);

    background:
      rgba(var(--ar-primary-rgb), .055);

    color:
      var(--site-primary) !important;

    box-shadow: none;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .header-mobile-actions .btn-area-cliente:hover {
    border-color: var(--site-primary);

    background: var(--site-primary);

    color: #fff !important;
  }

}

@media (max-width: 575.98px) {

  .site-brand img {
    width: 160px;
  }

  .site-header-container {
    min-height: 58px;
  }

}


/* CTA Header */

.header-cta,
.header-cta-mobile,
.btn-cotacao {
  background: var(--ar-primary);
  border: 0;
  color: #fff !important;
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 999px;
  padding: .85rem 1.35rem;
  box-shadow:
    0 10px 25px rgba(var(--ar-primary-rgb), .35);
  transition: all .3s ease;
}

.header-cta:hover,
.header-cta-mobile:hover,
.btn-cotacao:hover {
  background: var(--site-primary-hover);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow:
    0 16px 35px rgba(var(--ar-primary-rgb), .45);
}

.btn-cotacao {
  position: relative;
  overflow: hidden;
}

.btn-cotacao::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );
  transition: .8s;
}

.btn-cotacao:hover::before {
  left: 150%;
}


/* =========================================================
   BOTÃO MOBILE PREMIUM
========================================================= */

.site-toggler {
  position: relative;

  display: none;
  align-items: center;
  justify-content: center;

  gap: .65rem;

  min-width: 92px;
  height: 46px;

  padding: 0 .9rem;

  border: 1px solid rgba(var(--ar-primary-rgb), .18);
  border-radius: 50rem;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .96) 0%,
      rgba(var(--ar-primary-rgb), .055) 100%
    );

  color: var(--site-dark);

  box-shadow:
    0 .55rem 1.5rem rgba(0, 0, 0, .08),
    inset 0 1px 0 rgba(255, 255, 255, .8);

  transition:
    transform .25s ease,
    border-color .25s ease,
    background-color .25s ease,
    box-shadow .25s ease;
}

.site-toggler:hover {
  transform: translateY(-2px);

  border-color:
    rgba(var(--ar-primary-rgb), .32);

  box-shadow:
    0 .8rem 2rem rgba(0, 0, 0, .11),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.site-toggler:focus {
  box-shadow:
    0 0 0 .22rem rgba(var(--ar-primary-rgb), .14),
    0 .8rem 2rem rgba(0, 0, 0, .1);
}

.site-toggler:focus:not(:focus-visible) {
  box-shadow:
    0 .55rem 1.5rem rgba(0, 0, 0, .08);
}

.site-toggler-label {
  color: var(--site-dark);

  font-size: .76rem;
  font-weight: 800;

  letter-spacing: .07em;
  line-height: 1;

  text-transform: uppercase;

  transition: color .25s ease;
}


/* Linhas do menu */

.site-toggler-lines {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 22px;
  height: 20px;

  gap: 4px;
}

.site-toggler-lines span {
  display: block;

  width: 100%;
  height: 2px;

  border-radius: 50rem;

  background: var(--site-primary);

  transform-origin: center;

  transition:
    transform .3s ease,
    opacity .2s ease,
    width .3s ease;
}

.site-toggler-lines span:nth-child(2) {
  width: 16px;
  margin-left: auto;
}


/* Estado aberto */

.site-toggler[aria-expanded="true"] {
  border-color: var(--site-primary);

  background:
    linear-gradient(
      135deg,
      var(--site-primary) 0%,
      var(--site-primary-hover) 100%
    );

  color: #fff;

  box-shadow:
    0 .85rem 2rem rgba(var(--ar-primary-rgb), .24);
}

.site-toggler[aria-expanded="true"] .site-toggler-label {
  color: #fff;
}

.site-toggler[aria-expanded="true"] .site-toggler-lines span {
  background: #fff;
}

.site-toggler[aria-expanded="true"] .site-toggler-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-toggler[aria-expanded="true"] .site-toggler-lines span:nth-child(2) {
  width: 100%;
  opacity: 0;
  transform: scaleX(0);
}

.site-toggler[aria-expanded="true"] .site-toggler-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


/* Header com rolagem */

.site-header.scrolled .site-toggler {
  height: 42px;

  background: rgba(255, 255, 255, .96);

  box-shadow:
    0 .45rem 1.25rem rgba(0, 0, 0, .075);

  backdrop-filter: blur(12px);
}

.site-header.scrolled
.site-toggler[aria-expanded="true"] {
  background:
    linear-gradient(
      135deg,
      var(--site-primary) 0%,
      var(--site-primary-hover) 100%
    );
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991.98px) {

  .site-toggler {
    display: inline-flex;
    order: 3;
  }

}

@media (max-width: 575.98px) {

  .site-toggler {
    min-width: 48px;
    width: 48px;
    height: 44px;

    padding: 0;

    border-radius: 1rem;
  }

  .site-toggler-label {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);

    white-space: nowrap;
  }

  .site-toggler-lines {
    width: 21px;
  }

}

/* =========================================================
   SERVIÇOS
========================================================= */

.site-services {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      rgba(var(--ar-primary-rgb), .045) 100%
    );
}

.site-services::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(var(--ar-primary-rgb), .055);
  pointer-events: none;
}

.site-services .container {
  position: relative;
  z-index: 1;
}

.section-description {
  max-width: 680px;
  color: var(--site-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.slider-controls {
  display: flex;
  align-items: center;
}

.services-swiper {
  overflow: visible;
}

/* Card */

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .065);
  border-radius: 1.75rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .06);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--ar-primary-rgb), .25);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .11);
}

/* Imagem */

.service-image-wrap {
  position: relative;
  display: block;
  height: 260px;
  overflow: hidden;
  background: var(--site-primary-light);
}

.service-image {
  position: absolute;
  inset: 0;
  display: block;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .03) 0%,
      rgba(0, 0, 0, .5) 100%
    );
}

.service-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: .45rem .75rem;
  border-radius: 50rem;
  background: rgba(255, 255, 255, .9);
  color: var(--site-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .12);
  backdrop-filter: blur(8px);
}

/* Conteúdo */

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.4rem;
}

.service-title {
  margin-bottom: .75rem;
  color: var(--site-dark);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.025em;
}

.service-text {
  display: -webkit-box;
  flex: 1;
  overflow: hidden;
  margin-bottom: 1.25rem;
  color: var(--site-muted);
  font-size: .95rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Ações */

.service-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.service-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--site-primary);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: color .25s ease;
}

.service-link:hover,
.service-link:focus {
  color: var(--site-primary-hover);
}

.service-link:focus-visible {
  outline: 2px solid rgba(var(--ar-primary-rgb), .35);
  outline-offset: 5px;
  border-radius: .25rem;
}

.service-link i {
  transition: transform .25s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

.service-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--site-primary);
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 .75rem 1.5rem rgba(var(--ar-primary-rgb), .22);
  transition:
    transform .25s ease,
    background-color .25s ease;
}

.service-contact:hover {
  transform: translateY(-3px);
  background: var(--site-primary-hover);
  color: #fff;
}

/* Estado sem serviços */

.services-empty {
  padding: 3rem 1.5rem;
  border: 1px dashed rgba(var(--ar-primary-rgb), .25);
  border-radius: 1.5rem;
  background: rgba(var(--ar-primary-rgb), .035);
  color: var(--site-muted);
}

.services-empty-icon {
  color: var(--site-primary);
  font-size: 2.5rem;
}

/* =========================================================
   MODAL DO SERVIÇO
========================================================= */

.service-modal .modal-dialog {
  max-width: 850px;
}

.service-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 1.5rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .18);
}

.service-modal .modal-header {
  align-items: flex-start;
  padding: 1.75rem 1.75rem 1.4rem;
  border-bottom:
    1px solid rgba(var(--ar-primary-rgb), .1);
  background:
    linear-gradient(
      135deg,
      rgba(var(--ar-primary-rgb), .1) 0%,
      rgba(var(--ar-primary-rgb), .025) 100%
    );
}

.service-modal .modal-title {
  color: var(--site-dark);
  font-weight: 800;
  letter-spacing: -.025em;
}

.service-modal-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: .5rem;
  color: var(--site-primary);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-modal .modal-body {
  padding: 1.75rem;
}

.service-modal-content {
  color: var(--site-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.service-modal-content > :first-child {
  margin-top: 0;
}

.service-modal-content > :last-child {
  margin-bottom: 0;
}

.service-modal-content h2,
.service-modal-content h3,
.service-modal-content h4 {
  margin-top: 1.5rem;
  margin-bottom: .75rem;
  color: var(--site-dark);
  font-weight: 800;
}

.service-modal-content ul,
.service-modal-content ol {
  padding-left: 1.25rem;
}

.service-modal-content li {
  margin-bottom: .45rem;
}

.service-modal-content strong {
  color: var(--site-dark);
}

.service-modal .modal-footer {
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 575.98px) {

  .service-image-wrap {
    height: 230px;
  }

  .service-body {
    padding: 1.2rem;
  }

  .service-modal .modal-dialog {
    margin: .75rem;
  }

  .service-modal .modal-header {
    padding: 1.35rem 1.25rem 1.1rem;
  }

  .service-modal .modal-body {
    padding: 1.25rem;
  }

  .service-modal .modal-footer {
    padding: 1rem 1.25rem 1.25rem;
  }

  .service-modal .modal-footer .btn {
    flex: 1;
  }
}

/* =========================================================
   PÁGINA DE PROPOSTA
========================================================= */

.proposal-page-hero {
  position: relative;
  overflow: hidden;

  padding:
    clamp(8.5rem, 13vw, 11rem)
    0
    clamp(8rem, 12vw, 11rem);

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(var(--ar-primary-rgb), .10),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 60%,
      rgba(var(--ar-primary-rgb), .07),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #fff 0%,
      rgba(var(--ar-primary-rgb), .045) 100%
    );
}

.proposal-page-hero::before {
  content: "";

  position: absolute;
  top: 30%;
  left: -160px;

  width: 360px;
  height: 360px;

  border: 1px solid rgba(var(--ar-primary-rgb), .09);
  border-radius: 50%;

  pointer-events: none;
}

.proposal-page-heading {
  position: relative;
  z-index: 2;

  max-width: 860px;
  margin: 0 auto;
}

.proposal-page-heading h1 {
  color: var(--site-dark);
  font-weight: 800;
  letter-spacing: -.045em;
}

.proposal-page-heading p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;

  color: var(--site-muted);
  line-height: 1.75;
}

/* Faz o formulário sobrepor a introdução */

.proposal-form-section {
  position: relative;
  z-index: 3;

  margin-top: -6.5rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* =========================================================
   DIVISORES DO FORMULÁRIO
========================================================= */

.proposal-form-divider {
  display: flex;
  align-items: center;

  gap: 1rem;

  margin-bottom: .25rem;
}

.proposal-form-divider::before,
.proposal-form-divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background:
    rgba(255, 255, 255, .14);
}

.proposal-form-divider span {
  display: inline-flex;
  align-items: center;

  color: rgba(255, 255, 255, .9);

  font-size: .82rem;
  font-weight: 800;

  letter-spacing: .07em;
  text-transform: uppercase;
}

/* =========================================================
   CONSULTA DE CEP
========================================================= */

.proposal-field-loader {
  position: absolute;
  top: 50%;
  right: 1rem;

  display: none;

  color: var(--site-primary);

  transform: translateY(-50%);
}

.proposal-field-loader.is-visible {
  display: block;
}

.proposal-field-status {
  display: block;

  min-height: 1.4rem;
  margin-top: .45rem;

  color: rgba(255, 255, 255, .65);

  font-size: .8rem;
  line-height: 1.4;
}

.proposal-field-status.is-loading {
  color: rgba(255, 255, 255, .75);
}

.proposal-field-status.is-success {
  color: #8ee6b3;
}

.proposal-field-status.is-error {
  color: #ffb1b1;
}

/* =========================================================
   PRIVACIDADE E OBSERVAÇÕES
========================================================= */

.proposal-privacy-check {
  padding: 1.15rem 1.25rem 1.15rem 2.8rem;

  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1rem;

  background: rgba(255, 255, 255, .045);
}

.proposal-privacy-check .form-check-input {
  margin-top: .2rem;
}

.proposal-privacy-check .form-check-label {
  color: rgba(255, 255, 255, .75);

  font-size: .88rem;
  line-height: 1.65;
}

.proposal-character-counter,
.proposal-submit-note {
  color: rgba(255, 255, 255, .55);

  font-size: .8rem;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 767.98px) {

  .proposal-page-hero {
    padding-top: 7.5rem;
    padding-bottom: 8rem;
  }

  .proposal-form-section {
    margin-top: -5rem;
  }

  .proposal-form-divider span {
    font-size: .74rem;
  }

  .proposal-form-divider::before,
  .proposal-form-divider::after {
    display: none;
  }

  .proposal-form-divider {
    padding-bottom: .75rem;

    border-bottom:
      1px solid rgba(255, 255, 255, .14);
  }

}

/* =========================================================
   CTA EQUIPE
========================================================= */

.team-cta {
  position: relative;
}

.team-cta-box {
  position: relative;
  overflow: hidden;

  min-height: 520px;

  display: flex;
  align-items: center;

  padding:
    clamp(2.5rem, 6vw, 5rem);

  border-radius: 2rem;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, .14);
}

.team-cta-box::before {
  content: "";

  position: absolute;
  top: -180px;
  right: -180px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  border:
    1px solid rgba(255, 255, 255, .12);

  z-index: 1;

  pointer-events: none;
}

/* =========================================================
   OVERLAY
========================================================= */

.team-cta-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(8, 29, 60, .94) 0%,
      rgba(8, 29, 60, .82) 42%,
      rgba(8, 29, 60, .28) 72%,
      rgba(8, 29, 60, .08) 100%
    );
}

/* =========================================================
   BADGE
========================================================= */

.team-cta-badge {
  display: inline-flex;
  align-items: center;

  margin-bottom: 1.25rem;

  padding: .55rem .9rem;

  border:
    1px solid rgba(255, 255, 255, .18);

  border-radius: 50rem;

  background:
    rgba(255, 255, 255, .1);

  color: #fff;

  font-size: .76rem;
  font-weight: 800;

  letter-spacing: .07em;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

/* =========================================================
   TEXTO
========================================================= */

.team-cta h2 {
  max-width: 700px;

  margin-bottom: 1.25rem;

  color: #fff;

  font-size:
    clamp(2rem, 4vw, 3.25rem);

  font-weight: 800;

  line-height: 1.12;
  letter-spacing: -.04em;
}

.team-cta p {
  max-width: 620px;

  margin-bottom: 2rem;

  color:
    rgba(255, 255, 255, .82);

  font-size: 1.08rem;
  line-height: 1.75;
}

/* =========================================================
   BOTÃO
========================================================= */

.team-cta-button {
  color: var(--site-primary);

  font-weight: 800;

  box-shadow:
    0 1rem 2.5rem rgba(0, 0, 0, .18);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.team-cta-button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 1.25rem 3rem rgba(0, 0, 0, .24);
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991.98px) {

  .team-cta-box {
    min-height: 480px;

    background-position: 65% center;
  }

  .team-cta-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(8, 29, 60, .94) 0%,
        rgba(8, 29, 60, .84) 58%,
        rgba(8, 29, 60, .42) 100%
      );
  }

}

@media (max-width: 767.98px) {

  .team-cta-box {
    min-height: 520px;

    padding: 2rem 1.5rem;

    border-radius: 1.5rem;

    background-position: center;
  }

  .team-cta-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(8, 29, 60, .74) 0%,
        rgba(8, 29, 60, .92) 100%
      );
  }

  .team-cta h2 {
    font-size: 2rem;
  }

  .team-cta p {
    font-size: 1rem;
  }

  .team-cta-button {
    width: 100%;
  }

}