/* PALETA CLARA MINIMALISTA */
:root {
  --bg-page: #f5f5f7;
  --bg-header: #ffffff;
  --bg-hero: #ffffff;
  --bg-badge: #e4e5ea;
  --bg-pill: #111111;

  --text-main: #111111;
  --text-soft: #5f6470;
  --text-muted: #8c919c;

  --border-soft: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.12);

  --radius-pill: 999px;
  --radius-md: 16px;

  --transition-fast: 0.16s ease-out;
  --transition-med: 0.24s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* HEADER */

.lp-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-soft);
}

.lp-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* menu hamburguer */

.lp-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.lp-menu-line {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  margin: 0 auto;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ícone animado quando menu abre */
.lp-nav-open .lp-menu-line:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
.lp-nav-open .lp-menu-line:nth-child(2) {
  opacity: 0;
}
.lp-nav-open .lp-menu-line:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

.lp-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--border-strong);
  transform: translateY(-0.5px);
}

/* logo */

.lp-logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.lp-logo-main {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* compra segura direita */

.lp-header-right {
  margin-left: auto;
}

.lp-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: #f9f9fb;
}

.lp-secure-icon {
  width: 15px;
  height: 15px;
  stroke: #333;
  fill: transparent;
  stroke-width: 1.2;
}

.lp-secure-text {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.lp-secure-text strong {
  color: var(--text-main);
}

/* NAV LATERAL */

.lp-nav {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
}

.lp-nav-panel {
  position: absolute;
  inset: 0 auto 0 0;
  width: 75vw;
  max-width: 280px;
  background: #ffffff;
  border-right: 1px solid var(--border-soft);
  transform: translateX(-100%);
  transition: transform var(--transition-med);
  display: flex;
  flex-direction: column;
  padding: 16px 14px 18px;
}

.lp-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity var(--transition-med);
}

/* aberto */
.lp-nav-open .lp-nav-panel {
  transform: translateX(0);
}
.lp-nav-open .lp-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* conteúdo nav */

.lp-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.lp-nav-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.lp-nav-close {
  border: none;
  background: none;
  font-size: 0.9rem;
  cursor: pointer;
}

.lp-nav-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-nav-link {
  display: block;
  padding: 7px 8px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.lp-nav-link:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--border-soft);
  transform: translateX(2px);
}

/* HERO MINIMALISTA PREMIUM – FOTO CENTRAL + CTA */

.hero.hero--minimal {
  background: #ffffff;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 32px;
}

/* TÍTULO */

.hero-heading {
  text-align: center;
  margin-bottom: 20px;
}

.hero-line {
  width: 1px;
  height: 24px;
  background: #d1d3db;
  margin: 0 auto 10px;
}

.hero-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #111111;
}

.hero-title span {
  font-size: 2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* FOTO CENTRAL */

.hero-image-only {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.hero-image-main {
  width: 100%;
  max-width: 430px;  /* aumenta/diminui aqui se quiser */
  display: block;
   border-radius: 18px;
}

/* DESCRIÇÃO + CTA + META */

.hero-cta-area {
  margin-top: 22px;
  text-align: left;
}

.hero-sub {
  font-size: 0.9rem;
  color: #6d717d; /* cinza editorial */
  margin: 0 0 14px;
}

/* Botões */

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.btn-main {
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.16s ease-out, background 0.16s ease-out;
}

.btn-main:hover {
  transform: translateY(-1px);
  background: #000000;
}

.btn-main-icon {
  font-size: 1.1rem;
  transform: translateY(1px);
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 9px 16px;
  font-size: 0.78rem;
  color: #5f6470;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s ease-out, border-color 0.16s ease-out,
    color 0.16s ease-out;
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.16);
  color: #111111;
}

/* Prova social abaixo do CTA */

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.75rem;
  color: #8c919c;
}

.hero-meta span::before {
  content: "• ";
  opacity: 0.7;
}

/* RESPONSIVO */

@media (min-width: 768px) {
  .hero-inner {
    padding: 32px 32px 40px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-title span {
    font-size: 2.4rem;
  }

  .hero-image-main {
    max-width: 520px;
  }

  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}
/* ===== CTA PREMIUM – PULSE SUAVE + SHINE NA HOVER ===== */

/* botão base (reforçando que ele já existe) */
.btn-main {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  background: #111111;
  color: #ffffff;
  transition: transform 0.16s ease-out, background 0.16s ease-out,
    box-shadow 0.16s ease-out;
  animation: ctaPulse 2.4s ease-in-out infinite;
}

/* brilho passando na hover */
.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 80%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

/* hover desktop */
.btn-main:hover {
  transform: translateY(-1px) scale(1.01);
  background: #000000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn-main:hover::before {
  animation: ctaShine 0.6s ease-out forwards;
}

/* animação de “respirar” */
@keyframes ctaPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
  }
}

/* brilho andando */
@keyframes ctaShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

/* respeitar quem desativa animações no SO */
@media (prefers-reduced-motion: reduce) {
  .btn-main {
    animation: none;
  }
  .btn-main:hover {
    transform: none;
    box-shadow: none;
  }
  .btn-main::before {
    display: none;
  }
}
/* ===== META / PROVA SOCIAL CENTRALIZADA ===== */

.hero-meta--center {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #6d717d;
  font-weight: 500;
}

.hero-meta-icon {
  font-size: 1rem;
  display: inline-block;
  transform: translateY(1px);
}

/* Desktop: coloca um do lado do outro */
@media (min-width: 768px) {
  .hero-meta--center {
    flex-direction: row;
    gap: 20px;
  }

  .hero-meta-item {
    font-size: 0.85rem;
  }
}
/* ===== SEÇÃO DE 4 BENEFÍCIOS EM BLOCO ===== */

.benefits-box-section {
   background: #ececec;                /* fundo da seção, segue o site */
  padding: 32px 16px 40px;
}

.benefits-box-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* título discreto, mas claro */
.benefits-box-title {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111111;
  text-align: center;
}

/* card principal (tipo 3º anexo) */
.benefits-box-card {
  max-width: 380px;
  margin: 0 auto;
  padding: 18px 16px 20px;
  border-radius: 24px;
   background: #ECECEF; 
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

/* grid com 4 blocos pequenos */
.benefits-box-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px; /* mais próximo e premium */
  margin-bottom: 14px;
}


/* cada PNG de benefício */
.benefit-box-item {
  margin: 0;
}

.benefit-box-item img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

/* texto de apoio embaixo */
.benefits-box-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: #5f6470;
  text-align: center;
}

.benefits-box-text strong {
  color: #111111;
  font-weight: 600;
}

/* Desktop: um pouco mais de respiro */
@media (min-width: 768px) {
  .benefits-box-section {
    padding: 40px 32px 52px;
  }

  .benefits-box-card {
    max-width: 420px;
    padding: 20px 18px 22px;
  }
}
/* ===== SEÇÃO DE CORES – CARROSSEL MINIMALISTA ===== */

.colors-carousel {
  background: #ffffff;
  padding: 28px 0 34px;
}

.colors-carousel-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.colors-carousel-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #111111;
}

.colors-carousel-sub {
  margin: 4px 0 18px;
  font-size: 0.9rem;
  color: #7b7d86;
}

/* faixa rolável */

.colors-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 16px;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 6px;
}

.colors-track::-webkit-scrollbar {
  display: none;
}

/* cada slide (1 por vez no centro) */

.color-slide {
  flex: 0 0 80%;              /* ocupa ~80% da largura */
  max-width: 320px;
  margin: 0 auto;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  background: #f5f5f7;
  border-radius: 22px;
  padding: 12px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* imagem da camisa */

.color-slide img {
  width: 100%;
  max-width: 180px;
  display: block;
  border-radius: 14px;
}

/* nome da cor */

.color-slide figcaption {
  font-size: 0.82rem;
  color: #222222;
}

/* texto de dica */

.colors-carousel-hint {
  margin-top: 14px;
  font-size: 0.75rem;
  color: #9a9dab;
}

/* desktop: bloco continua pequeno, sem aumentar muito a LP */

@media (min-width: 768px) {
  .colors-carousel {
    padding: 32px 0 40px;
  }

  .colors-carousel-inner {
    padding: 0 32px;
  }

  .color-slide {
    flex: 0 0 40%;
    max-width: 280px;
  }

  .color-slide img {
    max-width: 170px;
  }
}
/* ===== TECIDO PREMIUM / TECNOLOGIA ===== */

.fabric-section {
  background: #111111; /* bloco escuro pra contrastar com as outras dobras */
  padding: 40px 16px 46px;
}

.fabric-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

/* ícone redondo em cima */
.fabric-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.fabric-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle, #ffffff 0%, #d4d6dc 50%, #b3b5bc 100%);
  position: relative;
}

/* “trama” do tecido no meio (minimalista) */
.fabric-icon::before,
.fabric-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.45);
}

.fabric-icon::after {
  transform: rotate(45deg);
}

/* título e texto */

.fabric-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.fabric-sub {
  margin: 6px auto 20px;
  max-width: 320px;
  font-size: 0.9rem;
  color: #d9dbe1;
}

.fabric-sub strong {
  color: #ffffff;
}

/* fotos em círculos */

.fabric-details {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.fabric-photo {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  overflow: hidden;
  background: #000000;
}

.fabric-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* desktop: um pouco maior */

@media (min-width: 768px) {
  .fabric-section {
    padding: 48px 32px 56px;
  }

  .fabric-sub {
    max-width: 380px;
  }

  .fabric-photo {
    width: 80px;
    height: 80px;
  }
}
/* ===== TECIDO PREMIUM / TECNOLOGIA ===== */

.fabric-section {
  background: #111111; /* bloco escuro pra contrastar com as outras dobras */
  padding: 40px 16px 46px;
}

.fabric-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

/* ícone redondo com imagem */

.fabric-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.fabric-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  overflow: hidden;
}

.fabric-icon img {
  width: 62%;
  height: auto;
  display: block;
}

/* título e texto */

.fabric-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.fabric-sub {
  margin: 6px auto 16px;
  max-width: 280px;
  font-size: 0.9rem;
  color: #d9dbe1;
}

.fabric-sub strong {
  color: #ffffff;
}

/* fotos em círculos */

.fabric-details {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.fabric-photo {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  overflow: hidden;
  background: #000000;
}

.fabric-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease-out;
}

/* zoom suave na foto do meio */
.fabric-photo:nth-child(2) img {
  transform: scale(1.12);
}

/* desktop: um pouco maior */

@media (min-width: 768px) {
  .fabric-section {
    padding: 48px 32px 56px;
  }

  .fabric-sub {
    max-width: 380px;
  }

  .fabric-photo {
    width: 80px;
    height: 80px;
  }
}
/* ===== TABELA DE MEDIDAS ===== */

.size-section {
   background: #f5f5f7;    
  padding: 32px 16px 40px;
}

.size-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

/* card principal */

.size-card {
  max-width: 380px;
  margin: -22px auto 0;  
  padding: 18px 18px 16px;
  border-radius: 26px;
  background: #f3f4f6;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* “TABELA DE MEDIDAS” em pill */

.size-pill {
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* cabeçalho */

.size-header-row,
.size-row {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 1.3fr;
  align-items: center;
}

.size-header-row {
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.size-head {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #6c707a;
}

/* linhas */

.size-row {
  padding: 5px 0;
  font-size: 0.86rem;
  color: #222222;
}

.size-row + .size-row {
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.size-col--label {
  font-weight: 600;
}

/* nota embaixo */

.size-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #8c9099;
}

/* desktop: um pouco mais largo */

@media (min-width: 768px) {
  .size-section {
    padding: 40px 32px 52px;
  }

  .size-card {
    max-width: 420px;
  }
}
/* ===== BLOCO DE OFERTA – COMPRE 3 E GANHE 2 ===== */

.offer-section {
  background: #ffffff;
  padding: 32px 16px 44px;
}

.offer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.offer-card {
  max-width: 430px;
  margin: 0 auto;
  padding: 22px 20px 20px;
  border-radius: 26px;
  background: #f3f4f6;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  text-align: center;
}

/* tag superior */

.offer-tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* foto do produto */

.offer-product {
  margin-bottom: 10px;
}

.offer-product-img {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  display: block;
  margin: 0 auto;
}

/* título e texto */

.offer-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.25;
}

.offer-title span {
  font-weight: 500;
}

.offer-sub {
  margin: 8px 0 14px;
  font-size: 0.9rem;
  color: #6d717c;
}

.offer-sub strong {
  color: #111111;
}

/* preço */

.offer-price {
  margin-bottom: 14px;
}

.offer-old {
  display: block;
  font-size: 0.78rem;
  color: #8a8f99;
  text-decoration: line-through;
}

.offer-new {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111111;
}

.offer-split {
  display: block;
  font-size: 0.8rem;
  color: #666b76;
}

/* blocos internos (tamanho / cores) */

.offer-block {
  margin-top: 12px;
  text-align: left;
}

.offer-block-label {
  margin: 0 0 6px;
  font-size: 0.88rem;
  color: #111111;
}

.offer-block-label strong {
  font-weight: 600;
}

.offer-colors-count {
  font-size: 0.78rem;
  color: #8b8f99;
}

/* tamanhos */

.offer-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-pill {
  flex: 0 0 auto;
  min-width: 44px;
  padding: 7px 8px;
  border-radius: 999px;
  border: 1px solid #c0c3cc;
  background: #ffffff;
  font-size: 0.85rem;
  color: #111111;
  cursor: pointer;
  transition: background-color 0.16s ease-out, color 0.16s ease-out,
              border-color 0.16s ease-out, transform 0.12s ease-out;
}

.size-pill.is-selected {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  transform: translateY(-1px);
}

/* cores */

.offer-colors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.color-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  border-radius: 999px;
  border: 1px solid #d0d2da;
  background: #ffffff;
  font-size: 0.8rem;
  color: #111111;
  cursor: pointer;
  transition: background-color 0.16s ease-out, border-color 0.16s ease-out,
              transform 0.12s ease-out;
}

.color-pill.is-selected {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  transform: translateY(-1px);
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
}

/* define as cores dos pontos */
.color-dot--preto    { background: #111111; }
.color-dot--branco   { background: #f5f5f7; }
.color-dot--verde    { background: #1f3b33; }
.color-dot--bege     { background: #d5c3a3; }
.color-dot--cinza    { background: #8a8f99; }
.color-dot--azul     { background: #1c3f62; }
.color-dot--vermelho { background: #b72c2c; }
.color-dot--amarelo  { background: #f4c84a; }

/* botão de confirmar */

.offer-confirm-btn {
  width: 100%;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  transition: opacity 0.16s ease-out, transform 0.12s ease-out,
              box-shadow 0.16s ease-out, background-color 0.16s ease-out;
}

.offer-confirm-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.offer-confirm-btn:not(:disabled):active {
  transform: scale(0.97);
}

@media (hover: hover) {
  .offer-confirm-btn:not(:disabled):hover {
    background: #000000;
    box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  }
}

/* texto auxiliar */

.offer-help-text {
  margin: 8px 0 0;
  font-size: 0.76rem;
  color: #8b8f99;
}

/* ========= MODAL ========= */

.offer-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.offer-modal.is-open {
  display: flex;
}

.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.offer-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  margin: 0 16px;
  padding: 18px 16px 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  text-align: left;
}

.offer-modal-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #111111;
}

.offer-modal-line {
  margin: 4px 0;
  font-size: 0.86rem;
  color: #292d34;
}

.offer-modal-line span {
  color: #707580;
}

.offer-modal-note {
  margin: 10px 0 14px;
  font-size: 0.8rem;
  color: #707580;
}

.offer-modal-actions {
  display: flex;
  gap: 8px;
}

.offer-modal-primary,
.offer-modal-secondary {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.offer-modal-primary {
  background: #111111;
  color: #ffffff;
}

.offer-modal-secondary {
  background: #f3f4f6;
  color: #111111;
}

/* desktop */

@media (min-width: 768px) {
  .offer-section {
    padding: 40px 32px 52px;
  }

  .offer-card {
    max-width: 460px;
    padding: 24px 22px 22px;
  }
}
/* ===== DEPOIMENTOS – CARROSSEL PREMIUM ===== */

.reviews-section {
   background: #eeeeee;
  padding: 15px 16px 40px; /* topo reduzido de 48 → 28 */
}

.reviews-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.reviews-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 28px;
}

/* faixa horizontal */
.reviews-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

/* esconder scroll no mobile */
.reviews-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.review-card {
  flex: 0 0 88%;
  max-width: 370px;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

/* top row */
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-photo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.review-verified {
  font-size: 0.75rem;
  color: #70757d;
  margin: 1px 0;
}

.review-stars {
  color: #111;
  font-size: 0.9rem;
  margin: 0;
}

/* texto */
.review-text {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.45;
  margin-bottom: 16px;
}

/* imagem do feedback */
.review-image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}
.stat-section {
  padding: 34px 0;
  background: #ffffff; /* ou #f4f4f6 se quiser separar melhor */
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.stat-label {
  font-size: 0.9rem;
  color: #6d6e75;
  margin: 6px 0 0;
}
/* ===== BLOCO DE CONFIANÇA / COMPRA SEGURA ===== */

.trust-section {
  background: #ffffff;
  padding: 24px 16px 36px; /* topo menor, mais elegante */
}

.trust-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.trust-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 18px 18px;
  border-radius: 22px;
  background: #f4f4f6;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* header do bloco */

.trust-tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111111;
}

.trust-sub {
  margin: 6px 0 16px;
  font-size: 0.85rem;
  color: #70757f;
}

/* lista de itens */

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ícones redondos com imagem dentro */

.trust-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

/* textos */

.trust-content {
  flex: 1;
}

.trust-item-title {
  margin: 0 0 2px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #111111;
}

.trust-item-text {
  margin: 0;
  font-size: 0.8rem;
  color: #5f646f;
  line-height: 1.4;
}

/* desktop */

@media (min-width: 768px) {
  .trust-section {
    padding: 28px 16px 44px;
  }

  .trust-card {
    padding: 22px 22px 20px;
  }
}
/* ===== FAQ – ELEGANTE E MINIMAL ===== */

.faq-section {
  background: #ececee; /* cinza premium minimalista */
  padding: 32px 16px 0px;
}

.faq-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.faq-title {
  margin: 0;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111111;
}

.faq-sub {
  margin: 6px auto 22px;
  max-width: 420px;
  text-align: center;
  font-size: 0.88rem;
  color: #6f737d;
}

/* lista */

.faq-list {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* cada item */

.faq-item {
  border-radius: 16px;
  background: #ffffff;
  padding: 10px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span:first-child {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111111;
}

/* ícone minimalista + / - */

.faq-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #c5c7ce;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #111111;
  border-radius: 999px;
}

.faq-icon::before {
  width: 10px;
  height: 1.2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.2px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* quando estiver aberto: vira só "-" (sumir a barrinha vertical) */

.faq-item[open] .faq-icon::after {
  opacity: 0;
}

/* corpo */

.faq-body {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.faq-body p {
  margin: 0 0 4px;
  font-size: 0.84rem;
  color: #5c6068;
  line-height: 1.5;
}

/* desktop */

@media (min-width: 768px) {
  .faq-section {
    padding: 36px 16px 52px;
  }

  .faq-item {
    padding: 12px 16px;
    border-radius: 18px;
  }
}
.footer {
  background: #ececee;
  padding: 32px 16px 0;
  margin-top: 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #111;
}

.footer-rights {
  margin: 4px 0 26px;
  font-size: 0.8rem;
  color: #6f6f74;
}

.footer-info p {
  margin: 3px 0;
  font-size: 0.82rem;
  color: #4b4e55;
}

.footer-line {
  margin: 26px auto;
  max-width: 420px;
  height: 1px;
  background: rgba(0,0,0,0.08);
  border: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #55585f;
}

.footer-nav a:hover {
  color: #111;
}
