/* Página inicial — usa css/base.css para header, footer, botões, tipografia base
   Identidade visual do site: fundo escuro, cyan de destaque, Druk Trial (títulos) +
   Space Mono (labels/botões) + Space Grotesk (corpo), grades com seams (--line). */

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

.accent-text {
  color: var(--accent);
}

/* Header com tag numerada, alinhado com o padrão já usado em lojas.html/produtos.html */
.section-head--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 50px;
}

.section-index-badge {
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  white-space: nowrap;
}

.section-head-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.carousel-arrows {
  display: flex;
  gap: 8px;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--off-white);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.carousel-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  border-color: var(--line-strong);
  color: var(--off-white);
}

.categorias-section h2,
.passos-section h2,
.sobre-section h2,
.faq-section h2 {
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero-v2 {
  position: relative;
  overflow: hidden;
  min-height: clamp(680px, 94vh, 980px);
  background: radial-gradient(120% 140% at 100% 100%, #0d3fd6 0%, #060c4c 42%, #00030d 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0, 3, 13, 0.85) 0%, rgba(0, 3, 13, 0.35) 40%, rgba(0, 3, 13, 0.1) 65%, rgba(0, 3, 13, 0.42) 100%),
    linear-gradient(to top, rgba(0, 3, 13, 0.6) 0%, rgba(0, 3, 13, 0) 32%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-height: clamp(680px, 94vh, 980px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 72px 6vw 46px;
}

.hero-top {
  max-width: 720px;
}

.hero-title {
  font-size: clamp(3.2rem, 8.6vw, 6.4rem);
  color: var(--off-white);
}

.hero-deco {
  margin-top: 40px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-deco-line {
  width: 2px;
  height: 62px;
  background: var(--line-strong);
}

.hero-deco-cn {
  writing-mode: vertical-rl;
  font-family: var(--font-body);
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  color: var(--off-white-dim);
}

.hero-bottom {
  align-self: flex-end;
  text-align: right;
  max-width: 560px;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--off-white-dim);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .btn,
.hero-actions .main-button {
  padding: 19px 38px;
  font-size: 1.02rem;
  letter-spacing: 0.07em;
}

@media (max-width: 900px) {
  .hero-v2 {
    min-height: clamp(560px, 88vh, 760px);
  }

  .hero-video {
    object-position: center 30%;
  }

  .hero-media::before {
    background: linear-gradient(to bottom, rgba(0, 3, 13, 0.8) 0%, rgba(0, 3, 13, 0.2) 26%, rgba(0, 3, 13, 0.15) 55%, rgba(0, 3, 13, 0.88) 100%);
  }

  .hero-copy {
    min-height: clamp(560px, 88vh, 760px);
    padding: 36px 20px 40px;
    gap: 34px;
  }

  .hero-top {
    max-width: 100%;
  }

  .hero-bottom {
    align-self: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-sub {
    font-size: 0.85rem;
    margin-bottom: 22px;
  }

  .hero-actions .btn,
  .hero-actions .main-button {
    padding: 15px 28px;
    font-size: 0.88rem;
  }

  .hero-deco-cn {
    font-size: 1rem;
  }
}

/* ==========================================================================
   MARQUEE — usa .marquee/.marquee-track de base.css (posicionado após o hero)
   ========================================================================== */

/* ==========================================================================
   CATEGORIAS — carrossel arrastável
   ========================================================================== */

.categorias-section {
  padding: 130px 0;
  border-bottom: 1px solid var(--line);
  background: #09090e;
}

.cat-carousel {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 6px 4px 20px;
  margin: 0 -4px;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}

.cat-carousel::-webkit-scrollbar {
  display: none;
}

.cat-carousel.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.cat-card {
  position: relative;
  flex: 0 0 320px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  display: block;
}

.cat-card img,
.cat-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.cat-card:hover img,
.cat-card:hover video {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .categorias-section {
    padding: 70px 0;
  }

  .cat-card {
    flex-basis: 220px;
  }
}

/* ==========================================================================
   PASSO A PASSO — cards clicáveis (destino a definir)
   ========================================================================== */

.passos-section {
  padding: 130px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}

.passos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.passo-card {
  position: relative;
  display: block;
  background: var(--black-soft);
  padding: 40px 34px 76px;
  text-decoration: none;
  color: var(--off-white);
  border-left: 3px solid var(--accent);
  transition: background 0.15s ease;
}

.passo-card:hover {
  background: var(--panel);
}

.passo-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--off-white);
}

.passo-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.passo-icon i {
  color: var(--black);
  font-size: 1.3rem;
}

.passo-icon img {
  width: 28px;
  height: auto;
}

.passo-card h3 {
  font-size: 1.55rem;
  margin: 28px 0 14px;
}

.passo-card p {
  color: var(--off-white-dim);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 340px;
}

.passo-arrow {
  position: absolute;
  right: 30px;
  bottom: 28px;
  color: var(--off-white-dim);
  font-size: 1.3rem;
  transition: transform 0.15s ease, color 0.15s ease;
}

.passo-arrow i {
  display: inline-block;
  transform: rotate(-45deg);
}

.passo-card:hover .passo-arrow {
  color: var(--accent);
}

.passo-card:hover .passo-arrow i {
  transform: rotate(-45deg) translate(3px, -3px);
}

@media (max-width: 860px) {
  .passos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .passos-section {
    padding: 70px 0;
  }
}

/* ==========================================================================
   SOBRE MIM + REDES
   ========================================================================== */

.sobre-section {
  padding: 130px 0;
  border-bottom: 1px solid var(--line);
  background-color: #09090E;
}

.sobre-flex {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}

.sobre-image {
  position: relative;
  border: 1px solid var(--line);
}

.sobre-photo-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.sobre-tag {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 7px 14px;
}

.sobre-text .description {
  color: var(--off-white-dim);
  margin-bottom: 32px;
  line-height: 1.8;
  font-size: 1.22rem;
  max-width: 700px;
}

.sobre-socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 620px;
}

.sobre-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  text-decoration: none;
  color: var(--off-white);
  padding: 32px 26px;
  background: var(--black-soft);
  transition: background 0.15s ease;
}

.sobre-social i {
  font-size: 1.9rem;
  color: var(--accent);
}

.sobre-social span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sobre-social:hover {
  background: var(--panel);
}

.sobre-social:hover i {
  color: var(--off-white);
}

@media (max-width: 860px) {
  .sobre-flex {
    grid-template-columns: 1fr;
  }

  .sobre-image {
    max-width: 260px;
  }

  .sobre-socials {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .sobre-section {
    padding: 70px 0;
  }

  .sobre-text .description {
    font-size: 1.05rem;
  }
}

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

.faq-section {
  padding: 130px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-item {
  background: var(--black-soft);
  padding: 0 30px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-q-mark {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question {
  flex: 1 1 auto;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--off-white);
}

.faq-chevron {
  color: var(--off-white-dim);
  font-size: 1.2rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  color: var(--off-white-dim);
  font-size: 1.08rem;
  line-height: 1.7;
  padding: 0 0 32px 56px;
}

.faq-item-cta .faq-answer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 32px 56px;
}

.faq-item-cta .faq-answer-row .faq-answer {
  padding: 0;
  flex: 1 1 300px;
}

.faq-item-cta .main-button {
  padding: 17px 30px;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-item {
    padding: 0 18px;
  }

  .faq-question {
    font-size: 1.08rem;
  }

  .faq-answer,
  .faq-item-cta .faq-answer-row {
    padding-left: 0;
  }
}

/* ==========================================================================
   FOOTER — nota extra abaixo do footer padrão de base.css
   ========================================================================== */

.footer-note {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.85;
}
