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

body {
  font-family: 'Sora', sans-serif;
  background: #EEF0F3;
}

.page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 41px 100px;
}

/* ---------- Header / Navbar ---------- */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  padding: 0 20px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #E6E9F4;
  backdrop-filter: blur(15.5px);
  -webkit-backdrop-filter: blur(15.5px);
}

.navbar__logo {
  height: 63px;
  width: auto;
  object-fit: contain;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 50px;
  flex: 1;
  justify-content: center;
}

.navbar__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #222222;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.navbar__link:hover {
  opacity: 0.7;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 15px 20px;
  border-radius: 10px;
  white-space: nowrap;

  background: linear-gradient(90deg, rgba(20, 102, 240, 1) 0%, rgba(31, 164, 246, 1) 100%);
  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.navbar__cta:hover {
  filter: brightness(1.08);
}

.navbar__cta span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
}

.navbar__cta-icon {
  width: 15px;
  height: 15px;
}

/* Botão "MENU" compacto — só aparece no breakpoint mobile (ver media query
   no fim do arquivo), substituindo o .navbar__nav horizontal. */
.navbar__menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #E2E6EB;
  appearance: none;
  cursor: pointer;

  background: #FFFFFF;
  transition: background 0.2s ease;
}

.navbar__menu-toggle:hover {
  background: #F4F6FA;
}

.navbar__menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222;
}

.navbar__menu-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #222222;
  white-space: nowrap;
}

/* Fundo escurecido atrás do dropdown de navegação mobile. */
.navbar__backdrop {
  display: none;
}

.navbar__backdrop.is-visible {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  /* Precisa ficar acima de todo o conteúdo da página (Hero etc.) e abaixo
     do header/dropdown — ver z-index: 100 em .navbar no bloco mobile. */
  z-index: 90;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 32px;
  padding-bottom: 40px;
}

.hero__bg {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 0 1 526px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 63.2px;
  letter-spacing: -0.03em;
  color: #222222;
}

.hero__title span {
  background: linear-gradient(90deg, rgba(20, 102, 240, 1) 0%, rgba(31, 164, 246, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.03em;
  color: #919191;
  max-width: 483px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 23px;
  border-radius: 15px;
  margin-top: 12px;

  background: linear-gradient(90deg, rgba(92, 152, 60, 1) 0%, rgba(159, 194, 63, 1) 100%);
  border: 1.15px solid #B7E45F;
  box-shadow: 0px 3px 8.8px 0px rgba(162, 207, 65, 1);

  text-decoration: none;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.hero__cta:hover {
  filter: brightness(1.05);
}

.hero__cta span {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  white-space: nowrap;
}

.hero__cta-icon {
  width: 24px;
  height: 24px;
}

.hero__media {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 625px;
  /* Puxa a mídia para a esquerda, ganhando largura e deixando mais da piscina à
     mostra ao lado dos mini-cards. */
  margin-left: -40px;
  border-radius: 20px;
  overflow: visible;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Desloca o recorte para a esquerda, tirando a piscina de baixo dos cards. */
  object-position: 80% center;
  display: block;
  border-radius: 20px;
}

/* Floating glass card + stacked stat cards */

.hero__float {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 300px;
  /* Altura pelo conteúdo (limitada pela mídia) para os 3 cards nunca vazarem. */
  height: auto;
  max-height: calc(100% - 40px);
  padding: 20px;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;

  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #E6E9F4;
  backdrop-filter: blur(15.5px);
  -webkit-backdrop-filter: blur(15.5px);
}

.stat-card {
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 16px;
  text-align: center;

  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0px 4px 5px 0px rgba(67, 183, 255, 0.25);
}

.stat-card__value {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.05em;

  background: linear-gradient(90deg, rgba(20, 102, 240, 1) 0%, rgba(31, 164, 246, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card__text {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.03em;
  color: #979797;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__content {
    flex: none;
    align-items: center;
    text-align: center;
  }

  .hero__title,
  .hero__text {
    max-width: 100%;
  }

  .hero__cta {
    margin-top: 4px;
  }

  .hero__media {
    /* No layout empilhado a mídia fica abaixo do texto e ocupa a largura
       inteira do container — o deslocamento negativo usado no desktop (para
       "roubar" espaço ao lado dos mini-cards) não faz sentido aqui e é o que
       cortava a imagem na borda esquerda da tela. */
    margin-left: 0;
    width: 100%;
    height: 420px;
  }

  .hero__photo {
    /* Sem os mini-cards sobrepostos, o recorte pode voltar ao centro. */
    object-position: center;
  }

  .hero__float {
    display: none;
  }
}

/* ---------- Section heading (reusado por Piscinas e FAQ) ---------- */

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 714px;
  margin: 0 auto 60px;
}

.section-heading__eyebrow {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;

  background: linear-gradient(90deg, rgba(20, 102, 240, 1) 0%, rgba(31, 164, 246, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #222222;
}

.section-heading__text {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.03em;
  color: #919191;
}

/* ---------- Pools (lista de modelos) ---------- */

.pools {
  padding: 80px 0;
}

.pools__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Cortina que esmaece o último modelo visível, sinalizando que há mais modelos
   abaixo: cinza opaco junto ao botão, subindo até transparente. Some quando a
   lista é expandida. */
.pools__list:not(.is-expanded)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  pointer-events: none;

  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: linear-gradient(
    to top,
    rgba(238, 240, 243, 0.96) 0%,
    rgba(238, 240, 243, 0.75) 40%,
    rgba(238, 240, 243, 0) 100%
  );
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 45%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, #000 45%, transparent 100%);
}

.pool-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pool-card__top {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.pool-card__top--reverse {
  flex-direction: row-reverse;
}

.pool-photo {
  flex: 1 1 50%;
  width: 0;
  min-width: 0;
  min-height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0px 4px 10px -5px rgba(0, 0, 0, 0.25);
}

.pool-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #B5ABA1;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.pool-panel {
  flex: 1 1 50%;
  min-width: 0;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 30px 33px 40px 30px;

  background: #FFFFFF;
  border: 1px solid #E2E6EB;
  border-radius: 20px;
  box-shadow: 0px 4px 10px -5px rgba(16, 104, 186, 0.1);
}

.pool-panel__header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pool-badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #EEF0F3;
}

.pool-badge--number {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #1466F0;
  background: transparent;

  background-image: linear-gradient(90deg, rgba(20, 102, 240, 1) 0%, rgba(31, 164, 246, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pool-panel__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #222222;
}

.pool-panel__desc {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pool-panel__desc p {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #919191;
}

.pool-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  height: 90px;

  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0px 4px 10px -5px rgba(16, 104, 186, 0.1);
}

.pool-card__tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #222222;
}

.pool-card__ring {
  width: 20px;
  height: 20px;
  border-radius: 64px;
  border: 1px solid #1466F0;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(90deg, rgba(20, 102, 240, 1) 0%, rgba(31, 164, 246, 1) 100%) border-box;
  border: 1px solid transparent;
}

.pool-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 10px;

  background: linear-gradient(90deg, rgba(20, 102, 240, 1) 0%, rgba(31, 164, 246, 1) 100%);
  border: 1px solid #3089EF;
  box-shadow: 0px 2px 4px 0px rgba(97, 194, 255, 1);
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.pool-card__cta:hover {
  filter: brightness(1.05);
}

.pool-card__cta-icon {
  transition: transform 0.2s ease;
}

.pool-card.is-open .pool-card__cta-icon {
  transform: rotate(180deg);
}

/* ---------- Medidas (painel expansível abaixo da barra) ---------- */

.pool-specs {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: -20px;
  transition: grid-template-rows 0.35s ease, margin-top 0.35s ease;
}

.pool-card.is-open .pool-specs {
  grid-template-rows: 1fr;
  margin-top: 0;
}

.pool-specs__inner {
  overflow: hidden;
  min-height: 0;
}

.pool-specs__panel {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px;

  background: #FFFFFF;
  border: 1px solid #E2E6EB;
  border-radius: 20px;
  box-shadow: 0px 4px 10px -5px rgba(16, 104, 186, 0.1);
}

.pool-specs__data {
  flex: 1 1 58%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Tabela de variantes */

.pool-specs__scroller {
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid #E7E9EC;
  box-shadow: 0px 6px 18px -12px rgba(35, 39, 45, 0.35);
  overflow: hidden;
}

.pool-specs__table-wrap {
  overflow-x: auto;
  /* A barra nativa é escondida — usamos a barra cinza logo abaixo da tabela. */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pool-specs__table-wrap::-webkit-scrollbar {
  display: none;
}

.pool-specs__table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  white-space: nowrap;
}

/* Cabeçalho chumbo sólido: letra da coluna em negrito, unidade em cinza claro
   na linha de baixo. */
.pool-specs__table thead th {
  background: #383D43;
  color: #FFFFFF;
  text-align: center;
  padding: 9px 12px;
  vertical-align: middle;
}

.pool-specs__head-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.pool-specs__head-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.pool-specs__head-unit {
  display: block;
  margin-top: 2px;
  font-weight: 400;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.62);
}

.pool-specs__table thead th:first-child .pool-specs__head-label {
  justify-content: flex-start;
  font-size: 14px;
}

.pool-specs__table thead th:first-child {
  text-align: left;
  padding-left: 18px;
}

/* Corpo: zebra clara, sem divisórias entre colunas — só a linha horizontal. */

.pool-specs__row {
  cursor: pointer;
  transition: background 0.15s ease;
  background: #FFFFFF;
}

.pool-specs__row:nth-child(even) {
  background: #F7F8F9;
}

.pool-specs__cell {
  padding: 9px 12px;
  text-align: center;
  font-weight: 400;
  border-bottom: 1px solid #EDEFF2;
}

.pool-specs__cell-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2E3339;
  letter-spacing: -0.01em;
}

.pool-specs__cell-unit {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 400;
  color: #9AA1A9;
}

.pool-specs__cell--model {
  text-align: left;
  padding-left: 18px;
}

.pool-specs__cell--model .pool-specs__cell-value {
  font-size: 15px;
  font-weight: 700;
  color: #2E3339;
}

.pool-specs__row:hover .pool-specs__cell {
  background: #F0F1F3;
}

.pool-specs__row.is-active .pool-specs__cell {
  background: rgba(56, 61, 67, 0.07);
}

/* Barra de rolagem cinza (só aparece quando há colunas fora da vista) */

.pool-specs__scrollbar {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-top: 1px solid #EDEFF2;
  background: #FFFFFF;
}

.pool-specs__scroller.has-overflow .pool-specs__scrollbar {
  display: flex;
}

.pool-specs__scroll-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #E2E5E9;
  background: #FFFFFF;
  color: #4A5058;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.pool-specs__scroll-arrow:hover {
  background: #383D43;
  border-color: #383D43;
  color: #FFFFFF;
}

.pool-specs__scroll-track {
  position: relative;
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: #ECEEF0;
}

.pool-specs__scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #383D43 0%, #5A6169 100%);
  cursor: grab;
  touch-action: none;
}

.pool-specs__scroll-thumb:active {
  cursor: grabbing;
}

/* Notas abaixo da tabela (fora do card) */

.pool-specs__note,
.pool-specs__unit,
.pool-specs__empty {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  color: #7B818A;
}

.pool-specs__note {
  font-weight: 600;
  color: #4A5058;
}

.pool-specs__unit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pool-specs__unit strong {
  font-weight: 700;
  color: #2E3339;
}

.pool-specs__unit-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F1F2F4;
  color: #6B7280;
}

.pool-specs__unit-icon svg {
  width: 20px;
  height: 20px;
}

/* Desenho de escopo técnico */

.pool-specs__figure {
  flex: 1 1 42%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;

  background: #FFFFFF;
  border: 1px solid #E6EBE7;
  border-radius: 16px;
}

.pool-specs__drawing {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

.pool-specs__missing {
  display: none;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  color: #919191;
  padding: 48px 12px;
  text-align: center;
}

.pool-specs__figure.is-missing .pool-specs__drawing {
  display: none;
}

.pool-specs__figure.is-missing .pool-specs__missing {
  display: block;
}

@media (max-width: 900px) {
  .pool-specs__panel {
    flex-direction: column;
  }

  /* .pool-specs__panel usa align-items: flex-start (pro alinhamento lado a
     lado no desktop). Em coluna (mobile), isso faz os itens ficarem do
     tamanho do próprio conteúdo em vez de esticar — e o conteúdo da tabela
     (white-space: nowrap) é bem mais largo que a tela. Sem o width: 100%
     aqui, só o .pool-specs__figure (que já tinha essa regra) acompanhava a
     largura da tela; o .pool-specs__data ficava largo do jeito da tabela e
     era cortado. */
  .pool-specs__data {
    width: 100%;
  }

  .pool-specs__figure {
    width: 100%;
  }
}

.pool-card__cta span {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  white-space: nowrap;
}

.pool-card__cta-icon {
  width: 20px;
  height: 20px;
}

/* ---------- Exibir mais modelos (a partir do 7º modelo, após Amazonas) ---------- */

.pool-card--extra {
  display: none;
}

.pools__list.is-expanded .pool-card--extra {
  display: flex;
}

.pools__toggle {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: -56px auto 0;
  padding: 8px 8px 8px 26px;
  border: 1px solid #E2E6EB;
  cursor: pointer;
  appearance: none;

  background: #FFFFFF;
  border-radius: 999px;
  box-shadow: 0px 10px 24px -8px rgba(16, 104, 186, 0.35);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Colapsado, o botão sobe sobre a cortina; expandido, ele precisa de respiro
   entre o último modelo e o "Ver menos". */
.pools__list.is-expanded + .pools__toggle {
  margin-top: 48px;
}

.pools__toggle:hover {
  box-shadow: 0px 12px 28px -8px rgba(16, 104, 186, 0.45);
  transform: translateY(-1px);
}

.pools__toggle-label {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #222222;
  white-space: nowrap;
}

.pools__toggle-circle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: linear-gradient(90deg, rgba(20, 102, 240, 1) 0%, rgba(31, 164, 246, 1) 100%);
  border: 1px solid #3089EF;
  box-shadow: 0px 4px 10px 0px rgba(20, 102, 240, 0.35);
  transition: filter 0.2s ease;
}

.pools__toggle:hover .pools__toggle-circle {
  filter: brightness(1.05);
}

.pools__toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.pools__toggle[aria-expanded="true"] .pools__toggle-icon {
  transform: rotate(180deg);
}

/* ---------- Depoimentos ---------- */

.testimonials {
  padding: 80px 0;
}

.testimonials__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  text-align: center;

  background: #FFFFFF;
  border: 1px solid #E2E6EB;
  border-radius: 20px;
  box-shadow: 0px 4px 10px -5px rgba(16, 104, 186, 0.1);
}

.testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 4px;

  background: linear-gradient(135deg, rgba(20, 102, 240, 1) 0%, rgba(31, 164, 246, 1) 100%);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
}

.testimonial-card__name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #222222;
}

.testimonial-card__quote {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #919191;
}

.testimonial-card__stars {
  font-size: 16px;
  letter-spacing: 3px;
  color: #FFC107;
}

.testimonials__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.testimonials__cta-text {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #222222;
}

/* ---------- CTA banner (entre a lista de piscinas e o FAQ) ---------- */

.cta-banner {
  position: relative;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 80px;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-banner__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta-banner__panel {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 40px;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.cta-banner__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #FFFFFF;
  max-width: 600px;
}

.cta-banner__text {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
}

.cta-banner__cta {
  margin-top: 10px;
}

/* ---------- FAQ ---------- */

.faq {
  padding: 0 0 80px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  max-width: 814px;
  margin: 0 auto;
}

.faq__item {
  display: flex;
  gap: 60px;
  padding: 44px 0;
  border-bottom: 1px solid #DDE0F4;
}

.faq__item:first-child {
  padding-top: 0;
}

.faq__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq__index {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.faq__number {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;

  background: rgba(20, 102, 240, 0.1);
  color: #1466F0;
}

.faq__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__question {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #222222;
}

.faq__answer {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: -0.03em;
  color: #919191;
}

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100px;
  padding: 0 20px;
  margin-bottom: 40px;

  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #E6E9F4;
  border-radius: 20px;
  backdrop-filter: blur(15.5px);
  -webkit-backdrop-filter: blur(15.5px);
}

.site-footer__copy {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
}

.site-footer__top {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}

.site-footer__top:hover {
  opacity: 0.7;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .page {
    padding: 20px;
  }

  .navbar {
    height: auto;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
  }

  .navbar__nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex: none;
  }

  .hero__title {
    font-size: 40px;
    line-height: 46px;
  }

  .pool-card__top,
  .pool-card__top--reverse {
    flex-direction: column;
  }

  .pool-photo {
    width: 100%;
    height: 260px;
  }

  .pool-panel {
    padding: 24px;
  }

  .pool-card__bar {
    flex-wrap: wrap;
    height: auto;
    gap: 12px;
  }

  .cta-banner {
    height: 360px;
  }

  .cta-banner__title {
    font-size: 26px;
  }

  .faq__item {
    gap: 20px;
  }

  .faq__question {
    font-size: 17px;
  }

  .site-footer {
    height: auto;
    flex-wrap: wrap;
    padding: 16px 20px;
    text-align: center;
    justify-content: center;
  }
}

/* ---------- Mobile (até 768px) ---------- */

@media (max-width: 768px) {
  /* --- PARTE 1: menu compacto no Header ---
     Substitui o nav horizontal (que estourava a largura) por um botão
     "MENU" ao lado da logo, abrindo um dropdown com os links empilhados.
     Fale conosco continua visível, à direita, na mesma linha. */

  .navbar {
    position: relative;
    flex-wrap: nowrap;
    justify-content: flex-start;
    height: auto;
    padding: 12px 14px;
    gap: 10px;
    /* O header tem backdrop-filter, que por si só já cria um contexto de
       empilhamento novo — sem um z-index explícito aqui ele entra nesse
       contexto "no nível 0", perdendo para .hero__content/.hero__media
       (z-index: 1) e o dropdown abria por trás do texto da Hero. Com um
       z-index alto e explícito, o header inteiro (dropdown incluso, já
       que ele é filho) passa a ficar acima de qualquer seção da página. */
    z-index: 100;
  }

  .navbar__logo {
    height: 40px;
    flex: 0 0 auto;
  }

  .navbar__menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  /* Some da linha do header: reaparece como dropdown quando .is-open. */
  .navbar__nav {
    display: none;
    order: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 12px;

    background: #FFFFFF;
    border: 1px solid #E6E9F4;
    border-radius: 16px;
    box-shadow: 0px 16px 32px -12px rgba(16, 24, 40, 0.35);
    z-index: 60;
  }

  .navbar__nav.is-open {
    display: flex;
  }

  .navbar__link {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .navbar__link:hover,
  .navbar__link.is-active {
    background: #F1F4FA;
  }

  .navbar__cta {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 10px 14px;
  }

  .navbar__cta span {
    font-size: 13px;
  }

  /* --- PARTE 2: imagem da Hero centralizada, abaixo do texto --- */

  .hero__media {
    max-width: calc(100% - 24px);
    margin: 0 auto;
    height: 260px;
  }

  /* PARTE 3 (tabela de medidas): ver media query dedicada logo abaixo. */
}

/* ---------- Tabela de medidas — comportamento mobile dedicado ---------- */
/* Media query própria (min-width: 350px, cobrindo a grande maioria dos
   celulares, até 768px) só para o card da tabela de especificações:
   - largura cheia do container pai, cantos arredondados + sombra suave,
     igual ao resto do design;
   - colunas visíveis proporcionalmente ao espaço, cortando a próxima com
     uma prévia parcial (o próprio overflow-x:auto já faz isso);
   - cabeçalho escuro sólido com texto branco (padrão já definido);
   - setas de navegação + barra de progresso do desktop reaproveitadas
     abaixo do card, funcionando por toque/clique (não só por swipe). */

@media (min-width: 350px) and (max-width: 768px) {
  /* O card branco arredondado passa a ser o .pool-specs__table-wrap (não
     mais o .pool-specs__scroller), pra a barra de setas/progresso ficar
     visualmente FORA do card, abaixo dele. */
  .pool-specs__scroller {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .pool-specs__table-wrap {
    width: 100%;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid #E7E9EC;
    box-shadow: 0px 6px 18px -12px rgba(35, 39, 45, 0.35);
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .pool-specs__table {
    font-size: 12px;
  }

  .pool-specs__table thead th,
  .pool-specs__cell {
    padding: 9px 10px;
  }

  .pool-specs__table thead th:first-child,
  .pool-specs__cell--model {
    padding-left: 16px;
  }

  .pool-specs__cell-value {
    font-size: 12px;
  }

  .pool-specs__cell--model .pool-specs__cell-value {
    font-size: 13px;
  }

  .pool-specs__cell-unit,
  .pool-specs__head-unit {
    font-size: 9px;
  }

  /* Setas + barra de progresso abaixo do card, mesmo visual do desktop
     (círculo escuro, trilha clara com preenchimento em gradiente escuro).
     Só aparecem quando a tabela realmente estoura a largura — mesma
     lógica .has-overflow calculada em JS (pools-render.js) usada no
     desktop, então o comportamento é idêntico nos dois tamanhos. */
  .pool-specs__scroller.has-overflow .pool-specs__scrollbar {
    display: flex;
    padding: 14px 2px 0;
    border-top: none;
    background: transparent;
    gap: 12px;
  }

  .pool-specs__scroll-arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    background: #2E3339;
    border-color: #2E3339;
    color: #FFFFFF;
    font-size: 16px;
    box-shadow: 0px 4px 10px -3px rgba(16, 24, 40, 0.4);
  }

  .pool-specs__scroll-arrow:hover,
  .pool-specs__scroll-arrow:active {
    background: #4A5058;
    border-color: #4A5058;
  }

  .pool-specs__scroll-track {
    flex: 1;
    height: 8px;
    background: #E2E5E9;
  }

  .pool-specs__scroll-thumb {
    background: linear-gradient(90deg, #383D43 0%, #5A6169 100%);
  }
}

/* ---------- Telas bem estreitas (ex.: 350x866) ---------- */
/* Ajuste fino em cima do breakpoint de 768px acima (que continua sendo o
   gatilho do menu/tabela/hero mobile) — aqui só encolhemos o que ainda
   fica apertado em celulares bem estreitos, sem mudar o breakpoint em si. */

@media (max-width: 380px) {
  .page {
    padding: 14px;
  }

  .navbar {
    padding: 10px 12px;
    gap: 8px;
  }

  .navbar__logo {
    height: 34px;
  }

  .navbar__menu-toggle {
    padding: 8px 10px;
    gap: 6px;
  }

  .navbar__menu-label {
    font-size: 11px;
  }

  .navbar__cta {
    padding: 9px 12px;
    gap: 4px;
  }

  .navbar__cta span {
    font-size: 12px;
  }

  .navbar__cta-icon {
    width: 13px;
    height: 13px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 38px;
  }

  .hero__text {
    font-size: 14px;
    line-height: 24px;
  }

  .hero__media {
    max-width: calc(100% - 16px);
    height: 210px;
  }

  .pool-specs__table {
    font-size: 11px;
  }

  .pool-specs__table thead th,
  .pool-specs__cell {
    padding: 6px 6px;
  }

  .pool-specs__table thead th:first-child,
  .pool-specs__cell--model {
    padding-left: 10px;
  }

  .pool-specs__cell-value {
    font-size: 11px;
  }

  .pool-specs__cell--model .pool-specs__cell-value {
    font-size: 12px;
  }

  .pool-specs__cell-unit,
  .pool-specs__head-unit {
    font-size: 8px;
  }

  .pool-specs__scroll-arrow {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
}
