/* ==========================================================================
   Content Club — Landing Page de Orçamento
   ========================================================================== */

:root {
  --gradient: linear-gradient(90deg, #3B1FE8, #8B1FCC, #D91F8C, #F55A1F, #F5A623);
  --gradient-diag: linear-gradient(135deg, #3B1FE8, #8B1FCC, #D91F8C, #F55A1F, #F5A623);

  --bg-dark: #0A0A0A;
  --bg-mid: #111111;
  --bg-card-dark: #1A1A1A;
  --border-dark: #2A2A2A;
  --bg-light: #FFFFFF;
  --bg-alt: #F5F5F5;
  --border-light: #E5E5E5;

  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #CCCCCC;
  --text-on-dark-soft: #999999;
  --text-on-dark-faint: #555555;
  --text-on-light: #0A0A0A;
  --text-on-light-muted: #666666;

  --font: 'Plus Jakarta Sans', Inter, -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 72px;
  --radius-card: 12px;
  --radius-btn: 8px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-light);
  color: var(--text-on-light);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- layout helpers ---------- */

.section {
  padding: clamp(56px, 9vw, 96px) clamp(20px, 6vw, 56px);
}

.section--dark {
  background: var(--bg-mid);
}

.section--light {
  background: var(--bg-light);
}

.section--alt {
  background: var(--bg-alt);
}

.section__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section__title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-on-light);
}

.section__title--light {
  color: var(--text-on-dark);
}

.section__subtitle {
  text-align: center;
  color: var(--text-on-light-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 40px;
}

.section__subtitle--dark {
  color: var(--text-on-dark-soft);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--2 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 720px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .grid--gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- reveal-on-scroll ---------- */

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .js-disabled .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  transition: box-shadow .25s var(--ease);
}

.nav.is-scrolled {
  box-shadow: 0 1px 0 var(--border-dark);
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 clamp(20px, 6vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.2px;
}

.nav__logo {
  width: 32px;
  height: auto;
  object-fit: contain;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), filter .18s var(--ease), box-shadow .18s var(--ease);
}

.btn--gradient {
  background: var(--gradient);
  background-size: 140% 100%;
  background-position: 0% 0%;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
}

.btn--gradient:hover,
.btn--gradient:focus-visible {
  background-position: 100% 0%;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 31, 204, .28);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
}

.btn--outline {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  color: var(--text-on-dark);
  padding: 12px 20px;
  font-size: 14px;
  width: 100%;
  text-align: center;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: #D91F8C;
}

.btn:focus-visible {
  outline: 2px solid #D91F8C;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}

.hero__bg-slide.is-active {
  opacity: 1;
}

.hero__bg-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 10, 10, .92) 0%, rgba(10, 10, 10, .84) 45%, rgba(10, 10, 10, .72) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-slide { transition: none; }
}

.hero__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 1;
  background: linear-gradient(180deg, #3B1FE8, #8B1FCC, #D91F8C, #F55A1F, #F5A623);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 8vw, 96px) clamp(20px, 6vw, 72px);
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.05fr .95fr;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--bg-card-dark);
  color: var(--text-on-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-diag);
}

.hero__title {
  color: var(--text-on-dark);
  font-size: clamp(28px, 4.6vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  text-transform: uppercase;
}

.hero__lede {
  margin-top: 20px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__lede p {
  color: var(--text-on-dark-muted);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.55;
  margin: 0;
}

.hero__content .btn {
  margin-top: 32px;
}

.chips {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 100px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  color: var(--text-on-dark);
  font-size: 12.5px;
  font-weight: 600;
}

.chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-diag);
}

.chip__tri {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 7px solid #F55A1F;
}

.chip__diamond {
  width: 7px;
  height: 7px;
  background: var(--gradient-diag);
  transform: rotate(45deg);
}

/* ---------- gallery photos ---------- */

.gallery-tile {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--bg-mid);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s var(--ease);
}

.gallery-tile:hover img {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-tile img { transition: none; }
}

.play-badge {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-diag);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-badge::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;
  margin-left: 3px;
}

/* ---------- cards ---------- */

.card {
  border-radius: var(--radius-card);
  padding: 28px;
}

.card--dark {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  color: var(--text-on-dark);
  transition: border-color .2s var(--ease);
}

.card--dark:hover {
  border-color: #D91F8C;
}

.card--dark h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}

.card--dark p {
  color: var(--text-on-dark-soft);
  font-size: 15px;
  line-height: 1.6;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-diag);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-dark);
}

.card__icon-diamond {
  width: 14px;
  height: 14px;
  background: var(--bg-dark);
  transform: rotate(45deg);
}

.card__icon-tri {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--bg-dark);
}

.card--package {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card--package p {
  flex: 1;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ---------- feature list (what you find) ---------- */

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: border-color .2s var(--ease);
}

.feature:hover {
  border-color: #D91F8C;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-on-light-muted);
  font-size: 15px;
  line-height: 1.6;
}

.feature__icon {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 10px;
  background: var(--gradient-diag);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon-square {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #fff;
}

.feature__icon-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
}

.feature__icon-diamond {
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
}

.feature__icon-tri {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #fff;
}

/* ---------- quote / testimonial fallback ---------- */

.quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

.quote__mark {
  display: block;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  background: var(--gradient-diag);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.quote p {
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.6;
  color: var(--text-on-light);
  font-weight: 600;
}

/* ---------- testimonial video cards ---------- */

.grid--testimonials {
  grid-template-columns: 1fr;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .grid--testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .grid--testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-card);
  padding: 20px;
  text-align: left;
}

.testimonial-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #ececec;
}

.testimonial-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}

.testimonial-card__media .play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}

.testimonial-card__media:hover .play-badge {
  transform: scale(1.06);
}

.testimonial-card__media.is-playing .play-badge {
  opacity: 0;
  pointer-events: none;
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-on-light);
  margin: 14px 0 0;
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--text-on-light-muted);
  margin: 2px 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card__media .play-badge { transition: none; }
}

/* ---------- form section ---------- */

.hero__form-wrap {
  position: relative;
}

.hero__form-card {
  position: relative;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
}

.hero__form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-diag);
  opacity: .08;
  pointer-events: none;
}

.hero__form-title {
  position: relative;
  color: var(--text-on-dark);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
}

.hero__form-subtitle {
  position: relative;
  color: var(--text-on-dark-muted);
  font-size: 15px;
  margin-top: 8px;
}

.form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  color: var(--text-on-dark-muted);
  font-size: 13px;
  font-weight: 600;
}

.field__optional {
  font-weight: 400;
  color: var(--text-on-dark-soft);
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-btn);
  padding: 14px 16px;
  color: var(--text-on-dark);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .18s var(--ease);
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #666666;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: #D91F8C;
}

.field.has-error input,
.field.has-error select {
  border-color: #F55A1F;
}

.field__error {
  min-height: 16px;
  font-size: 12.5px;
  color: #FF8A5B;
}

.btn--block .btn__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  animation: spin .7s linear infinite;
}

.is-submitting .btn__label {
  opacity: .6;
}

.is-submitting .btn__spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .btn--block .btn__spinner { animation: none; }
}

.form__feedback {
  min-height: 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--text-on-dark-muted);
}

.form__feedback.is-success {
  color: #6FE3A6;
}

.form__feedback.is-error {
  color: #FF8A5B;
}

/* ---------- footer ---------- */

.footer {
  background: var(--bg-dark);
}

.footer__divider {
  height: 2px;
  background: var(--gradient);
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px clamp(20px, 6vw, 56px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nav__brand--footer {
  font-size: 14px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-soft);
  font-size: 10px;
  font-weight: 700;
  transition: border-color .18s var(--ease), color .18s var(--ease);
}

.footer__icon:hover,
.footer__icon:focus-visible {
  border-color: #D91F8C;
  color: #fff;
}

.footer__copy {
  color: var(--text-on-dark-faint);
  font-size: 13px;
  text-align: center;
  margin: 32px 0 0;
  padding: 0 20px 40px;
}

/* ---------- mobile fixed CTA bar ---------- */

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-dark);
  transform: translateY(0);
  transition: transform .25s var(--ease);
}

.mobile-cta.is-hidden {
  transform: translateY(100%);
}

@media (min-width: 900px) {
  .mobile-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-cta { transition: none; }
}
