/* ==========================================================
   VARIÁVEIS / RESET
========================================================== */
:root {
  --vermelho: #782730;
  --cinza-claro: #f4f4f4;
  --cinza-escuro: linear-gradient(135deg, #1e1f23, #2a2c33);
  --quase-preto: #0f0f10;
  --quase-preto-gradiente: linear-gradient(145deg, #0f0f10, #1a1a1c);
  --branco: #ffffff;
  --radius: 12px;
  --dur: 0.3s;
  --fonte: 'Poppins', sans-serif;
  /* cARROUSEL DE CLIENTE */
  --image-width: 80px;
  --image-height: 50px;
  --gap: 150px;
  --speed: 40s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: var(--fonte);
  line-height: 1.55;
  color: var(--branco);
  background: var(--cinza-escuro);
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
}

/* Imagens responsivas */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block
}

/* Tipografia fluida */
h1 {
  font-size: clamp(2rem, 4vw+.5rem, 3.5rem);
  line-height: 1.2
}

h2 {
  font-size: clamp(1.5rem, 2.4vw+.5rem, 2.5rem);
  margin-bottom: 1rem
}

h3 {
  font-size: clamp(1.2rem, 1.8vw+.4rem, 1.5rem)
}

p {
  font-size: clamp(.95rem, 1.2vw+.3rem, 1.1rem)
}

/* Container central */

.wrapper {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem)
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9em 1.8em;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--dur) ease;
}

.btn--primary {
  background: var(--vermelho);
  color: var(--branco);
}

.btn--primary:hover {
  background: #9b3744
}



/* ==========================================================
     HEADER
  ========================================================== */

:root {
  --header-h: 60px;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  /* top:0; right:0; left:0 */
  height: var(--header-h);
  background: var(--quase-preto);
  /* já declarado em :root */
  z-index: 10000;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .35);
}

/* Largura máxima segue o padrão das wrappers */
.header .container {
  width: min(100%, 1180px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

/* ---------- Logo ---------- */
.header .logo img {
  height: 70px;
  width: auto;
  padding-top: 7px;
}

/* ---------- Menu Desktop ---------- */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  position: relative;
  font-size: 1rem;
  color: var(--branco);
  text-decoration: none;
  padding-block: .25rem;
  transition: opacity .2s ease;
}

.nav-link:hover {
  opacity: .7;
}

/* sublinhado animado */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 100%;
  background: var(--vermelho);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* ---------- Botão Hamburguer ---------- */
.nav-toggle {
  display: none;
  /* mostra só no mobile */
  background: none;
  border: 0;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: relative;
}

.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: transform .3s ease, top .3s ease, opacity .3s ease;
}

.nav-toggle .hamburger {
  top: 9px;
}

.nav-toggle .hamburger::before {
  top: 0;
}

.nav-toggle .hamburger::after {
  top: 18px;
}

/* animação em “X” */
.nav-toggle.open .hamburger {
  opacity: 0;
}

.nav-toggle.open .hamburger::before {
  top: 9px;
  transform: rotate(45deg);
}

.nav-toggle.open .hamburger::after {
  top: 9px;
  transform: rotate(-45deg);
}

/* ---------- Mobile menu ---------- */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    position: fixed;
    right: 0;
    top: var(--header-h);
    width: 240px;
    height: calc(50vh - var(--header-h));
    background: var(--quase-preto);
    padding: 2rem 1.5rem;
    gap: 1.75rem;
    transform: translateX(100%);
    transition: transform .35s ease;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-toggle .hamburger,
  .nav-toggle .hamburger::before,
  .nav-toggle .hamburger::after,
  .nav-toggle.open .hamburger::before,
  .nav-toggle.open .hamburger::after {
    background: #fff !important;
    /* ou var(--branco) se já existir */
  }
}

/* ---------- Scroll-behavior (não esconder seção) ---------- */
html {
  scroll-padding-top: calc(var(--header-h) + 8px);
}

/* ==========================================================
   HERO  (única seção que usa essas classes)
   ========================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* — Imagem de fundo + fade lateral/inferior — */
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("img/background-img1.png") center/cover no-repeat;
  filter: brightness(.5);
  /* gradiente de “desaparecimento” na parte de baixo */
  mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  z-index: 1;
}

/* sombra extra que liga o hero à próxima seção */
.hero::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 100px;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%, #1e1f23 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  max-width: 680px;
  z-index: 3;
}

.hero__content p {
  margin: 1rem 0 2rem;
  color: var(--cinza-claro);
}

.hero .btn {
  border-radius: 50px;
}

/* ----------------------------------------------------------
HERO ALINHADO À ESQUERDA + RESPIRO
---------------------------------------------------------- */
.hero.hero--left {
  justify-content: flex-start;
  padding: calc(var(--header-h) + 2rem) clamp(1rem, 4vw, 3rem) 4rem;
}

/* Título (desktop) */
.hero.hero--left h1 {
  font-size: clamp(2rem, 5vw + .5rem, 3.4rem);
  line-height: 1.15;
  text-align: left;
}

/* Parágrafo (desktop) */
.hero.hero--left p {
  font-size: clamp(1rem, 1.3vw + .5rem, 1.25rem);
  max-width: 640px;
  text-align: left;
}


@media(max-width:600px) {
  .hero.hero--left {
    padding: calc(var(--header-h) + 1.5rem) 1.25rem 3rem;
  }

  .hero__content {
    max-width: 100%;
  }
}


/* ==========================================================
     SWIPER Comum
  ========================================================== */
.swiper {
  padding-bottom: 1rem
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
}

/* ==========================================================
     CARDS genéricos
  ========================================================== */
.cards {
  display: flex;
  gap: clamp(.75rem, 1.5vw, 1.25rem)
}

.card {
  flex: 1 1 clamp(240px, 30%, 320px);
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--quase-preto);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  transition: transform var(--dur) ease, box-shadow var(--dur) ease;
}

.card:hover {
  transform: translateY(-13px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, .15)
}

.card__icon {
  font-size: 2.2rem;
  color: var(--vermelho);
  align-items: center;
  width: auto;
  height: auto;
  max-width: 10vw;
  min-width: 40px;
  display: block;
  margin-inline: auto;
}

.card__title {
  color: var(--quase-preto);
  font-weight: 600
}

/* ==========================================================
     SERVIÇOS (carrossel)
  ========================================================== */
.section-title {
  text-align: center;
  margin-bottom: 2rem
}

#sobre {
  padding-top: 5rem;
}

#sobre .about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

#sobre .about-cards .card {
  flex: 1 1 22%;
  max-width: 25%;
  min-width: 200px;
  background: var(--cinza-claro);
  border-radius: var(--radius);
  padding: .6rem;
  text-align: center;
  color: var(--quase-preto);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  transition: transform var(--dur) ease, box-shadow var(--dur) ease;
}

/* respiro vertical igual ao sobre */
#servicos{
  padding-bottom:5rem;
}

/* wrapper e espaçamento */
#servicos .about-cards{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:1rem;
  margin-top:4rem;
}

/* dimensões e hover dos cards */
#servicos .about-cards .card{
  flex:1 1 22%;
  max-width:25%;
  min-width:200px;
  background:var(--cinza-claro);
  border-radius:var(--radius);
  padding:.6rem;
  text-align:center;
  color:var(--quase-preto);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:1rem;
  transition:transform var(--dur) ease,box-shadow var(--dur) ease;
}

/* ==========================================================
     SOBRE
  ========================================================== */
.about-grid {
  display:grid;
  grid-template-columns:minmax(320px,50%) 1fr;
  gap:clamp(1.5rem,3vw,3rem);
  align-items:center;
  margin-bottom:3rem;
  margin-block: clamp(8rem, 8vw, 6rem);
}

.about-image {
  width: 100%;
  max-width: 100%;
}

.about-img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid var(--vermelho);
  border-radius: var(--radius);
  display: block;
}

.about-text p {
  margin: 1rem 0 1.5rem;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--cinza-claro);
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ==========================================================
     TIMELINE
  ========================================================== */
.timeline {
  padding-block: 5rem;
  background: var(--quase-preto);
  flex-direction: column;
  align-items: start;
  justify-content: space-evenly;
  display: flex;
}

.timeline-grid {
  align-items: center
}

.step {
  display: flex;
  align-items: center;
  margin: 40px 0;
  opacity: 0.4;
  transition: 0.5s;
  position: relative;
}

.step .icon {
  width: 36px;
  /* Maior para caber o ícone */
  height: 36px;
  border-radius: 50%;
  background: #aaa;
  margin-right: 15px;
  transition: background 0.5s;

  display: flex;
  /* Centralização */
  align-items: center;
  justify-content: center;
  font-size: 16px;
  /* Tamanho do ícone */
  color: #fff;
  /* Cor do ícone */
}

.step.active {
  opacity: 1;
}

.step.active .icon {
  background: #b73530;
  /* vermelho escuro */
}

.step::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 17px;
  /* centralizado com base no ícone de 36px */
  width: 4px;
  height: 40px;
  background: #aaa;
  transition: background 0.5s;
  z-index: -1;
}

.step:first-child::before {
  display: none;
  /* não mostra linha antes do primeiro */
}

.step.active::before {
  background: #b73530;
  /* muda para vermelho quando ativo */
}

.timeline__card {
  background: radial-gradient(circle at top right, rgba(120, 39, 48, .4), rgba(120, 39, 48, 0) 70%),
    var(--cinza-escuro);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 530px;
  align-items: end;
  border: 1px solid rgba(155, 55, 68, 0.3);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--cinza-claro);
}

.check-list i {
  color: var(--vermelho);
  font-size: 1.1rem;
}

/* SELO GRATUITO */
.timeline__card {
  position: relative;
  overflow: hidden;
}

.selo-dourado {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(from 180deg,
      #f7e37b,
      #d4af37,
      #fff8c9,
      #d4af37,
      #cfa935,
      #f7e37b);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: pulseGold 4s infinite ease-in-out;
}

.selo-texto {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  text-transform: uppercase;
}


/* ==========================================================
     CONTATO (Parallax + Form)
  ========================================================== */
.contato {
  position: relative;
  padding-block: 6rem;
  isolation: isolate
}

.contato__bg {
  position: absolute;
  inset: 0;
  background: url("img/background-img2.png") center/cover fixed no-repeat;
  z-index: -2
}

.contato__form {
  background: rgba(255, 255, 255, .96);
  color: var(--quase-preto);
  margin-left: auto;
  margin-right: clamp(1rem, 8vw, 10rem);
  padding: 2.5rem;
  max-width: 620px;
  border-radius: var(--radius);
  border: 1px solid rgba(155, 55, 68, 0.3);
}

.contato__form h2 {
  color: var(--vermelho);
  margin-bottom: 1.5rem;
  text-align: center
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-bottom: 10px;
}

.form-grid input {
  width: 100%
}

.radio-group,
label.upload {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center
}

.contato__form input,
.contato__form select,
.contato__form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff
}

.contato__form textarea {
  resize: vertical
}

.contato__form .btn {
  width: 100%;
  margin-top: 1rem
}

/* ==========================================================
     AVALIAÇÕES + FAQ
  ========================================================== */
.avaliacoes {
  padding-block: 5rem;
  margin-bottom: 8rem;
}

.depo-card {
  background: var(--cinza-claro);
  color: var(--quase-preto);
  border-radius: var(--radius);
  padding: 1rem;
  max-width: 90vw;
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

.google-card dotlottie-player {
  width: 100%;
  max-width: 140px;
  /* desktop */
  height: auto;
  transform: scale(1);
  /* tira o zoom 4.3 */
}

.google-card {
  background: #3c4043;
  color: var(--branco);
  padding: 1rem 1rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.google-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.google-card dotlottie-player {
  width: 140px;
  height: 140px;
  margin-bottom: 0.5rem;
  transform: scale(4.3);
  pointer-events: none;
}

.google-card__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.google-card__info strong {
  font-size: 1.6rem;
  color: #fff;
}

.google-card__info span {
  font-size: 1.2rem;
  color: #fff;
}

.google-card__link {
  background: transparent;
  border: 1px solid var(--vermelho);
  border-radius: 30px;
  padding: 0.4rem 1rem;
  color: var(--vermelho);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.google-card__link:hover {
  background: var(--vermelho);
  color: #fff;
}


.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 12px;
  background: #1e1e20;
  border: 1px solid rgba(185, 53, 48, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item button {
  width: 100%;
  background: transparent;
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-item i {
  transition: transform 0.3s ease;
  color: var(--vermelho);
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-content {
  background: #29292c;
  border-left: 3px solid var(--vermelho);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #ddd;
}

.faq-content span{
font-weight: bold
}

.faq-item button[aria-expanded="true"] + .faq-content {
  max-height: 200px;
  padding: 1rem 1.5rem 1.2rem;
}


.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem)
}

@media(max-width:1023px) {
  .grid-2 {
    grid-template-columns: 1fr
  }

  #servicos .about-cards .card {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .timeline-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .timeline {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step .icon {
    margin: 0 0 10px 0;
  }

  .step::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline__card {
    width: 100%;
    max-width: 500px;
    text-align: center;
    align-items: center;
  }

  .contato__form {
    margin: 0 auto;
  }
}

.review-grid {
  align-items: start
}

/* ==========================================================
     CLIENTES (logos infinitos)
  ========================================================== */
.clientes {
  margin: 0;
  background: var(--cinza-claro)
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle, #2e2e2e 0%, #0d0d0d 100%);
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: scroll var(--speed) linear infinite;
}

.carousel-item {
  flex: 0 0 auto;
  width: var(--image-width);
  height: var(--image-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  :root {
    --image-width: 80px;
  }
}

@media (max-width: 480px) {
  :root {
    --image-width: 100px;
  }
}

/* ==========================================================
     MAPA / CTA
  ========================================================== */
.mapa {
  padding-block: 5rem;
  background: var(--quase-preto-gradiente)
}

.mapa-grid iframe {
  width: 100%;
  height: 310px;
  border: 0;
  border-radius: var(--radius)
}

.mapa__card {
  background: var(--cinza-escuro);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(155, 55, 68, 0.3);
}

.mapa__card a {
  color: var(--vermelho);
  text-decoration: none
}

.mapa__card span{
  font-weight: bold;
}

.mapa__card a:not(.btn) {
  color: var(--vermelho);
  text-decoration: none;
}

.mapa__card .btn {
  color: var(--branco);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  align-self:center;         /* impede que estique */
  width:auto;
}

.mapa__card .btn:hover {
  background: #9b3744;
}

.mapa__card>* {
  margin: 0;
}

.mapa__card>*+* {
  margin-top: 1rem;
}

.mapa__card .btn {
  margin-top: 1.5rem;
}

@media (max-width: 550px) {
  .mapa__card>*+* {
    margin-top: .75rem;
  }

  .mapa__card .btn {
    margin-top: 1rem;
  }
}

.mapa {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  display: block;
}

.mapa__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .mapa {
    grid-template-columns: 1fr;
  }

  .mapa__card {
    margin-top: 1rem;
  }
}

/* ==========================================================
     FOOTER
  ========================================================== */
.footer {
  background: linear-gradient(180deg, var(--cinza-escuro), #202124);
  padding-block: 3rem 2rem;
  color: var(--cinza-claro);
  font-size: .95rem
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.footer__logo {
  width: 120px;
  margin-bottom: 1rem
}

.social a {
  font-size: 1.5rem;
  color: var(--branco);
  margin-right: 1rem
}

.social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  /* encosta no limite direito */
}

.copy {
  background-color: #0d0d0d;
  text-align: center;
  margin: .5rem;
  font-size: .8rem
}

/* COLUNAS DO RODAPÉ (nav) */
.footer-grid>nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-grid nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-grid nav li {
  margin: .25rem 0;
}

.footer-grid nav a {
  color: var(--cinza-claro);
  text-decoration: none;
  transition: color .25s;
}

.footer-grid nav a:hover {
  color: var(--vermelho);
  /* mesmo vermelho do tema */
}

/* Ícones sociais maiores + leve hover */
.social a {
  font-size: 1.6rem;
  color: var(--branco);
  transition: opacity .25s;
}

.social a:hover {
  opacity: .7;
}

@media(max-width:767px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    margin-top: 2rem;
  }

  .about-image {
    max-width: 100%;
  }

  #servicos .about-cards {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  #servicos .about-cards .card {
    flex: 1 1 100%;
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }

  .contato__form {
    margin: 0 auto;
    padding-inline: 1rem;
  }

  /* SELO DOURADO */
  .selo-dourado {
    width: 70px;
    height: 70px;
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .selo-texto {
    font-size: 0.7rem;
  }

  /* Google caard */
  .google-card {
    flex-direction: column;
    padding: 1rem;
  }

  .google-card dotlottie-player {
    transform: scale(2.5);
    /* menor escala para mobile */
    width: 100px;
    height: 100px;
  }

  .google-card__info {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* FAQ */
  .faq {
    padding-inline: 1rem;
  }

  .faq-item button {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }

  .faq-content {
    font-size: 0.9rem;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social {
    justify-content: center;
    /* centraliza ícones no mobile  */
    margin-top: 1rem;
  }

  .footer-grid nav ul a {
    text-align: justify;
  }

}

.testimonials-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: auto;
}



.depo-card__avatar {
  display: inline-block;
  background: #ccc;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
  line-height: 48px;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #333;
}

/* Responsivo */
@media (max-width: 1023px) {
  .review-layout {
    flex-direction: column;
  }
}

.review-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.review-main {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonials-swiper {
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {

  .testimonials-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
  }
  .avaliacoes{
    padding-bottom: 0;

  }
}

/* Largura maior dos cards no desktop */
@media (min-width: 1024px) {
  .testimonials-swiper .swiper-slide {
    width: 350px !important;
  }

  .review-main {
    width: 60%;
  }

  .faq {
    width: 40%;
  }
}

.testimonials-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ==========================================================
   FOOTER – centralizando logo + lista de serviços
========================================================== */

/* Coluna 1: logo + texto */
.footer-grid>div:first-child {
  display: flex;
  flex-direction: column;
  /* empilha logo + parágrafo */
  align-items: center;
  /* CENTRALIZA horizontalmente */
  text-align: center;
  /* texto no meio */
}

/* Coluna 2: bloco “Serviços” */
.footer-grid>nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* CENTRALIZA o <h4> e a <ul> */
  text-align: center;
}

/* UL e LI alinhadas no centro */
.footer-grid nav ul {
  list-style: none;
  /* tira bolinhas */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* CENTRALIZA as <li> */
  gap: .35rem;
  /* espaçamento vertical */
}

/*===========================================================
  LINHA DIVISÓRIA – degradê vermelho do tema
===========================================================*/
.divider-red {
  width: 100%;
  height: 2px;
  border: 0;
  background:
    linear-gradient(90deg,
      transparent 0%,
      var(--vermelho) 15%,
      #b03540 50%,
      var(--vermelho) 85%,
      transparent 100%);
  opacity: .9;
  pointer-events: none;
}

/* ======================================
   COPYRIGHT – barra preta full-width
====================================== */
.copy {
  margin: 0;
  width: 100%;
  background: #1e1e20;
  color: #fff;
  text-align: center;
  padding: .8rem 0;
  font-size: .85rem;
  flex-shrink: 0;
}

/* ==========================================================
   BOTÕES — versão deluxe
   ---------------------------------------------------------
========================================================== */

:root {
  --vermelho-claro: #9b3744;
  /* tom +claro pro gradiente */
}

/* base ---------------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  /* efeitos ficam dentro */
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .3px;
  isolation: isolate;
  /* z-index local */
  transition: transform .25s ease;
}

.btn:active {
  transform: scale(.96);
  /* feedback ao clicar */
}

/* gradiente de fundo --------------------------------------------------- */
.btn--primary {
  background: linear-gradient(135deg,
      var(--vermelho) 0%,
      var(--vermelho-claro) 50%,
      var(--vermelho) 100%);
  background-size: 200% 200%;
  color: var(--branco);
  box-shadow: 0 0 0 0 rgba(155, 55, 68, .5);
  /* glow invisível de início */
  transition:
    background-position .8s ease,
    box-shadow .35s ease;
}

.btn--primary:hover {
  background-position: 100% 0;
  /* desliza o gradiente */
  box-shadow: 0 0 12px 4px rgba(155, 55, 68, .45);
}

/* brilho que passa ----------------------------------------------------- */
.btn--primary::after {
  content: '';
  position: absolute;
  inset: -100% 0 0 0;
  /* começa fora da esquerda */
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .45) 50%, transparent 100%);
  transform: translateX(-100%) rotate(10deg);
  transition: transform 1s cubic-bezier(.19, 1, .22, 1);
  pointer-events: none;
}

.btn--primary:hover::after {
  transform: translateX(100%) rotate(10deg);
  /* varre o botão */
}

/* foco para acessibilidade -------------------------------------------- */
.btn--primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .65), 0 0 12px 4px rgba(155, 55, 68, .6);
}

/* ----------------------------------------------------------------------
   RIPPLES (clicar):
   .btn recebe overflow:hidden; o JS insere <span class="ripple">
---------------------------------------------------------------------- */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: ripple .6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.google-card__info .btn--primary {
  padding: .5rem;
}

/* ==========================================================
   TRANSIÇÕES COM DEGRADÊ ENTRE SEÇÕES
========================================================== */

.hero {
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  /* ajuste se quiser maior/menor */
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      #1e1f23 90%);
}

/* 2. Sobre: fade do cinza-escuro para o quase-preto (timeline) */
#servicos {
  position: relative;
}

#servicos::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  /* -1px cobre folga entre seções */
  height: 120px;
  pointer-events: none;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      var(--quase-preto) 90%);
}