:root {
  --cor-vermelho: #e53e3e;
  --header-glass-bg: rgba(30, 30, 30, 0.55);
  --header-glass-border: rgba(255, 255, 255, 0.07);
  --card-bg: rgba(255, 255, 255, 0.04);
  --borda-sutil: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Foco visível para acessibilidade — apenas em navegação por teclado */
:focus-visible {
  outline: 2px solid var(--cor-vermelho);
  outline-offset: 3px;
  border-radius: 2px;
}

body {
  background-color: black;
  color: white;
  font-family: Montserrat, sans-serif;
  max-width: 1420px;
  position: relative;
  margin: 0 auto;
}

/* Impede scroll horizontal — html corta sem criar scroll container no body */
html { overflow-x: hidden; }

h1, h2, h3, h4, p {
  font-family: Montserrat, sans-serif;
}

.transicao {
  position: relative;
  height: 100vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 3vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}

header .logo-text {
  font-weight: 400;
  font-size: 32px;
  opacity: 0;
  display: inline-block;
}

header .logo-link {
  color: white;
  text-transform: none;
  letter-spacing: normal;
  font-size: inherit;
}

/* Reset do button parent do dropdown */
.nav-link--parent {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

header img {
  width: 100px;
  opacity: 0;
}

.header-nav {
  display: flex;
  gap: 2rem;
  opacity: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-link:hover {
  color: white;
}

/* ── Dropdown de produtos ── */
.nav-dropdown-wrap {
  position: relative;
}

.nav-link--parent {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: default;
}

.nav-link--parent svg {
  transition: transform 0.25s;
  opacity: 0.6;
}

.nav-dropdown-wrap:hover .nav-link--parent svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 300;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-wrap:hover .nav-link--parent svg,
.nav-dropdown-wrap.open .nav-link--parent svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

/* mobile sub-itens */
.mobile-link--sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  padding-left: 1.5rem;
  letter-spacing: 0.06em;
}

.hero {
  width: 100%;
  max-width: 1420px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 1;

  .background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.6);
    }
  }

  .img-hero, video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }

  .conteudo {
    position: relative;
    z-index: 3;

    h1 {
      margin: 20px 0;
      font-size: 46px;
      opacity: 0;
      font-weight: 800;
    }
    p {
      font-size: 24px;
      opacity: 0;
    }
  }

  /* Vinheta: dissolve laterais, topo e base — estende além da borda para evitar pixel exposto */
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -6px;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(to right,  black 0%, transparent 18%, transparent 82%, black 100%),
      linear-gradient(to bottom, black 0%, transparent 12%, transparent 30%, rgba(0,0,0,0.75) 60%, black 85%);
  }
}

.entrada {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 4;
}

.retangulos {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: 3;
  overflow: hidden;

  div {
    background-color: black;
    width: 100%;
    height: 100%;
    
  }
}

.linha {
  overflow: hidden;
}

/* Sections sobem sobre a hero fixada */
.transicao, .sobre, .destaques, .produtos, .falantes,
.custom-shop, .quem-usa, .depoimentos,
.servicos, .contato {
  position: relative;
  z-index: 2;
  background-color: black;
}

/* transicao precisa ser transparente para a hero aparecer atrás */
.transicao {
  background-color: transparent;
}

/* ── Destaques ────────────────────────────── */

.destaques {
  padding: 120px 3vw 100px;
  max-width: 1420px;
  margin: 0 auto;
}

.destaques-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.destaques-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.destaques-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 52px;
}

/* ── Carousel ─────────────────────────────── */

.carousel-wrapper {
  position: relative;
}

.carousel {
  overflow: hidden;
  touch-action: pan-y;
}

#carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* ── Card ─────────────────────────────────── */

.card {
  flex: 0 0 300px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: linear-gradient(225deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px);
}

#carousel-track .card-img-wrap img {
  filter: grayscale(100%);
}

#carousel-track .card:hover .card-img-wrap img {
  filter: grayscale(0%);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}


.card-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  z-index: 2;
}

.card-pill--blue {
  background: rgba(96, 165, 250, 0.9);
}

.card-pill--ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.card-body {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.card-serie {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
}

.card-nome {
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 22px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-price-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.card-price {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card-btn {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.card-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  color: white;
}

/* ── Carousel Controls ────────────────────── */

.carousel-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  justify-content: center;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

/* ── Produtos ─────────────────────────────── */

.produtos {
  padding: 120px 3vw 100px;
  max-width: 1420px;
  margin: 0 auto;
}

.produtos-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.produtos-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.produtos-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 36px;
}

/* Categorias (esquerda) */

.produtos-categorias {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.categoria-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.categoria-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.categoria-item.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.categoria-icone {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: background 0.25s ease, color 0.25s ease;
}

.categoria-item.active .categoria-icone {
  background: rgba(255, 255, 255, 0.13);
  color: white;
}

.categoria-texto strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.categoria-texto span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Painel de cards (direita) */

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-spin {
  to { --border-angle: 360deg; }
}

.produtos-direita {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow:
    0 0 80px rgba(255, 255, 255, 0.06),
    0 0 160px rgba(255, 255, 255, 0.03);
}

.produtos-direita::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 60%,
    rgba(255, 255, 255, 0.65) 73%,
    transparent 84%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-spin 5s linear infinite;
  pointer-events: none;
}

.produtos-painel {
  display: none;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.produtos-painel.active {
  display: flex;
  width: 100%;
}

.painel-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.painel-cards .card {
  flex: unset;
}

.painel-cards .card:only-child {
  grid-column: 1 / -1;
  max-width: 300px;
  margin: 0 auto;
}

.painel-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
/* ── Quem usa ─────────────────────────────── */
.quem-usa {
  position: relative;
  max-width: 1420px;
  margin: 0 auto;
  overflow: hidden;
}

.quem-usa::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right,  black 0%, transparent 18%, transparent 82%, black 100%),
    linear-gradient(to bottom, black 0%, transparent 18%, transparent 65%, black 100%),
    rgba(0, 0, 0, 0.45);
}

.quem-usa-conteudo {
  position: relative;
  z-index: 2;
  padding: 80px 3vw;
}

.quem-usa-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.quem-usa-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 52px;
}

.artistas-carousel-wrapper {
  position: relative;
}

.artistas-carousel {
  overflow: hidden;
  touch-action: pan-y;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

#artistas-track {
  display: flex;
  gap: 130px;
  width: max-content;
  will-change: transform;
}

.artista-card {
  flex: 0 0 260px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.artista-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.artista-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.artista-nome {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  text-transform: uppercase;
}

.video-quem-usa {
  width: 100%;
  height: 130%;
  position: absolute;
  top: -15%;
  left: 0;
  object-fit: cover;
  z-index: 0;
}
 
/* ── Depoimentos ──────────────────────────── */

@keyframes border-spin {
  from { --border-angle: 0deg; }
  to   { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: '<angle>';
  inherits: true;
  initial-value: 0deg;
}

.depoimentos {
  position: relative;
  padding: 120px 3vw 130px;
  overflow: hidden;
}

.depoimentos-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.depoimentos-intro {
  max-width: 580px;
  margin-bottom: 64px;
}

.depoimentos-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.depoimentos-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.depoimentos-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.dep-card {
  position: relative;
  padding: 36px 32px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.35s ease, background 0.35s ease;
}

/* borda estática sutil */
.dep-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.04) 40%,
    rgba(255,255,255,0.0) 60%,
    rgba(255,255,255,0.08) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* borda animada no hover */
.dep-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 20%,
    rgba(220, 38, 38, 0.7) 40%,
    rgba(255,255,255,0.5) 50%,
    rgba(220, 38, 38, 0.7) 60%,
    transparent 80%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: border-spin 3s linear infinite paused;
}

.dep-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.055);
}

.dep-card:hover::after {
  opacity: 1;
  animation-play-state: running;
}

/* card central em destaque */
.dep-card--destaque {
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-10px);
}

.dep-card--destaque::before {
  background: linear-gradient(135deg,
    rgba(220, 38, 38, 0.35) 0%,
    rgba(255,255,255,0.08) 50%,
    rgba(220, 38, 38, 0.2) 100%
  );
}

.dep-card--destaque:hover {
  transform: translateY(-16px);
}

.dep-quote {
  font-size: 5rem;
  line-height: 0.6;
  font-family: Georgia, serif;
  color: var(--cor-vermelho);
  opacity: 0.6;
  user-select: none;
}

.dep-texto {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
}

.dep-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dep-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cor-vermelho), #7f1d1d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: white;
}

.dep-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dep-nome {
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
}

.dep-cargo {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.02em;
}

.dep-estrelas {
  font-size: 0.78rem;
  color: #f59e0b;
  letter-spacing: 2px;
  flex-shrink: 0;
}

/* ── Custom Shop ─────────────────────────────────────────────────────────── */

.custom-shop {
  padding: 120px 3vw 60px;
  position: relative;
}

.cs-intro {
  margin-bottom: 16px;
}

.cs-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.cs-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* ── Desenho técnico ── */
.cs-desenho-wrapper {
  min-height: 180vh;
  position: relative;
  margin: 0 0 20px;
}

.cs-desenho-sticky {
  position: sticky;
  top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 4vw;
  padding: 48px 2vw;
}

.cs-desenho-svg-wrap {
  display: flex;
  align-items: center;
}

.cs-desenho-texto {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.cs-desenho-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cor-vermelho);
}

.cs-desenho-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cs-desenho-corpo {
  font-size: 0.84rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.42);
}

.cs-desenho-fechamento {
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.62);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#cabinet-svg {
  max-width: 520px;
  width: 85%;
  display: block;
}

.cs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}

/* ── Imagem ── */
.cs-imagem-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-imagem {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cs-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.cs-prev, .cs-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.cs-prev:hover, .cs-next:hover {
  background: var(--cor-vermelho);
  border-color: var(--cor-vermelho);
  color: white;
}

/* ── Info ── */
.cs-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-serie {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cor-vermelho);
}

.cs-nome {
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cs-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
}

.cs-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cs-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  gap: 16px;
}

.cs-spec-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.cs-spec-valor {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: black;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  transition: background 0.25s, color 0.25s;
  margin-top: 4px;
}

.cs-btn:hover {
  background: var(--cor-vermelho);
  color: white;
}

/* ── Thumbnails ── */
.cs-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.cs-dot {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.35;
  border: 2px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.cs-dot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cs-dot.ativo {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.7);
}

.cs-dot:hover:not(.ativo) {
  opacity: 0.65;
}

/* ── CTA WhatsApp ── */
@property --cs-border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes cs-border-spin {
  to { --cs-border-angle: 360deg; }
}

.cs-cta-btn {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin: 36px auto 0;
  background: #0d0d0d;
  color: white;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow:
    0 0 40px rgba(255, 255, 255, 0.07),
    0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s, box-shadow 0.25s;
}

.cs-cta-btn::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--cs-border-angle),
    transparent 0%,
    transparent 25%,
    rgba(255, 255, 255, 0.9) 50%,
    transparent 75%,
    transparent 100%
  );
  animation: cs-border-spin 3s linear infinite;
  z-index: -1;
}

.cs-cta-btn::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: inherit;
  background: #0d0d0d;
  z-index: -1;
}

.cs-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 60px rgba(255, 255, 255, 0.14),
    0 12px 40px rgba(0, 0, 0, 0.6);
}

.cs-cta-btn svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* ── Loja ──────────────────────────────────────────────────────────────────── */

.loja {
  padding: 120px 3vw 100px;
}

.loja-intro {
  margin-bottom: 56px;
}

.loja-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cor-vermelho);
  margin-bottom: 20px;
}

.loja-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.loja-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  line-height: 1.7;
}

.loja-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 780px;
}

@property --loja-border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

@keyframes loja-border-spin {
  to { --loja-border-angle: 360deg; }
}

.loja-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2.4rem 2.2rem;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  transition: transform 0.3s;
}

.loja-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--loja-border-angle),
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.32) 50%,
    transparent 62%,
    transparent 100%
  );
  animation: loja-border-spin 8s linear infinite;
  z-index: -1;
}

.loja-card:nth-child(2)::before {
  animation-delay: -4s;
}

.loja-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: #0c0c0c;
  z-index: -1;
  transition: background 0.3s;
}

.loja-card:hover {
  transform: translateY(-5px);
}

.loja-card:hover::after {
  background: #141414;
}

.loja-card-icone {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.4rem;
}

.loja-card:hover .loja-card-icone {
  color: rgba(255, 255, 255, 0.85);
}

.loja-card-nome {
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.loja-card-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.42);
  flex: 1;
}

.loja-card-cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cor-vermelho);
  margin-top: 0.4rem;
}

.loja-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  background: white;
  color: black;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.loja-btn:hover {
  background: var(--cor-vermelho);
  color: white;
}

/* nav destaque */
.nav-link--loja {
  color: var(--cor-vermelho);
}
.nav-link--loja:hover {
  color: #ff7070;
}

/* ── Serviços ────────────────────────────────────────────────────────────── */

.servicos {
  position: relative;
  padding: 120px 3vw 130px;
  overflow: hidden;
}

.servicos-glow {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.servicos-intro {
  margin-bottom: 64px;
}

.servicos-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.servicos-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.servicos-lista {
  display: flex;
  flex-direction: column;
}

/* ── Item ── */
.srv-item {
  position: relative;
  border-radius: 16px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.srv-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.4);
}

.srv-item.aberto {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow:
    0 0 0 1px rgba(220, 38, 38, 0.12),
    0 0 40px rgba(220, 38, 38, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.5);
}

/* linha vermelha esquerda quando aberto */
.srv-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--cor-vermelho);
  border-radius: 16px 0 0 16px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.srv-item.aberto::before { transform: scaleY(1); }

/* ── Header do item ── */
.srv-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.6rem 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  text-align: left;
}

/* ── Ícone da categoria ── */
.srv-icone-cat {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.srv-item.aberto .srv-icone-cat {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.5);
  color: var(--cor-vermelho);
}

.srv-titulo {
  flex: 1;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

.srv-item:hover .srv-titulo,
.srv-item.aberto .srv-titulo { color: white; }

/* ── Botão +/− ── */
.srv-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.srv-item.aberto .srv-toggle {
  background: var(--cor-vermelho);
  border-color: var(--cor-vermelho);
  color: white;
}

.srv-toggle .srv-h {
  transition: opacity 0.3s, transform 0.3s;
  transform-origin: center;
}

.srv-item.aberto .srv-toggle .srv-h {
  opacity: 0;
  transform: rotate(90deg);
}

/* ── Corpo colapsável ── */
.srv-corpo {
  overflow: hidden;
  height: 0;
}

.srv-desc {
  padding: 0 1.8rem 1.8rem calc(1.8rem + 44px + 1.4rem);
  font-size: 0.93rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  max-width: 680px;
}

/* ── Falantes ─────────────────────────────── */

@keyframes falantes-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.falantes {
  padding: 80px 0 100px;
}

.falantes-label {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8 );
  margin-bottom: 44px;
}

.falantes-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.falantes-viewport.dragging {
  cursor: grabbing;
}

.falantes-track {
  display: flex;
  align-items: flex-end;
  gap: 72px;
  width: max-content;
  animation: falantes-scroll 28s linear infinite;
  user-select: none;
  will-change: transform;
}

.falante-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  cursor: default;
}

.falante-item img {
  height: 120px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.falante-item:hover img {
  opacity: 1;
  transform: translateY(-6px);
}

.falante-marca {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.falante-modelo {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -8px;
}

/* ── Sobre ────────────────────────────────── */

.sobre {
  padding: 120px 3vw 140px;
  max-width: 1420px;
  margin: 0 auto;
}

.sobre-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.sobre-foto-wrap {
  position: sticky;
  top: 100px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 80px rgba(255, 255, 255, 0.06),
    0 0 160px rgba(255, 255, 255, 0.03);
}

.sobre-foto {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

.sobre-conteudo {
  padding-top: 8px;
}

.sobre-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.sobre-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.sobre-cargo {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}

.sobre-texto p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
  margin-bottom: 18px;
}

.sobre-quote {
  margin: 40px 0;
  padding: 24px 28px;
  border-left: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 14px 14px 0;
}

.sobre-quote p {
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 16px;
}

.sobre-quote cite {
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Contato ─────────────────────────── */
.contato {
  padding: 120px 6vw 140px;
  position: relative;
  overflow: hidden;
}

.contato::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 80% 50%, rgba(50, 0, 0, 0.45) 0%, transparent 65%);
  pointer-events: none;
}

.contato-inner-already-has-it {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.contato-traco {
  display: block;
  width: 28px;
  height: 2px;
  background: red;
  margin: 0 auto 36px;
}

.contato-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}

.contato-titulo strong {
  font-weight: 800;
}

.contato-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-bottom: 64px;
}

.contato-form {
  text-align: left;
}

.contato-campos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: stretch;
  margin-bottom: 52px;
}

.contato-esquerda {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}

.campo {
  display: flex;
  flex-direction: column;
}

.campo input,
.campo textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s;
  caret-color: red;
}

.campo input:focus,
.campo textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.campo label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 8px;
}

.campo-mensagem {
  height: 100%;
}

.campo-mensagem textarea {
  height: 100%;
  min-height: 210px;
  resize: none;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04),
              0 0 24px rgba(255, 255, 255, 0.04),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.campo-mensagem textarea:focus {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08),
              0 0 32px rgba(255, 255, 255, 0.07),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ── Social links ─────────────────────── */
.contato-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: auto;
  padding-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.45);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
  text-decoration: none;
}

.social-link svg {
  width: 60px;
  height: 60px;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
  transform: translateY(-2px);
}

.contato-rodape {
  display: flex;
  justify-content: center;
}

.contato-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 0, 0, 0.75);
  background: transparent;
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.contato-btn:hover {
  background: rgba(180, 0, 0, 0.15);
  border-color: red;
  transform: scale(1.06);
}

/* ── Contato sucesso overlay ─────────── */
.contato-sucesso {
  position: absolute;
  inset: 0;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  text-align: center;
}

.contato-sucesso.visivel {
  pointer-events: auto;
}

.sucesso-icone {
  color: rgba(255, 255, 255, 0.7);
  width: 64px;
  height: 64px;
}

.sucesso-icone svg {
  width: 100%;
  height: 100%;
}

.sucesso-check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
}

.sucesso-titulo {
  font-family: Montserrat, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.sucesso-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

footer {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

header.header--visivel {
  background: var(--header-glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--header-glass-border);
}

.destaque-vermelho {
  color: var(--cor-vermelho);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVO
   Desktop: ≥ 1025px (CSS padrão acima — preservado)
   Tablet:  768px – 1024px
   Mobile:  ≤ 767px
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hamburguer em mobile e tablet; nav desktop só acima de 1024px ── */
@media (min-width: 1025px) {
  .hamburger   { display: none; }
  .mobile-menu { display: none !important; }
}

/* ── TABLET + MOBILE (≤ 1024px) ─────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Nav desktop oculta — hamburguer assume */
  .header-nav { display: none; }
  header img  { display: none; }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 300;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .hamburger.aberto span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.aberto span:nth-child(2) { opacity: 0; }
  .hamburger.aberto span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Padding global das sections — reduz respiro */
  .destaques, .produtos, .loja, .custom-shop, .servicos, .contato {
    padding: 80px 4vw 70px;
  }

  /* Sobre — reduz padding interno */
  .sobre { padding: 80px 4vw; }

  /* Cards FRFR e artistas: sempre coloridos (sem grayscale + hover) */
  #carousel-track .card-img-wrap img,
  #carousel-track .card:hover .card-img-wrap img { filter: grayscale(0%); }
  .artista-card img,
  .artista-card:hover img                        { filter: grayscale(0%); }

  /* Texto corrido levemente maior para melhor leitura */
  p { font-size: 16px; }

}

/* ── Produtos: layout empilhado em todos os tablets/iPads (até 1280px) ── */
@media (max-width: 1280px) {
  .produtos-layout {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
  }
  .produtos-categorias {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .produtos-categorias::-webkit-scrollbar { display: none; }
  .categoria-item {
    flex-shrink: 0;
    min-width: 148px;
  }
  .painel-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── TABLET (768px – 1024px) ────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Header tablet */
  header { padding: 1vw 3vw; }

  /* Hero */
  .hero .conteudo h1 { font-size: 38px; }
  .hero .conteudo p  { font-size: 18px; }

  /* Sobre — mantém 2 colunas, reduz gap */
  .sobre-layout { gap: 40px; }

  /* Custom Shop — sticky com menos espaço */
  .cs-desenho-sticky { gap: 3vw; padding: 36px 2vw 0; }
  .cs-desenho-titulo { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }

  /* Custom Shop produto */
  .cs-layout { gap: 40px; }

  /* Depoimentos — 2 colunas, todos os cards iguais */
  .depoimentos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .dep-card--destaque { grid-column: auto; }

  /* Contato — campos um pouco mais compactos */
  .contato-campos { gap: 28px; }
}

/* ── MOBILE (≤ 767px) ──────────────────────────────────────────────────── */
@media (max-width: 767px) {

  /* ── Header mobile ── */
  header { padding: 4vw 5vw; }
  header .logo-text { font-size: 22px; }

  /* ── Hero ── */
  .hero .conteudo h1 {
    font-size: clamp(28px, 8vw, 36px);
    margin: 14px 0;
    padding: 0 5vw;
  }
  .hero .conteudo p {
    font-size: 14px;
    padding: 0 6vw;
    line-height: 1.5;
  }
  .hero .conteudo p br { display: none; }

  /* ── Section padding global ── */
  .destaques, .produtos, .loja, .custom-shop, .servicos, .contato {
    padding: 60px 5vw 50px;
  }
  .sobre { padding: 60px 5vw; }

  /* ── Títulos das sections ── */
  .destaques-titulo, .produtos-titulo, .loja-titulo,
  .cs-titulo, .quem-usa-titulo, .depoimentos-titulo,
  .servicos-titulo, .contato-titulo {
    font-size: clamp(28px, 8vw, 40px);
  }

  .destaques-sub, .produtos-sub, .loja-sub, .depoimentos-sub {
    font-size: 14px;
    line-height: 1.55;
  }

  /* ── Hamburger: oculto até a animação de entrada revelar ── */
  .hamburger { opacity: 0; }

  /* ── Sobre ── */
  .sobre-layout {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  /* Foto sticky: fica fixada enquanto texto sobe por cima */
  .sobre-foto-wrap {
    position: sticky;
    top: 80px;
    width: 100%;
    margin: 0;
  }
  .sobre-foto { width: 100%; height: auto; object-fit: contain; display: block; }
  .sobre-titulo    { font-size: clamp(2.2rem, 9vw, 3rem); }
  .sobre-cargo     { font-size: 13px; }
  .sobre-texto p   { font-size: 14px; line-height: 1.7; }
  .sobre-quote     { font-size: 0.9rem; padding-left: 1.2rem; }

  /* ── Destaques (carousel FRFR) ── */
  .card { flex: 0 0 270px; }
  .card-nome { font-size: 18px; }
  .card-desc { font-size: 12px; }
  .carousel-controls {
    justify-content: center;
    margin-top: 20px;
    gap: 12px;
  }

  /* ── Produtos: painel em 1 coluna no mobile ── */
  .painel-cards { grid-template-columns: 1fr !important; }
  .painel-cards .card:only-child { max-width: 100%; }

  /* ── Loja ── */
  .loja-grid { grid-template-columns: 1fr; }
  .loja-card {
    align-items: center;
    text-align: center;
    padding: 1.6rem 1.4rem;
  }
  .loja-card-icone { margin: 0 auto; }
  .loja-card-desc  { font-size: 0.82rem; }

  /* ── Custom Shop — desativa sticky e empilha ── */
  .cs-desenho-wrapper {
    min-height: auto !important;
    margin: 24px 0 40px;
  }
  .cs-desenho-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0;
  }
  .cs-desenho-svg-wrap { justify-content: center; }
  #cabinet-svg { max-width: 320px; }
  .cs-desenho-titulo  { font-size: clamp(1.5rem, 7vw, 2rem); }
  .cs-desenho-corpo,
  .cs-desenho-fechamento { font-size: 0.85rem; }

  /* Custom Shop produto — empilha com imagem em cima */
  .cs-layout {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    min-height: auto;
  }
  .cs-imagem-wrap { aspect-ratio: 1; }
  .cs-nome { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .cs-desc { font-size: 0.88rem; }

  /* Thumbnails do custom shop — margem lateral e topo */
  .cs-dots { margin: 1.4rem 1.2rem 0; }
  .cs-dot { width: 56px; height: 56px; }

  /* CTA WhatsApp full-width */
  .cs-cta-btn {
    width: calc(100% - 2rem);
    max-width: 360px;
    font-size: 0.78rem;
    padding: 0.95rem 1.5rem;
    margin: 28px auto 0;
  }

  /* ── Quem usa ── */
  .quem-usa { padding: 50px 0 40px; }
  .quem-usa-conteudo { padding: 40px 5vw 20px; }
  .artista-card { flex: 0 0 200px; }
  .artista-nome { font-size: 12px; text-shadow: none; }

  /* ── Depoimentos ── */
  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .dep-card { padding: 1.8rem 1.6rem; }
  .dep-texto { font-size: 0.9rem; }

  /* ── Serviços ── */
  .srv-header { padding: 18px 16px; gap: 12px; }
  .srv-titulo { font-size: 14px; }
  .srv-icone-cat { width: 32px; height: 32px; }
  .srv-corpo .srv-desc { font-size: 13px; padding: 0 16px 18px; line-height: 1.65; }

  /* ── Falantes (marquee) ── */
  .falante-item { width: 90px; }
  .falante-item img { width: 70px; height: 70px; }
  .falante-marca { font-size: 10px; }
  .falante-modelo { font-size: 9px; }

  /* ── Contato ── */
  .contato-campos {
    display: flex !important;
    flex-direction: column;
    gap: 28px;
  }
  .contato-titulo { font-size: clamp(2.4rem, 11vw, 4rem); }
  .contato-sub    { font-size: 14px; }
  .contato-sub br { display: none; }
  .campo input, .campo textarea { font-size: 14px; }
  .contato-social { justify-content: center; gap: 24px; }
}

/* ── Mobile menu — slide-in panel ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu.aberto {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  width: 78%;
  max-width: 300px;
  height: 100%;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 5.5rem 2.4rem 2.5rem;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.aberto .mobile-nav {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: white; }

.mobile-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.mobile-link--sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  padding-left: 0.8rem;
  letter-spacing: 0.06em;
}

.mobile-link:not(.mobile-link--sub):hover { color: white; }

/* ── Skip intro: evita flash ao voltar de página de produto ──────────────── */
html.skip-intro .entrada              { opacity: 0 !important; }
html.skip-intro .retangulos div       { transform: translateY(-100%) !important; }
html.skip-intro header .logo-text,
html.skip-intro header img,
html.skip-intro .header-nav,
html.skip-intro .hamburger            { opacity: 1 !important; }
html.skip-intro .hero h1              { opacity: 1 !important; }
html.skip-intro .hero p               { opacity: 1 !important; }
