@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
  font-family: 'DM Sans', sans-serif;
  font: 16px / 1.5 'DM Sans', sans-serif;
  color: #333;
  margin: 0;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1440px;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 32px;
}

.banner {
  background-color: #000;
  color: #fff;
  padding: 48px 0;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.banner-top-btn {
  font-size: 14px;
  color: #fff;
  border-radius: 50px;
  background-color: #6e6e6e;
  box-sizing: border-box;
  padding: 6px 16px;
  font-weight: 500;
}

.banner-title {
  margin: 0;
  font-size: 49px;
  line-height: 1.1;
  font-weight: 900;
}

.banner-subtitle {
  margin: 0;
  max-width: 32ch;
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.9;
}

.banner-price-line {
  display: inline;
}

.btn-banner-cta {
  color: #000;
  background-color: #FFB612;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

/* Padronização de CTAs */
.cta-primary,
.btn-banner-cta,
.btn-primary,
.btn-submit {
  font-size: 16px;
  padding: 12px 24px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

/* `cta-primary` costuma vir com utilitários do Bootstrap (px/py), então forçamos o padding */
.cta-primary {
  padding: 12px 24px !important;
  display: inline-flex !important;
  width: auto !important;
}

.btn-banner-cta:hover {
  background-color: #fccd5e;
}

.banner-image-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 24px 24px 24px 32px;
}

.banner-image {
  width: 100%;
  max-width: 850px;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {

  .banner {
    padding: 32px 0;
  }

  .banner-image-wrap {
    margin-top: 10px;
    padding: 20px 0 0 0;
  }
}

@media (max-width: 767.98px) {
  .banner-content {
    align-items: center;
    text-align: center;
  }

  .banner-title {
    text-align: center;
    font-size: 35px;
  }

  .banner-subtitle {
    text-align: center;
    font-size: 17px;
  }

  .banner-price-line {
    display: inline;
  }

  /* Padronizar todos os CTAs no mobile */
  .cta-primary,
  .btn-banner-cta {
    display: inline-flex;
    font-size: 15px;
    padding: 12px 20px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto;
  }

  .btn-primary,
  .btn-submit {
    font-size: 15px;
    padding: 12px 20px;
  }

  .cta-primary {
    padding: 12px 20px !important;
  }
}


/* Carousel */
.benefits {
  background-color: #f4f4f5;
}

.horizontal-scroll {
  position: relative;
  /* Adicionado para posicionar as setas */
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on iOS */
  touch-action: pan-x;
  scroll-snap-type: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.horizontal-scroll .cards-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 16px;
  padding-bottom: 8px;
}

.horizontal-scroll .card {
  width: 327px;
  background-color: #fff;
  border-radius: 16px;
  border: none;
  position: relative;
  color: #000;
  scroll-snap-align: start;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.horizontal-scroll .card img.card-img-bg {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  pointer-events: none;
  /* user-drag: none; */
  -webkit-user-drag: none;
  -moz-user-drag: none;
}

.horizontal-scroll .card .card-body {
  color: #000;
  position: static;
  background: transparent;
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.horizontal-scroll .card .card-body .card-title {
  text-align: start;
  color: #222;
  font-size: 20px;
  margin: 0;
  min-height: 28px;
}

.horizontal-scroll .card .card-body .card-text {
  text-align: start;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.amareloSmart {
  color: #FFB612;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-wrapper .horizontal-scroll {
  flex: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transform: translateY(-50%);
  transition: color 0.3s ease;
  z-index: 5;
}

.carousel-arrow svg path {
  stroke: #969696;
  transition: stroke 0.3s ease;
}

.carousel-arrow:hover svg path {
  stroke: #333;
}

.carousel-arrow.left {
  left: 0;
  transform: translate(-120%, -50%);
}

.carousel-arrow.right {
  right: 0;
  transform: translate(120%, -50%);
}

@media (max-width: 1275px) {
  .carousel-arrow.left {
    left: 17px;
    transform: translate(-120%, -50%);
  }

  .carousel-arrow.right {
    right: 17px;
    transform: translate(120%, -50%);
  }
}

@media (max-width: 767.98px) {
  .carousel-arrow {
    display: none;
  }

  /* Cards da seção "Matricule-se" centralizados, 1 por vez, com setas no mobile */
  .hero-cards-carousel {
    padding: 0 14px;
  }

  .hero-cards-carousel .carousel-arrow {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #FFB612;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%);
  }

  .hero-cards-carousel .carousel-arrow svg path {
    stroke: #111;
  }

  .hero-cards-carousel .carousel-arrow.left {
    left: 4px;
    transform: translateY(-50%);
  }

  .hero-cards-carousel .carousel-arrow.right {
    right: 4px;
    transform: translateY(-50%);
  }

  .hero-cards-carousel .horizontal-scroll {
    scroll-snap-type: x mandatory;
    scroll-padding-left: 50%;
    scroll-padding-right: 50%;
    padding-left: calc((100% - min(86vw, 320px)) / 2);
    padding-right: calc((100% - min(86vw, 320px)) / 2);
  }

  .hero-cards-carousel .horizontal-scroll .cards-wrapper {
    gap: 12px;
  }

  .hero-cards-carousel .horizontal-scroll .card {
    width: min(86vw, 320px);
    max-width: none;
    scroll-snap-align: center;
  }
}


/* Seção de PLANOS */

#planos {
  background-color: #121212;
  padding: 50px 0
}

/* --- Título Principal --- */
.main-title {
  font-weight: 800;
  margin: 30px 0;
  font-size: 1.8rem;
  color: #f0f0f0;
}

.plans-subtitle {
  margin: -10px 0 28px;
  font-size: 1rem;
  color: #bdbdbd;
  font-weight: bold;
}

/* --- Cabeçalhos dos Planos (Cards Superiores) --- */

.plan-header {
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
  position: relative;
}

.plan-header span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 2px;
}

/* Estilo Smart e Fit (Cinza Claro) */
.header-light {
  background-color: #e6e6e6;
  color: #333;
}

/* Estilo Black (Preto com borda amarela) */
.header-black {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #FFB612;
}

/* A setinha amarela embaixo do plano Black */
.header-black::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;

  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FFB612;
}

/* --- Linhas de Benefícios --- */
.feature-container {
  margin-bottom: 25px;
}

/* Cabeçalho dos planos acompanha o scroll dentro da tabela (sem afetar os gaps do row) */
.planos-comparacao {
  position: relative;
}

.planos-sticky-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #121212;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* O `mb-5` do Bootstrap no `.plan-container` aumentava a altura do sticky (parecendo “padding extra”). */
.planos-sticky-header .plan-container {
  margin-bottom: 0 !important;
}

/* Remove somente o espaçamento lateral entre as 3 colunas (Smart/Fit/Black) dentro de cada feature */
.feature-container .row {
  --bs-gutter-x: 0;
}

.feature-container img {
  width: 24px;
  height: 24px;
}

.feature-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #f0f0f0;
}

/* As barras de status (Check/X) */
.status-bar {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.bar-dark {
  background-color: #262626;
  color: #FFB612;
  /* Ícone amarelo no fundo escuro */
}

.bar-dark .bi-x-circle {
  color: #ccc;
  /* X fica cinza claro */
}

.bar-yellow {
  background-color: #FFB612;
  color: #000;
  /* Ícone preto no fundo amarelo */
  border-radius: 6px;
  margin-left: -13px;
}


/* Seção de Academias */
.search-academia-box {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}

.search-academia-input {
  border-radius: 50px;
  padding: 16px 65px 16px 24px;
  border: 2px solid #ddd;
  font-size: 16px;
  transition: border-color 0.3s;
}

.search-academia-input:focus {
  border-color: #FFB612;
  box-shadow: 0 0 0 0.2rem rgba(255, 182, 18, 0.15);
}

.btn-search-academia {
  position: absolute;
  right: 6px;
  background: #FFB612;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-search-academia:hover {
  background: #e5a310;
  transform: scale(1.05);
}

.academia-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

.academia-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.academia-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #212121;
}

.academia-card .endereco {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

.academia-card .btn-detalhes {
  background: #FFB612;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.academia-card .btn-detalhes:hover {
  background: #e5a310;
}






/* Seção Search Academias */

.container {
  max-width: 1200px;
  margin: 0 auto;
}


.btn-primary {
  background: #ffc107;
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #fccd5e;
  color: #000;
  transform: none;
  box-shadow: none;
}

/* Padronizar hover do CTA com classe `cta-primary` (Bootstrap) */
.cta-primary:hover {
  background-color: #fccd5e !important;
  color: #000 !important;
  transform: none;
  box-shadow: none;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: #000;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 16px;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

.locations-load-more-wrap {
  display: none;
  justify-content: center;
  margin: -14px 0 0;
}

@media (min-width: 769px) {
  .locations-load-more-wrap {
    display: none !important;
  }
}

.locations-load-more-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #FF8A00;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.locations-load-more-btn::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #FFB612;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.locations-load-more-btn:hover {
  background: rgba(255, 182, 18, 0.12);
  color: #7b5300;
  transform: translateY(-1px);
}

.locations-load-more-btn:focus-visible {
  outline: 2px solid #FFB612;
  outline-offset: 2px;
}

.locations-load-more-btn[hidden],
.locations-load-more-btn:disabled {
  display: none;
}

.location-finder {
  padding-top: 80px;
  background-color: #f4f4f5;
}

.search-box {
  position: relative;
  max-width: 600px;
  margin: 40px auto;
}

.country-select {
  display: none;
  border: 1px solid #ddd;
  border-radius: 30px;
  height: 40px;
  padding: 0 36px 0 12px;
  background: #fff;
  font-size: 14px;
  color: #333;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='M1 1l7 7 7-7' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.search-box input {
  width: 100%;
  padding: 16px 56px 16px 24px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.search-box input:focus {
  border-color: #ffc107;
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #666;
  padding: 0;
}

.search-btn:hover {
  background: #ffc107;
  color: #000;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  z-index: 50;
  overflow: hidden;
}

.search-suggestions.is-hidden {
  display: none;
}

.search-suggestions-item {
  padding: 12px 14px;
  font-size: 14px;
  color: #111;
  cursor: pointer;
  line-height: 1.25;
}

.search-suggestions-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  margin: 0;
}

.search-suggestions-item:hover {
  background: #f7f7f7;
}

.search-suggestions-divider {
  height: 1px;
  background: #efefef;
}

.search-suggestions-loading,
.search-suggestions-empty,
.search-suggestions-hint {
  padding: 12px 14px;
  font-size: 13px;
  color: #666;
}

.locations-carousel {
  position: relative;
  margin: 60px auto 40px;
  --card-w: 360px;
  --card-h: 260px;
  --gap: 24px;
  --side-pad: 60px;
  /* 3 cards visíveis + gaps + espaço lateral para as setas */
  max-width: calc(var(--card-w) + var(--card-w) + var(--card-w) + var(--gap) + var(--gap) + var(--side-pad) + var(--side-pad));
  padding: 0 var(--side-pad);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffc107;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
  color: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
  background: #ffb300;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.carousel-btn-left {
  left: -6px;
}

.carousel-btn-right {
  right: -6px;
}

.locations-container {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.locations-container.is-dragging {
  cursor: grabbing;
}

.locations-container::-webkit-scrollbar {
  display: none;
}

.locations-slider {
  display: flex;
  gap: var(--gap);
  width: max-content;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.location-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 0 0 var(--card-w);
  width: var(--card-w);
  height: var(--card-h);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.location-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  flex: 0 0 140px;
}

.location-media {
  position: relative;
}

.location-distance-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.location-distance-badge.is-hidden {
  display: none;
}

.location-distance-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: #111;
}

.location-distance-icon path {
  fill: none;
  stroke: currentColor;
}

.location-info {
  padding: 20px;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.location-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.location-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
  flex: 1 1 auto;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.location-link {
  color: #0066ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}

.location-link:hover {
  color: #0052cc;
  text-decoration: underline;
}

.contact-form {
  padding: 70px 120px;
  background-color: #f4f4f5;
}

.contact-form .container {
  background: #000;
  color: #fff;
  padding: 64px 32px;
  border-radius: 16px;
}

.contact-content {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.contact-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-text p {
  color: #ccc;
  line-height: 1.8;
  font-size: 16px;
}

.contact-text {
  max-width: 680px;
  text-align: left;
  flex: 1;
}

.form-wrapper {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-wrapper label:not(.checkbox-label) {
  color: #fff;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: block;
  margin: 0 0 0;
}

.form-wrapper input {
  width: 100%;
  max-width: 583px;
  height: 48px;
  padding: 4px 16px 0 16px;
  margin-bottom: 10px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

/* Campo composto (BR: bandeira + Celular) */
.form-wrapper .phone-field {
  width: 100%;
  max-width: 583px;
  height: 48px;
  margin-bottom: 10px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: border-color 0.3s;
}

.form-wrapper .phone-field:focus-within {
  border-color: #ffc107;
}


.form-wrapper .phone-field .phone-flag {
  width: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-right: 1px solid #eee;
  background: transparent;
  color: #333;
  user-select: none;
}

.form-wrapper .phone-field input#phoneInput {
  flex: 1;
  width: 100%;
  max-width: none;
  height: 100%;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  padding: 4px 16px 0 16px;
  background: transparent;
  color: #333;
  font-size: 14px;
  outline: none;
}

.form-wrapper input::placeholder {
  color: #999;
  font-size: 14px;
}

.form-wrapper input:focus {
  border-color: #ffc107;
}

.form-wrapper input.field-invalid {
  border-color: #ff6b6b;
  background: #fff5f5;
}

.form-wrapper input.field-valid {
  border-color: #2eaf62;
  background: #f4fff7;
}

.form-wrapper .phone-field.field-invalid {
  border-color: #ff6b6b;
  background: #fff5f5;
}

.form-wrapper .phone-field.field-valid {
  border-color: #2eaf62;
  background: #f4fff7;
}

.field-feedback {
  display: none;
  margin: -4px 0 8px;
  font-size: 12px;
  line-height: 1.3;
  color: #ff9f9f;
}

.field-feedback.is-visible {
  display: block;
}

.checkbox-label.checkbox-invalid span {
  color: #ffb3b3;
}

.checkbox-label input[type="checkbox"].field-invalid {
  outline: 2px solid #ff6b6b;
  outline-offset: 2px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #ccc;
  align-items: center;
  cursor: pointer;
  line-height: 1.5;
}

/* Tipografia do texto do checkbox */
.checkbox-label span {
  display: inline-block;
  flex: 1;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.checkbox-label input[type="checkbox"] {
  width: 25px;
  height: 25px;
  margin-top: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-submit {
  width: auto;
  height: auto;
  margin-top: 8px;
  margin-left: auto;
  padding: 12px 24px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------*/
/*  FAQ SECTION  */
/*--------------------------------*/
/* Seção de dúvidas frequentes */
.faq-section {
    padding: 80px 20px;
    background: #fff;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-section .section-title {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.faq-item {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.faq-header:hover {
    background: transparent;
}

.faq-header:active {
    background: transparent;
}

.faq-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: #666;
    transition: color 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

/* Ícone do FAQ em amarelo no hover/aberto */
.faq-header:hover .faq-icon svg,
.faq-header:focus-visible .faq-icon svg,
.faq-item.open .faq-icon svg {
    color: #FFB800;
}

/* Foco amarelo no FAQ */
.faq-header:focus-visible {
    outline: 2px solid #FFB800;
    outline-offset: 2px;
}

/* Título da pergunta em amarelo no hover/aberto */
.faq-header:hover h4,
.faq-header:focus-visible h4,
.faq-item.open .faq-header h4 {
    color: #FFB800;
}

.faq-content {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 12px 20px 20px;
    /* padding para a resposta não ficar grudada */
    border-top: none;
    /* remove linha acima da resposta */
}

.faq-item.open .faq-content {
    display: block;
    max-height: 500px;
}

.faq-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    padding-bottom: 20px;
}


.footer {
  background: #000;
  color: #fff;
  padding: 50px 0;
  text-align: center;
}


@media (max-width: 1280px) {
  .contact-form {
    padding: 90px 80px;
  }

  .contact-content {
    gap: 40px;
  }

  .contact-text {
    flex: 1 1 50%;
    max-width: 560px;
  }

  .form-wrapper {
    flex: 1 1 50%;
    max-width: 520px;
  }

  .form-wrapper {
    margin-left: 0;
  }

  .form-wrapper input,
  .form-wrapper .iti {
    width: 100%;
    max-width: 520px;
  }

  .btn-submit {
    width: auto;
    max-width: none;
    margin: 8px auto 0;
  }
}

@media (max-width: 1024px) {
  .contact-form {
    padding: 80px 40px;
  }

  .locations-carousel {
    --side-pad: 50px;
  }

  .carousel-btn-left {
    left: -5px;
  }

  .carousel-btn-right {
    right: -5px;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 60px 20px;
  }

  .contact-text,
  .form-wrapper {
    max-width: 100%;
  }

  .form-wrapper {
    margin-left: 0;
  }

  .form-wrapper input,
  .form-wrapper .iti {
    width: 100%;
    max-width: none;
  }

  .btn-submit {
    width: auto;
    max-width: none;
    margin-left: 0;
  }

  /* Mobile: cards em coluna (um abaixo do outro) */
  .locations-container {
    overflow: visible;
  }

  .locations-slider {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .location-card {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
  }

  .location-card img {
    height: 180px;
    flex: 0 0 180px;
  }

  .contact-content {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .locations-carousel {
    padding: 0 20px;
    margin: 60px auto 14px;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 15px;
  }

  .contact-text h2 {
    font-size: 28px;
  }

  .carousel-btn-left {
    left: 5px;
  }

  .carousel-btn-right {
    right: 5px;
  }

  .locations-carousel {
    padding: 0 16px;
  }
}