/* ================================================================
   SUPPRESS — Produtos Page Styles
   ================================================================ */

/* Hero flui direto para o showcase (ambos escuros, sem divisor branco) */
.products-hero {
  background: linear-gradient(180deg, var(--color-dark) 0%, #131318 100%);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Mantém o laranja só no topo do hero — a borda inferior fica neutra (#131318),
   evitando "degrau" de cor na emenda com o showcase */
.products-hero .page-hero__bg-accent {
  background: radial-gradient(75% 65% at 82% 18%, rgba(255, 102, 0, 0.16) 0%, rgba(255, 102, 0, 0) 68%);
}

/* Dica sutil de scroll conectando hero -> showcase */
.products-hero__hint {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.products-hero__hint svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  animation: psHintBounce 1.8s ease-in-out infinite;
}

@keyframes psHintBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .products-hero__hint svg { animation: none; }
}

/* ================================================================
   SHOWCASE — Carrossel imersivo de produtos
   ================================================================ */
.product-showcase {
  position: relative;
  isolation: isolate;
  /* clip (não 'hidden'): recorta sem virar contêiner de rolagem,
     impedindo que a seção seja deslocada horizontalmente */
  overflow: clip;
  padding: clamp(1rem, 2.5vw, 2rem) 0 clamp(1.2rem, 2.5vw, 2rem);
  /* 1ª camada: fade vertical a partir da cor final do hero (#131318) -> junção sem emenda
     2ª camada: spotlight laranja centrado no PRODUTO (longe da emenda)
     3ª camada: base radial escura, vinheta suave atrás do produto */
  background:
    linear-gradient(180deg, #131318 0%, rgba(19, 19, 24, 0) 24%),
    radial-gradient(85% 65% at 74% 58%, rgba(255, 102, 0, 0.18) 0%, rgba(255, 102, 0, 0) 60%),
    radial-gradient(150% 130% at 50% 58%, #23232a 0%, #15151a 42%, #0a0a0c 100%);
  color: var(--color-white);
}

/* Glow laranja flutuante (rebaixado: não invade a emenda com o hero) */
.showcase__glow {
  position: absolute;
  top: 6%;
  right: -8%;
  width: 55vw;
  height: 55vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.24) 0%, rgba(255, 102, 0, 0) 68%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  animation: psGlow 9s ease-in-out infinite alternate;
}

/* Grade técnica sutil ao fundo — começa abaixo da emenda e ainda some nas bordas */
.showcase__grid-bg {
  position: absolute;
  inset: 80px 0 0 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(110% 95% at 50% 45%, #000 30%, transparent 80%);
          mask-image: radial-gradient(110% 95% at 50% 45%, #000 30%, transparent 80%);
}

/* Layout principal: info | palco */
.showcase__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .showcase__inner {
    /* Coluna do texto FIXA (depende só da largura da tela, nunca do produto).
       Coluna do produto = minmax(0, 1fr): nunca empurra/desloca o texto. */
    grid-template-columns: clamp(340px, 34vw, 440px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

/* ----- Painel de informações ----- */
.ps-info { width: 100%; max-width: 440px; }

@media (max-width: 899px) {
  .ps-info { order: 3; max-width: none; text-align: center; }
}

.ps-info__line {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: var(--sp-2);
}

.ps-info__name {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.92;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}

.ps-info__name b { color: var(--color-primary); font-weight: 700; }

.ps-info__tagline {
  font-size: var(--text-base);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: var(--sp-4);
}

.ps-info__specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.ps-info__specs li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
}

.ps-info__specs .k {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.ps-info__specs .v {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-white);
}

.ps-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

@media (max-width: 899px) { .ps-info__tags { justify-content: center; } }

.ps-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.ps-info__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--sp-2);
}

@media (max-width: 899px) { .ps-info__actions { justify-content: center; } }

.ps-info__cta { gap: var(--sp-2); }
.ps-info__cta svg { width: 18px; height: 18px; }

.ps-info__proposal {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: .04em;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.ps-info__proposal:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

/* ----- Palco do produto ----- */
.ps-stage {
  position: relative;
  min-width: 0; /* permite a coluna do produto encolher sem empurrar o texto */
  perspective: 1400px;
  min-height: clamp(280px, 42vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 899px) { .ps-stage { order: 1; } }

/* Número-fantasma atrás do produto (contido no palco, não vaza sobre o texto) */
.ps-stage__ghost {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(7rem, 18vw, 15rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  letter-spacing: -0.04em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.ps-stage__imgs {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  z-index: 1;
}

.ps-img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(260px, 40vw, 500px);
  object-fit: contain;
  opacity: 0;
  transform: translateX(48px) scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.55));
  pointer-events: none;
  will-change: opacity, transform;
}

.ps-img.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  animation: psFloat 6s ease-in-out 0.7s infinite alternate;
}

/* Imagens paisagem (ex.: Conjunto Móvel) — usa largura como referência, não altura */
.ps-img--wide {
  max-height: none;
  max-width: 120%;
  width: clamp(460px, 70vw, 900px);
  margin-left: auto;
  margin-right: -8%;
  left: auto;
  right: -4%;
}

/* Sombra radial no chão */
.ps-stage__shadow {
  position: absolute;
  bottom: 6%;
  left: 50%;
  width: min(62%, 440px);
  height: 42px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 72%);
  filter: blur(11px);
  z-index: 0;
}

/* ----- Controles -----
   agora um 3º item de grid dentro de .showcase__inner (depois de
   ps-info/ps-stage) para poder ser reordenado no mobile logo abaixo da
   foto — grid-column ocupa as duas colunas para continuar como uma
   faixa de largura total abaixo do par info+palco no desktop.
   min-width:0 é necessário: sem isso, a faixa de 9 miniaturas (que
   deveria rolar via overflow-x:auto) força a coluna do grid a crescer
   pra caber todas de uma vez, estourando a largura no mobile. */
.showcase__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  grid-column: 1 / -1;
  min-width: 0;
  position: relative;
}

@media (max-width: 899px) { .showcase__controls { order: 2; } }

.ps-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--t), border-color var(--t), transform var(--t);
}

.ps-nav svg { width: 22px; height: 22px; }

.ps-nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.06);
}

.ps-nav:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

.ps-thumbs {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  overflow-x: auto;
  padding: var(--sp-2);
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.ps-thumbs::-webkit-scrollbar { display: none; }

.ps-thumb {
  flex-shrink: 0;
  width: 76px;
  height: 60px;
  padding: 6px;
  border-radius: var(--radius-lg);
  /* fundo OPACO: o glow nunca vaza por trás de uma miniatura que ainda não pintou */
  background: #1b1b21;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  opacity: 0.45;
  scroll-snap-align: center;
  transition: opacity var(--t), border-color var(--t), background var(--t), transform var(--t);
}

.ps-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ps-thumb:hover { opacity: 0.8; transform: translateY(-2px); }

.ps-thumb.is-active {
  opacity: 1;
  background: #2b1d10;
  border-color: var(--color-primary);
}

.ps-thumb:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

.ps-counter {
  position: absolute;
  right: var(--gutter);
  bottom: -2px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
}

.ps-counter [data-current] { color: var(--color-white); font-size: var(--text-lg); }
.ps-counter__sep { margin: 0 4px; }

/* below this, same treatment as the home page's product showcase: the
   desktop clamp() floors (title, "wide" product photo) are wider than
   the viewport itself here, and the thumbnail strip switches from a
   horizontal row under the photo to a vertical rail beside it (like a
   product-page gallery) — shares the photo's row as a narrow left
   column, so the photo ends up centered-but-shifted-right in the
   remaining space and switching models doesn't need a big scroll. */
@media (max-width: 680px) {
  .product-showcase { padding: 2.5rem 0 2rem; }
  .showcase__inner { gap: 1.25rem; grid-template-columns: 60px 1fr; }
  .ps-info__line { font-size: .68rem; margin-bottom: .5rem; }
  .ps-info__name { font-size: clamp(1.9rem, 10vw, 2.4rem); line-height: 1.06; margin-bottom: .6rem; }
  .ps-info__tagline { font-size: .95rem; margin-bottom: 1.1rem; }
  .ps-info__specs { gap: var(--sp-1); }
  .ps-info__specs li { padding: var(--sp-2) var(--sp-3); }
  .ps-info__specs .v { font-size: var(--text-lg); }
  .ps-info__actions { flex-direction: column; align-items: stretch; gap: .7rem; }
  .ps-info__cta, .ps-info__proposal {
    width: 100%; justify-content: center; text-align: center;
    white-space: normal; font-size: .92rem; padding: 14px 18px;
  }
  .ps-info { grid-column: 1 / -1; }

  .ps-stage { grid-column: 2; grid-row: 1; min-height: clamp(200px, 62vw, 300px); }
  .ps-img { max-height: clamp(180px, 54vw, 300px); }
  .ps-img--wide {
    width: 90%; max-width: 340px;
    left: 0; right: 0; margin-left: auto; margin-right: auto;
  }
  .ps-stage__ghost { font-size: clamp(4rem, 26vw, 6.5rem); }

  .showcase__controls {
    grid-column: 1; grid-row: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  }
  .ps-nav { width: 30px; height: 30px; }
  .ps-nav svg { width: 14px; height: 14px; }
  .ps-nav--prev svg, .ps-nav--next svg { transform: rotate(90deg); } /* ‹/› viram ^/v numa faixa vertical */
  .ps-thumbs {
    flex-direction: column; max-height: clamp(140px, 40vw, 200px); padding: 0; gap: .4rem;
    overflow-x: hidden; overflow-y: auto; scroll-snap-type: y proximity;
  }
  .ps-thumb { width: 44px; height: 36px; flex-shrink: 0; }
  .ps-counter { position: static; text-align: center; margin-top: 0; }
}

/* ----- Animações ----- */
@keyframes psGlow {
  from { transform: translate(0, 0) scale(1); opacity: 0.9; }
  to   { transform: translate(-3%, 4%) scale(1.08); opacity: 1; }
}

@keyframes psFloat {
  from { transform: translateX(0) scale(1) translateY(0); }
  to   { transform: translateX(0) scale(1) translateY(-14px); }
}

@keyframes psSwapUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: no-preference) {
  .ps-info.is-swap > * {
    animation: psSwapUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
  }
  .ps-info.is-swap > *:nth-child(1) { animation-delay: 0.05s; }
  .ps-info.is-swap > *:nth-child(2) { animation-delay: 0.10s; }
  .ps-info.is-swap > *:nth-child(3) { animation-delay: 0.15s; }
  .ps-info.is-swap > *:nth-child(4) { animation-delay: 0.20s; }
  .ps-info.is-swap > *:nth-child(5) { animation-delay: 0.25s; }
  .ps-info.is-swap > *:nth-child(6) { animation-delay: 0.30s; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase__glow { animation: none; }
  .ps-img { transition: opacity 0.3s ease; transform: none; }
  .ps-img.is-active { animation: none; transform: none; }
}

/* Product line section */
.product-line-section {
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--color-border);
}

.product-line-section:last-of-type { border-bottom: none; }

.product-line-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--sp-8);
}

.product-line-label::after {
  content: '';
  flex: 1;
  min-width: 40px;
  height: 2px;
  background: var(--color-primary);
}

/* Full product detail card */
.product-detail-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow var(--t-slow);
}

@media (min-width: 768px) {
  .product-detail-card { grid-template-columns: 1fr 1fr; }
}

.product-detail-card:hover { box-shadow: var(--shadow-lg); }

.product-detail-card__image {
  background: var(--color-dark);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.product-detail-card:hover .product-detail-card__image img { transform: scale(1.04); }

.product-detail-card__body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
}

.product-detail-card__sku {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
}

.product-detail-card__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.product-detail-card__tagline {
  font-size: var(--text-base);
  color: var(--color-gray);
  margin-bottom: var(--sp-6);
  line-height: 1.5;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.product-spec-item {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
}

.product-spec-item__label {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  display: block;
  margin-bottom: var(--sp-1);
}

.product-spec-item__value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1;
  display: block;
}

.product-spec-item__unit {
  font-size: var(--text-xs);
  color: var(--color-gray);
}

.product-sectors-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.product-sector-tag {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-dark-mid);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* Accessories section */
.accessories-section {
  background: var(--color-bg);
  padding: var(--sp-20) 0;
}

.accessory-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-slow), transform var(--t-slow);
}

.accessory-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.accessory-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,102,0,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  color: var(--color-primary);
}

.accessory-card__icon svg { width: 30px; height: 30px; }

.accessory-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-dark);
}

/* .grid-4's own default is a single column below 640px — fine for cards
   with a paragraph of text, but these are just an icon + a one-line
   name, so a single column was 7 nearly-empty full-width cards in a row.
   Scoped to .accessories-grid instead of overriding .grid-4 itself,
   since other sections reuse that utility class for content that does
   need the full width on a phone. */
@media (max-width: 640px) {
  .accessories-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .accessory-card { padding: var(--sp-4); }
  .accessory-card__icon { width: 48px; height: 48px; margin-bottom: var(--sp-3); }
  .accessory-card__icon svg { width: 22px; height: 22px; }
  .accessory-card__name { font-size: var(--text-sm); }
}

/* Services section */
.services-section {
  background: var(--color-white);
  padding: var(--sp-20) 0;
}

.service-card {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: border-color var(--t), box-shadow var(--t);
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--sp-2);
}

.service-card__text {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

.services-grid { gap: 20px; }

/* Mobile: 5 stacked cards at full padding made this section scroll forever.
   Compact the cards and section rhythm instead of changing the layout. */
@media (max-width: 640px) {
  .services-section { padding: var(--sp-12) 0; }
  .services-grid { gap: var(--sp-3); }
  .service-card { padding: var(--sp-4); gap: var(--sp-3); }
  .service-card__icon { width: 40px; height: 40px; border-radius: var(--radius); }
  .service-card__icon svg { width: 20px; height: 20px; }
  .service-card__title { font-size: var(--text-base); margin-bottom: 4px; }
  .service-card__text { font-size: var(--text-xs); line-height: 1.5; }
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */

.faq-section {
  background: var(--color-bg);
  padding: var(--sp-20) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-dark);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-primary);
  transition: transform var(--t);
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item__answer {
  padding: 0 var(--sp-6) var(--sp-6);
  color: var(--color-gray);
  line-height: 1.7;
}
