@charset "UTF-8";
/* ════════════════════════════════════════════════════════════
   interacoes.css — Wilky Matos
   Vitrine de componentes interativos
════════════════════════════════════════════════════════════ */

/* ── Variáveis locais (complementam o style.css principal) ── */
:root {
  --int-card-bg:  #0d0d0d;
  --int-surface2: #141414;
  --int-green:    #00c97a;
}


/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.int-hero {
  text-align: center;
  padding: 100px 24px 72px;
  position: relative;
  overflow: hidden;
}

.int-hero::before {
  content: '';
  position: absolute;
  top: -140px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(185,28,28,.14) 0%, transparent 70%);
  pointer-events: none;
}

.int-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.int-hero__tag {
  display: inline-block;
  background: rgba(185,28,28,.12);
  border: 1px solid rgba(185,28,28,.3);
  color: var(--red-soft);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
}

.int-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0;
}

.int-hero__title .highlight { color: var(--red); }

.int-hero__sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 440px;
  margin: 0;
}


/* ════════════════════════════════════════════════════════════
   SHOWCASE GRID
════════════════════════════════════════════════════════════ */
.int-showcase {
  padding: 0 16px 80px;
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}


/* ════════════════════════════════════════════════════════════
   CARD BASE
════════════════════════════════════════════════════════════ */
.int-card {
  background: var(--int-card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: border-color .3s;
}

.int-card:hover { border-color: var(--border-red); }

.int-card__header {
  padding: 16px 22px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.int-card__label {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--red-soft);
  letter-spacing: .04em;
}

.int-card__badge {
  font-family: var(--font-mono);
  font-size: .65rem;
  background: rgba(185,28,28,.1);
  color: var(--red-soft);
  border: 1px solid rgba(185,28,28,.22);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .08em;
}

.int-card__body { padding: 22px; }


/* ════════════════════════════════════════════════════════════
   1. CARROSSEL
════════════════════════════════════════════════════════════ */

.carousel-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
}

.c-track {
  display: flex;
  width: 100%;
  transition: transform .55s cubic-bezier(.77,0,.175,1);
}

.c-slide {
  min-width: 100%;
  width: 100%;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.c-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;   /* ← substitui o height fixo */
  height: auto;
  object-fit: cover;
  display: block;
}

.c-slide-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  padding: 20px 16px 12px;
  font-size: .82rem; color: #fff;
}

.c-slide-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  margin-bottom: 2px;
}

.c-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.c-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s, width .3s;
  padding: 0;
}

.c-dot.active {
  background: var(--red);
  width: 20px;
  border-radius: 100px;
}

.c-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 5;
}

.c-nav:hover { background: var(--red); }
.c-nav--l { left: 8px; }
.c-nav--r { right: 8px; }


/* ════════════════════════════════════════════════════════════
   2. PLAYER DE VÍDEO
════════════════════════════════════════════════════════════ */
.video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  min-height: 200px; 
   width: 100%;
}

.video-cover {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a0a0a 0%, #0d0d0d 60%, #1a0505 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  cursor: pointer;
  transition: opacity .4s;
}

.video-cover::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(185,28,28,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(185,28,28,.10) 0%, transparent 50%);
  pointer-events: none;
}

.video-cover__info {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}

.video-cover__tag {
  font-family: var(--font-mono);
  font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 4px 12px; border-radius: 999px;
}

.video-cover__title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text); letter-spacing: -.01em;
}

.video-cover__sub {
  font-size: .72rem; color: var(--muted);
}

.play-ring {
  position: relative; z-index: 2;
  width: 72px; height: 72px;
  flex-shrink: 0; 
  border-radius: 50%;
  border: 1.5px solid rgba(185,28,28,.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, border-color .25s;
}

.play-ring::before {
  content: '';
  position: absolute; inset: 6px;
  border-radius: 50%;
  background: var(--red);
  transition: transform .25s;
}

.play-ring::after {
  content: '▶';
  position: relative; z-index: 2;
  font-size: 1.2rem; color: #fff;
  margin-left: 5px;
}

.video-cover:hover .play-ring {
  transform: scale(1.08);
  border-color: rgba(185,28,28,.9);
}

.video-cover:hover .play-ring::before {
  transform: scale(1.05);
}

.video-cover__hint {
  position: relative; z-index: 2;
  font-family: var(--font-mono);
  font-size: .6rem; color: var(--muted);
  letter-spacing: .06em;
}

.video-wrap video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: none; border: none;
}

.video-wrap video.visible { display: block; }
.video-cover.hidden { opacity: 0; pointer-events: none; }
@media (max-width: 480px) {
  .video-cover {
    gap: 10px;
  }

  .play-ring {
    width: 56px;
    height: 56px;
  }

  .play-ring::after {
    font-size: 1rem;
  }
}
/* ════════════════════════════════════════════════════════════
   3. GALERIA
════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-grid img {
  width: 100%; border-radius: 10px;
  object-fit: cover; cursor: zoom-in;
  transition: transform .3s, filter .3s;
  display: block;
}

.gallery-grid img:hover { transform: scale(1.04); filter: brightness(1.1); }
.gallery-grid img:nth-child(1) { grid-column: span 2; height: 160px; }
.gallery-grid img:nth-child(2) { height: 160px; }
.gallery-grid img:nth-child(3) { height: 120px; }
.gallery-grid img:nth-child(4) { height: 120px; }
.gallery-grid img:nth-child(5) { height: 120px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 12px; object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2rem;
  cursor: pointer; background: none; border: none;
  transition: color .2s;
}
.lightbox-close:hover { color: var(--red-soft); }


/* ════════════════════════════════════════════════════════════
   4. PLAYER DE ÁUDIO
════════════════════════════════════════════════════════════ */
.audio-player {
  background: linear-gradient(135deg, #111, #0d0d0d);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.audio-info {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 16px;
}

.audio-cover {
  width: 54px; height: 54px;
  border-radius: 10px; object-fit: cover;
  box-shadow: 0 4px 20px rgba(185,28,28,.35);
}

.audio-cover.spinning {
  animation: spin 4s linear infinite;
  border-radius: 50%;
}

@keyframes spin { to { transform: rotate(360deg); } }

.audio-title { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.audio-artist { font-size: .78rem; color: var(--muted); margin-top: 2px; }

.audio-controls {
  display: flex; align-items: center;
  gap: 10px; margin-bottom: 14px;
}

.audio-btn {
  background: none; border: none;
  color: var(--text); cursor: pointer;
  font-size: 1.1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}

.audio-btn:hover { background: rgba(255,255,255,.08); }

.audio-btn--play {
  background: var(--red);
  width: 44px; height: 44px;
  font-size: .95rem;
  box-shadow: 0 0 20px rgba(185,28,28,.45);
}

.audio-btn--play:hover { background: #a01515; }

.progress-bar {
  width: 100%; height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  cursor: pointer; position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 999px;
  width: 0%;
  transition: width .1s;
  position: relative;
}

.progress-thumb {
  position: absolute; right: -6px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%; background: #fff;
  box-shadow: 0 0 8px rgba(185,28,28,.7);
}

.audio-time {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .68rem; color: var(--muted);
  margin-top: 8px;
}


/* ════════════════════════════════════════════════════════════
   5. CONTADORES
════════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-item {
  background: rgba(185,28,28,.06);
  border: 1px solid rgba(185,28,28,.18);
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--text); line-height: 1;
}

.stat-suffix { color: var(--red); }

.stat-label {
  font-family: var(--font-mono);
  font-size: .68rem; color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase; letter-spacing: .06em;
}


/* ════════════════════════════════════════════════════════════
   6. DEPOIMENTOS
════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   6. DEPOIMENTOS
════════════════════════════════════════════════════════════ */
.testimonial-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.t-track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}

.t-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-card {
  background: rgba(185,28,28,.05);
  border: 1px solid rgba(185,28,28,.16);
  border-radius: 16px;
  padding: 22px;
  box-sizing: border-box;
  width: 100%;
}

.t-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 12px; }

.t-text {
  font-size: .9rem;
  color: rgba(240,240,240,.8);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border-red);
  flex-shrink: 0;
}

.t-name { font-family: var(--font-display); font-weight: 700; font-size: .88rem; }
.t-role { font-size: .75rem; color: var(--muted); }

.t-controls {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 14px;
}

.t-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: background .3s, width .3s;
  padding: 0;
}

.t-dot.active {
  background: var(--red);
  width: 20px;
  border-radius: 100px;
}

/* Mobile pequeno (até 380px) */
@media (max-width: 380px) {
  .testimonial-card { padding: 14px; }
  .t-text { font-size: .82rem; }
  .t-author { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   7. TABELA DE PREÇOS
════════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  /* FIX 1: espaço no topo para a tag "MAIS PEDIDO" aparecer */
  margin-top: 14px;
}

.price-card {
  border-radius: 16px; padding: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  position: relative;
  transition: transform .3s, border-color .3s;
}

.price-card:hover { transform: translateY(-4px); }

.price-card--popular {
  border-color: rgba(185,28,28,.45);
  background: rgba(185,28,28,.06);
  /* FIX 1: espaço interno para a tag não colidir com o conteúdo */
  padding-top: 28px;
}

/* FIX 1: o card de preços precisa de overflow visible para mostrar a tag */
#c7 { overflow: visible; }

.popular-tag {
  position: absolute; top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-family: var(--font-mono);
  font-size: .6rem; font-weight: 700;
  padding: 3px 12px; border-radius: 999px;
  letter-spacing: .1em; white-space: nowrap;
}

.price-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: .9rem;
  margin-bottom: 8px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900;
  color: var(--text);
}

.price-value span { font-size: .75rem; color: var(--muted); font-weight: 400; }

.price-features { margin: 12px 0; }

.price-features li {
  font-size: .78rem; color: rgba(240,240,240,.7);
  padding: 4px 0; list-style: none;
  display: flex; align-items: center; gap: 6px;
}

.price-features li::before {
  content: '✓';
  color: var(--int-green);
  font-weight: 700;
}

.price-btn {
  width: 100%; padding: 10px;
  border-radius: 10px; border: none;
  font-family: var(--font-display);
  font-weight: 700; font-size: .8rem;
  cursor: pointer;
  transition: filter .2s, transform .2s;
  background: rgba(185,28,28,.12);
  color: var(--red-soft);
  border: 1px solid rgba(185,28,28,.25);
}

.price-card--popular .price-btn {
  background: var(--red);
  color: #fff;
  border-color: transparent;
}

.price-btn:hover { filter: brightness(1.2); transform: scale(1.02); }


/* ════════════════════════════════════════════════════════════
   8. MAPA
════════════════════════════════════════════════════════════ */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  height: 200px;
}

.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(.4) invert(.9) hue-rotate(180deg);
}


/* ════════════════════════════════════════════════════════════
   9. FILTRO
════════════════════════════════════════════════════════════ */
.filter-btns {
  display: flex; flex-wrap: wrap;
  gap: 8px; margin-bottom: 16px;
}

.filter-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 700;
  padding: 7px 16px; border-radius: 999px;
  cursor: pointer; transition: all .2s;
  letter-spacing: .06em;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.filter-item {
  border-radius: 12px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform .3s;
}

.filter-item:hover { transform: scale(1.03); }

.filter-item img {
  width: 100%; height: 100px;
  object-fit: cover; display: block;
}

.filter-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  padding: 12px 10px 8px;
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 600;
  color: #fff;
}


/* ════════════════════════════════════════════════════════════
   10. FORMULÁRIO
════════════════════════════════════════════════════════════ */
.form-group {
  margin-bottom: 14px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red-soft);
  box-shadow: 0 0 0 3px rgba(185,28,28,.12);
}

.form-group label {
  position: absolute; left: 16px; top: 14px;
  color: var(--muted); font-size: .85rem;
  pointer-events: none;
  transition: all .2s;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -9px; font-size: .7rem;
  background: var(--int-card-bg);
  padding: 0 6px; color: var(--red-soft);
  border-radius: 4px;
}

.form-submit {
  width: 100%; padding: 14px;
  background: var(--red); color: #fff;
  border: none; border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700; font-size: .9rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 24px rgba(185,28,28,.35);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(185,28,28,.55);
}


/* ════════════════════════════════════════════════════════════
   11. SKELETON
════════════════════════════════════════════════════════════ */
.skeleton-list { display: flex; flex-direction: column; gap: 12px; }
.skeleton-item { display: flex; gap: 12px; align-items: center; }

.sk {
  background: linear-gradient(90deg, #141414 25%, #1e1e1e 50%, #141414 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.sk-avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }
.sk-lines { flex: 1; }
.sk-line { height: 10px; margin-bottom: 8px; border-radius: 6px; }
.sk-line--short { width: 60%; }


/* ════════════════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════════════════ */
.int-cta {
  max-width: 860px;
  margin: 0 16px 60px;
  padding: 48px 32px;
  background: rgba(185,28,28,.06);
  border: 1px solid rgba(185,28,28,.2);
  border-radius: 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

@media (min-width: 900px) {
  .int-cta { margin: 0 auto 60px; }
}

.int-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.int-cta__sub {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: .92rem;
  line-height: 1.6;
}

.int-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700; font-size: .92rem;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(37,211,102,.35);
}

.int-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(37,211,102,.55);
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVO
════════════════════════════════════════════════════════════ */

/* FIX 3: telas médias (entre 481px e 640px) também usam 1 coluna no pricing */
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .int-hero { padding: 80px 20px 56px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img:nth-child(1) { grid-column: span 2; }
  .int-cta { margin: 0 12px 48px; padding: 36px 20px; }
}