@charset "UTF-8";
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/inter-v19-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/inter-v19-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  src: url("../../fonts/inter-v19-latin-500italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/inter-v19-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  src: url("../../fonts/inter-v19-latin-600italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/inter-v19-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  src: url("../../fonts/inter-v19-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --brand-color: #46e4ff;
  --accent-color: #031b6d;
  --background-primary: #ffffff;
  --background-scroll: #3c87b7;
  --background-faq: #f2f4f7;
  --background-brand: var(--brand-color);
  --number-card-color: #eaecf0;
  --separator-color-1: #eaecf0;
  --separator-color-2: #42d1eb;
  --separator-color-3: #d0d5dd;
  --text-color-primary: #1d2939;
  --text-light: #d0d5dd;
  --white: #fff;
  --padding-x-header: 1.375rem;
  --padding-y-header: 0.75rem;
  --padding-button: 0.625rem 1rem;
  --padding-button-cta: 1rem 1.75rem;
  --section-gap: 5rem;
  --title-text-space: 1.375rem;
  --text-elements-space: 2rem;
  --border-radius: 12px;
  --max-width-card: 12.875rem;
  --max-height-card: 18rem;
  --font-weight-button: 600;
  --font-size-button: 0.875rem;
  --font-size-button-cta: 1.125rem;
  --line-height-button: 1.25rem;
  --font-size-number-card: 15.5rem;
  --font-weight-heading: 700;
  --font-weight-subtitle: 600;
  --font-size-h1: 3rem;
  --line-height-h1: 3.75rem;
  --letters-spacing-h1: -0.02em;
  --font-size-h2: 2.25rem;
  --line-height-h2: 2.75rem;
  --letters-spacing-h2: -0.02em;
  --font-size-h3: 1.25rem;
  --line-height-h3: 1.875rem;
  --letters-spacing-h3: 0em;
  --font-weight-text: 400;
  --font-size-text: 1rem;
  --font-size-text-sm: 0.875rem;
  --line-height-text: 1.5rem;
  --font-size-subtitle: 1.25rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  color: var(--text-color-primary);
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background-color);
  background: url("../../img/personagens/fundo-fixo.webp") no-repeat right 35px;
  background-size: 100%;
  overflow: visible;
}

.accent-color {
  color: var(--accent-color);
}

.btn {
  padding: var(--padding-button);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: var(--font-weight-button);
  font-size: var(--font-size-button);
  line-height: var(--line-height-button);
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

.btn--brand {
  background-color: var(--background-brand);
  color: var(--background-primary);
  border: 1px solid var(--background-primary);
}

.btn--outline {
  background-color: var(--background-primary);
  color: var(--text-color-primary);
  border: 1px solid var(--separator-color-3);
}

.btn--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--accent-color);
  color: var(--background-primary);
  border: 1px solid var(--separator-color-3);
  padding: var(--padding-button-cta);
  font-size: var(--font-size-button-cta);
}

/*------------------------------------
  Botões Flutuantes
------------------------------------*/
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.floating-btn {
  width: fit-content;
  height: fit-content;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.floating-btn img {
  width: 48px;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.floating-btn.whatsapp {
  background-color: #25d366; /* Cor oficial do WhatsApp */
}

.floating-btn.back-to-top {
  background-color: var(--ibusquei-dark);
  /* Estilos para o botão escondido */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-btn.back-to-top.is-visible {
  /* Estilos para o botão visível */
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 768px) {
  :root {
    --padding-x-header: 2.75rem;
  }
  body {
    background: url("../../img/personagens/fundo-fixo.webp") no-repeat right 30px;
    background-size: 55%;
    overflow: visible;
  }
  .floating-btn {
    width: fit-content;
    height: fit-content;
  }
  .floating-btn img {
    width: 48px;
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  :root {
    --padding-y-header: 0.75rem;
    --section-gap: 5rem;
    --font-size-menu: 1.25rem;
    --font-size-button-cta: 1rem;
    --line-height-button: 1.5rem;
    --font-size-h1: 4.5rem;
    --line-height-h1: 5.625rem;
    --font-size-h2: 3rem;
    --line-height-h2: 3.75rem;
    --font-size-text: 1rem;
  }
  body {
    background: url("../../img/personagens/fundo-fixo.webp") no-repeat right -20px;
    background-size: 55%;
  }
}
@media (min-width: 1441px) {
  :root {
    --section-gap: 7rem;
  }
  body {
    background: url("../../img/personagens/fundo-fixo.webp") no-repeat right -50px;
    background-size: 50%;
  }
  .floating-btn img {
    width: 56px;
  }
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: var(--padding-y-header) var(--padding-x-header);
  border-bottom: 1px solid var(--separator-color-1);
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
}

.scrolled {
  background-color: var(--background-scroll);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  transition: all 0.3s ease;
}

.logo--scrolled,
.menu--scrolled {
  display: none;
}

.nav.scrolled .logo .logo--top,
.nav.scrolled .menu--top {
  display: none;
}

.nav.scrolled .logo .logo--scrolled,
.nav.scrolled .menu--scrolled {
  display: inline-block;
}

.nav__links--desktop {
  display: none;
}

.nav__links--mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: var(--padding-x-header);
  width: 250px;
  text-align: center;
  gap: 1rem;
  background-color: var(--background-primary);
  padding: var(--padding-y-header);
  border: 1px solid var(--separator-color-2);
  border-radius: var(--border-radius);
}

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

.nav__links--mobile ul li {
  margin-top: 1rem;
}

.logo {
  max-width: 176px;
}

.logo a img {
  width: 100%;
}

.mobile__button {
  background: none;
  border: none;
  cursor: pointer;
}

.open {
  display: flex;
}

.hero {
  width: 100%;
  padding: 55vh var(--padding-x-header) 0;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__title {
  font-weight: var(--font-weight-heading);
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  letter-spacing: var(--letters-spacing-h1);
  margin-bottom: var(--title-text-space);
}

.hero__text {
  font-weight: var(--font-weight-text);
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
  margin-bottom: var(--text-elements-space);
}

@media (min-width: 768px) {
  .hero {
    width: 55%;
    padding: 0 var(--padding-x-header) 0;
    margin-top: 150px;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: left;
  }
  .hero__title {
    font-weight: var(--font-weight-heading);
    font-size: var(--font-size-h1);
    line-height: var(--line-height-h1);
    letter-spacing: var(--letters-spacing-h1);
    margin-bottom: var(--title-text-space);
  }
  .hero__text {
    font-weight: var(--font-weight-text);
    font-size: var(--font-size-text);
    line-height: var(--line-height-text);
    margin-bottom: var(--text-elements-space);
  }
}
@media (min-width: 1024px) {
  .hero__content {
    max-width: 475px;
  }
  .nav__links--mobile {
    display: none;
  }
  .nav__links--desktop {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .nav__links--desktop ul {
    display: flex;
    width: 70%;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .nav__links--desktop ul li a {
    font-size: var(--font-size-menu);
  }
  .scrolled .nav__links--desktop ul li a {
    color: var(--background-primary);
  }
  .nav__links--desktop ul li a:hover {
    color: var(--brand-color);
  }
  .nav__links--desktop .nav__buttons {
    flex-direction: row;
  }
  .mobile__button {
    display: none;
  }
}
@media (min-width: 1450px) {
  nav {
    padding: var(--padding-y-header) calc((100vw - 1440px) / 2);
  }
  .hero {
    width: 100%;
    padding: 200px calc((100vw - 1440px) / 2);
  }
}
.funcionamento {
  margin-top: var(--section-gap);
  padding: 0 var(--padding-x-header);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.funcionamento__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.funcionamento__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-h2);
  letter-spacing: var(--letters-spacing-h2);
  text-align: center;
  margin-bottom: var(--title-text-space);
}

.funcionamento__subtitle {
  margin-bottom: var(--text-elements-space);
  font-weight: var(--font-weight-subtitle);
  text-align: center;
}

.funcionamento__steps {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: var(--text-elements-space);
  width: var(--max-width-card);
  margin-left: 3.125rem;
  padding-top: 6.5rem;
}

.step {
  width: var(--max-width-card);
  height: var(--max-height-card);
}

.step--1 {
  position: relative;
}

.step--1::before {
  content: "1";
  font-size: var(--font-size-number-card);
  font-weight: var(--font-weight-heading);
  color: var(--number-card-color);
  position: absolute;
  margin-top: -150px;
  margin-left: -50px;
  z-index: -1;
}

.step--2 {
  position: relative;
  height: calc(var(--section-gap) * 4.1);
}

.step--2::before {
  content: "2";
  font-size: var(--font-size-number-card);
  font-weight: var(--font-weight-heading);
  color: var(--number-card-color);
  position: absolute;
  margin-top: -150px;
  margin-left: -50px;
  z-index: -1;
}

.step--3 {
  position: relative;
}

.step--3::before {
  content: "3";
  font-size: var(--font-size-number-card);
  font-weight: var(--font-weight-heading);
  color: var(--number-card-color);
  position: absolute;
  margin-top: -150px;
  margin-left: -50px;
  z-index: -1;
}

.step--4 {
  position: relative;
  height: calc(var(--section-gap) * 2.8);
}

.step--4::before {
  content: "4";
  font-size: var(--font-size-number-card);
  font-weight: var(--font-weight-heading);
  color: var(--number-card-color);
  position: absolute;
  margin-top: -150px;
  margin-left: -50px;
  z-index: -1;
}

.step__title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-h3);
  letter-spacing: var(--letters-spacing-h3);
  color: var(--brand-color);
  margin-bottom: var(--title-text-space);
}

.step__text {
  font-size: var(--font-size-text-sm);
  font-weight: var(--font-weight-text);
  line-height: var(--line-height-text);
}

@media (min-width: 768px) {
  .funcionamento {
    margin-top: var(--section-gap);
    padding: 0 var(--padding-x-header);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .funcionamento__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .funcionamento__steps {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
    margin-left: 0rem;
    padding-top: 6.5rem;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .funcionamento__subtitle {
    font-size: var(--font-size-subtitle);
  }
  .funcionamento__content {
    max-width: 460px;
  }
  .step {
    height: fit-content;
  }
}
@media (min-width: 1440px) {
  .funcionamento {
    padding: 0 calc((100vw - 1440px) / 2);
  }
}
/*
 * ===============================================
 * ESTILOS DA SEÇÃO CIDADES (MOBILE FIRST)
 * ===============================================
 */
/* 1. Container Principal da Seção */
.cidades {
  /* Suas variáveis de espaçamento */
  margin-top: var(--section-gap);
  padding: calc(var(--section-gap) / 2) 0; /* O padding lateral será controlado internamente */
  background-color: var(--brand-color);
  overflow-x: hidden; /* Garante que nada transborde lateralmente */
}

.cidades__content {
  /* Um container interno se você precisar limitar a largura do conteúdo de texto */
  margin: 0 auto;
  padding: 0 var(--padding-x-header);
}

.cidades__title {
  /* Suas variáveis de título */
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-h2);
  letter-spacing: var(--letters-spacing-h2);
  text-align: center;
  margin-bottom: var(--title-text-space);
}

/* 2. Botões de Filtro */
.cidades__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: var(--padding-button);
  border-radius: 9999px;
  color: var(--accent-color);
  font-size: var(--font-size-button);
  font-weight: var(--font-weight-button);
  opacity: 1;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.filter-btn:hover:not(:disabled) {
  transform: scale(1.05);
}

.filter-btn svg {
  display: none;
}

.filter-btn.active svg {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.btn-wrapper {
  display: inline-block;
  position: relative;
  cursor: not-allowed;
}

.btn-wrapper .filter-btn[disabled] {
  pointer-events: none;
}

/* Estilos para o botão desabilitado (do seu Canvas) */
.filter-btn:disabled {
  opacity: 0.5;
  cursor: default;
  opacity: 0.3;
}

.filter-btn:disabled:hover {
  background-color: transparent;
}

/* 3. Estrutura e Estilos do Carrossel (Mobile First) */
.js-carrossel-cidades {
  margin-top: 48px;
}

.carousel-wrapper {
  overflow: hidden;
  cursor: grab;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease-out;
}

/* Classe aplicada via JS durante o arraste */
.carousel-track.is-dragging {
  cursor: grabbing;
  transition: none; /* Resposta imediata ao arrastar */
}

/* Estilos dos Cards */
.city-card {
  flex: 0 0 280px; /* CORREÇÃO: Define a base do flex para o tamanho real do card */
  width: 280px; /* Garante a consistência da largura */
  max-width: 280px;
  height: auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  color: white;
  user-select: none;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* Evita que a imagem interfira no arraste */
}

.card-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.card-content:hover {
  background: rgba(0, 0, 0, 0.3);
}

.card-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

/* Botões de navegação (escondidos no mobile) */
.carousel-nav {
  display: none;
}

/*
 * ===============================================
 * MELHORIA PROGRESSIVA PARA TELAS MAIORES
 * ===============================================
 */
@media (min-width: 1024px) {
  .carousel-wrapper {
    cursor: default; /* Remove o cursor de "agarrar" em desktop */
  }
  .carousel-track {
    /* Centraliza a faixa de cards dentro do container de 1280px */
    padding: 0;
    margin: 0 auto;
    gap: 24px;
  }
  /* Mostra os botões de navegação em telas grandes */
  .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }
  .nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .nav-btn:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 1440px) {
  .cidades {
    padding-left: calc((100vw - 1440px) / 2);
    padding-right: calc((100vw - 1440px) / 2);
  }
}
.sobre {
  width: 100%;
}

.sobre__content {
  display: flex;
  flex-direction: column;
  padding: calc(var(--section-gap) * 0.5) var(--padding-x-header);
}

.sobre__img {
  max-width: 100%;
}

.sobre__img img {
  width: 100%;
}

.sobre__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-h2);
  letter-spacing: var(--letters-spacing-h2);
  text-align: left;
  margin-bottom: var(--title-text-space);
}

.sobre__text {
  font-weight: var(--font-weight-text);
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
}

.sobre__paragraph {
  margin-bottom: calc(var(--title-text-space) / 2);
}

@media (min-width: 768px) {
  .sobre__content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sobre__img {
    width: 70%;
  }
  .sobre__text {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .sobre__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    margin-top: 6rem;
  }
  .sobre__img {
    width: 516px;
    margin-top: -5rem;
  }
  .sobre__text {
    max-width: 450px;
  }
}
@media (min-width: 1440px) {
  .sobre {
    padding-left: calc((100vw - 1440px) / 2);
    padding-right: calc((100vw - 1440px) / 2);
  }
}
.depoimentos {
  display: flex;
  flex-direction: column;
  padding: calc(var(--section-gap) * 0.5) var(--padding-x-header);
}

.depoimentos__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-h2);
  letter-spacing: var(--letters-spacing-h2);
  text-align: center;
  margin-bottom: var(--title-text-space);
}

.depoimentos__text {
  font-weight: var(--font-weight-text);
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
  text-align: center;
  margin-bottom: var(--text-elements-space);
}

.carousel-container {
  padding: 0 var(--padding-x-header);
  width: 100%;
}

.js-testimonial-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  /* **NOVO**: Habilita a rolagem por toque */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Melhora a fluidez no iOS */
  scroll-snap-type: x mandatory; /* Efeito "snap" */
  /* Esconde a barra de rolagem visualmente */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.js-testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  width: 100%;
  max-width: 280px;
  flex-shrink: 0;
  background-color: var(--background-primary);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--separator-color-3);
  display: flex;
  flex-direction: column;
  /* **NOVO**: Define o ponto de alinhamento para o snap */
  scroll-snap-align: start;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.author-name {
  font-weight: 600;
  font-size: var(--font-size-text-sm);
  line-height: var(--line-height-text);
  color: var(--text-color-primary);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.author-status {
  font-weight: 400;
  font-size: var(--font-size-text-sm);
  color: #667085;
  font-style: italic;
}

.author-location {
  font-size: var(--font-size-text-sm);
  line-height: 1.25rem;
  color: #667085;
  margin: 0;
}

.testimonial-text {
  font-size: var(--font-size-text-sm);
  line-height: var(--line-height-text);
  font-weight: var(--font-weight-text);
  margin: var(--title-text-space) 0;
  color: var(--text-color-primary);
}

.testimonial-rating {
  display: flex;
}

.testimonial-rating .star-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #fdb022;
}

@media (min-width: 1024px) {
  .depoimentos__content {
    max-width: 560px;
    margin: 0 auto;
  }
  .depoimentos__text {
    font-size: var(--font-size-subtitle);
    font-weight: var(--font-weight-subtitle);
  }
  .testimonial-card {
    max-width: 350px;
    height: 350px;
  }
}
@media (min-width: 1440px) {
  .depoimentos {
    padding-left: calc((100vw - 1440px) / 2);
    padding-right: calc((100vw - 1440px) / 2);
  }
}
/* ========================================= */
/* Estilos da Seção Contato/FAQ     */
/* ========================================= */
.contato {
  background-color: var(--background-faq); /* #F2F4F7 */
  padding: calc(var(--section-gap) * 0.5) 1rem;
}

.contato__content {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.contato__title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-heading);
  line-height: var(--line-height-h2);
  text-align: left;
  margin-bottom: var(--title-text-space);
}

/* Estilos do Accordion */
.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background-color: var(--background-primary);
  border-radius: var(--border-radius);
  border: 1px solid var(--separator-color-1);
  overflow: hidden; /* Garante que o conteúdo não vaze durante a transição */
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem;
  font-size: var(--font-size-text);
  font-weight: 600; /* semi-bold */
  text-align: left;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq__arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq__answer p {
  padding: 1.25rem;
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
  color: #475467; /* Tom de cinza para o texto da resposta */
}

/* Estilos do item ATIVO */
.faq__item.active .faq__question {
  background-color: var(--brand-color); /* #46E4FF */
  border-radius: var(--border-radius);
}

.faq__item.active .faq__arrow {
  transform: rotate(180deg);
}

.faq__item.active .faq__answer {
  /* O max-height será definido via JS para a altura exata do conteúdo */
  padding-top: 0;
}

.contato__form {
  margin-top: var(--section-gap);
  height: fit-content;
  display: flex;
  flex-direction: column;
}

iframe {
  height: 700px;
  width: 100%;
  background-color: var(--background-primary);
  padding: var(--padding-x-header);
}

@media (min-width: 1024px) {
  .contato__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 150px;
  }
  .contato__faq {
    max-width: 402px;
  }
  .contato__form {
    margin-top: 0;
    max-width: 488px;
  }
}
@media (min-width: 1440px) {
  .contato {
    margin: 0 auto;
  }
  .contato__content {
    justify-content: center;
  }
}
/* Seção Footer */
.site-footer {
  background-color: var(--background-scroll);
  color: var(--text-light);
  padding: calc(var(--section-gap) * 0.5) var(--padding-x-header);
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  flex: 1;
}

.footer-column h5 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column p,
.footer-column a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.social-links {
  justify-content: end;
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--brand-color);
  color: var(--brand-color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.footer-copyright {
  padding-top: 32px;
  text-align: center;
}

.footer-copyright p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-copyright .brand-highlight {
  color: var(--brand-color);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .footer-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .footer-container {
    padding-left: calc((100vw - 1440px) / 2);
    padding-right: calc((100vw - 1440px) / 2);
  }
}

/*# sourceMappingURL=main.css.map */
