/* === BLOCO: COMUM === */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

:root {
  --color-primary:        #DC2626;
  --color-primary-hover:  #B91C1C;
  --color-primary-soft:   rgba(220, 38, 38, 0.10);
  --color-ink:            #111827;
  --color-ink-soft:       #1F2937;
  --color-text:           #111827;
  --color-text-muted:     #4B5563;
  --color-text-subtle:    #6B7280;
  --color-bg:             #FFFFFF;
  --color-bg-alt:         #F9FAFB;
  --color-bg-soft:        #F3F4F6;
  --color-border:         #E5E7EB;
  --color-border-strong:  #D1D5DB;
  --color-success:        #10B981;

  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  48px;
  --space-2xl: 96px;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, .06);
  --shadow-md: 0 6px 18px rgba(17, 24, 39, .08);
  --shadow-lg: 0 18px 40px rgba(17, 24, 39, .12);
  --shadow-xl: 0 28px 70px rgba(17, 24, 39, .18);
  --shadow-red: 0 14px 32px rgba(220, 38, 38, .28);

  --transition-fast: .15s ease;
  --transition-base: .25s ease;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 77px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.6em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  margin: 0 0 var(--space-md);
  line-height: 1.2em;
  font-weight: 700;
  text-wrap: balance;
}

p {
  margin: 0 0 var(--space-md);
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  transition: top var(--transition-fast);
  font-weight: 600;
}
.skip-link:focus { top: 8px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.section {
  width: 100%;
  position: relative;
}

.content-wrapper {
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 1472px) {
  .section         { padding: 96px 0; }
  .content-wrapper { width: 1280px; }
}

@media (min-width: 1025px) and (max-width: 1471px) {
  .section         { padding: 96px 0; }
  .content-wrapper { width: 961px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .section         { padding: 72px 0; }
  .content-wrapper { width: 656px; }
}

@media (min-width: 320px) and (max-width: 767px) {
  .section { padding: 56px 0; }
  .content-wrapper {
    max-width: 359px;
    width: 100%;
    padding: 0 8px;
  }
}

/* Section header / labels reutilizáveis */
.section-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 720px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-primary);
  background: var(--color-primary-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.section-label--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2em;
  cursor: pointer;
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast);
  text-decoration: none;
  border: 2px solid transparent;
  user-select: none;
  white-space: nowrap;
}

.btn--pill { border-radius: var(--radius-pill); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 17px; }

.btn i { width: 18px; height: 18px; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-border-strong);
}
.btn-outline:hover {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
  transform: translateY(-2px);
}

.btn[disabled],
.btn.is-disabled {
  opacity: .55;
  pointer-events: none;
}

/* Logo (header + footer) */
.logo {
  display: inline-flex;
  align-items: center;
}

.logo__img {
  height: 32px;
  width: auto;
  display: block;
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="header" === */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
}

main {
  padding-top: 76px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav__list a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.main-nav__list a:hover {
  color: var(--color-ink);
}

.header__cta {
  padding: 12px 22px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-base), opacity var(--transition-base);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 16px;
  }

  .main-nav__list a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .header__cta {
    width: 100%;
    padding: 14px 22px;
  }
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="hero" === */

.hero {
  padding-top: 80px;
  padding-bottom: 96px;
  overflow: visible;
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(220, 38, 38, 0.10), transparent 55%),
    radial-gradient(circle at 0% 60%, rgba(17, 24, 39, 0.04), transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
  z-index: -1;
}

.hero__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: center;
}

.hero__media {
  position: relative;
}

.hero__image {
  width: 115%;
  max-width: none;
  margin-left: -7%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.18);
  animation: hero-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0.04); }
}

.hero__title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

@media (min-width: 1025px) and (max-width: 1471px) {
  .hero__title { font-size: 36px; }
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.6em;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 420px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__perks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.hero__perks i {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.hero__media {
  position: relative;
}

.hero__media-frame {
  position: relative;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

.hero__media-glow {
  position: absolute;
  inset: -40px -40px -20px -40px;
  background: radial-gradient(closest-side, rgba(220, 38, 38, 0.18), transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

/* VSL — player no hero */
.vsl {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.vsl__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* Camada de play sobre o poster — some assim que o vídeo começa */
.vsl__play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.10) 0%, rgba(17, 24, 39, 0.45) 100%);
  color: #fff;
  cursor: pointer;
  transition: opacity var(--transition-base);
}

.vsl.is-playing .vsl__play {
  opacity: 0;
  pointer-events: none;
}

.vsl__play-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.vsl__play-icon i {
  width: 30px;
  height: 30px;
  fill: currentColor;
  margin-left: 4px;
}

.vsl__play:hover .vsl__play-icon {
  transform: scale(1.06);
  background: var(--color-primary-hover);
}

.vsl__play-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

@media (max-width: 767px) {
  .vsl { border-radius: 12px; }
  .vsl__play-icon { width: 60px; height: 60px; }
  .vsl__play-icon i { width: 24px; height: 24px; }
  .vsl__play-label { font-size: 14px; }
}

@media (max-width: 1024px) {
  .hero {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .hero__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__image {
    width: 100%;
    margin-left: 0;
  }

  .hero__media {
    order: -1;
  }

  .hero__eyebrow,
  .hero__perks,
  .hero__actions {
    justify-content: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .hero__wrapper {
    gap: 20px;
  }

  .hero__eyebrow {
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: 24px;
    line-height: 1.4em;
    margin-bottom: 4px;
  }

  .hero__subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

}

/* === FIM BLOCO === */





/* === BLOCO: SECTION id="funcionalidades" === */

.funcionalidades {
  background: var(--color-bg);
}

.funcionalidades__title {
  font-size: 44px;
  letter-spacing: -0.01em;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__media {
  overflow: hidden;
  line-height: 0;
}

.feature-card__media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-base);
}

.feature-card:hover .feature-card__media img {
  transform: scale(1.02);
}

.feature-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card__icon i { width: 22px; height: 22px; }

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  text-wrap: normal;
}

.feature-card__text {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6em;
}

@media (max-width: 1024px) {
  .funcionalidades__grid { grid-template-columns: repeat(2, 1fr); }
  .funcionalidades__title { font-size: 36px; }
}

@media (max-width: 767px) {
  .funcionalidades__grid { grid-template-columns: 1fr; gap: 20px; }
  .funcionalidades__title { font-size: 26px; }
  .feature-card__body { padding: 22px; }
  .feature-card { border-radius: 8px; }
}

/* === FIM BLOCO === */



/* === BLOCO: SECTION id="diferencial" === */

.diferencial {
  background: var(--color-ink);
  color: #fff;
  position: relative;
  overflow: visible;
}

.diferencial__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.22), transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(16, 185, 129, 0.08), transparent 45%);
  pointer-events: none;
}

.diferencial__wrapper {
  position: relative;
}

.diferencial__header {
  text-align: center;
  margin-bottom: 48px;
}

.diferencial__title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Comparativo Sem x Com */
.comparativo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  align-items: stretch;
}

.comparativo__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 4px;
}

.comparativo__head--sem {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.78);
}

.comparativo__head--com {
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.45);
}

.comparativo__head-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparativo__head--sem .comparativo__head-icon {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.7);
}

.comparativo__head--com .comparativo__head-icon {
  background: var(--color-success);
  color: #fff;
}

.comparativo__head-icon i { width: 16px; height: 16px; }

.comparativo__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 16px;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.comparativo__item--sem {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.comparativo__item--com {
  background:
    linear-gradient(160deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.03) 60%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.comparativo__item--com:hover {
  border-color: rgba(16, 185, 129, 0.55);
  transform: translateY(-3px);
}

.comparativo__item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5em;
}

.comparativo__item--sem p { color: rgba(255, 255, 255, 0.62); }
.comparativo__item--com p { color: #fff; font-weight: 500; }

.comparativo__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.comparativo__item--sem .comparativo__icon {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}

.comparativo__item--com .comparativo__icon {
  background: var(--color-success);
  color: #fff;
}

.comparativo__icon i { width: 16px; height: 16px; }

.comparativo__label { display: none; }

@media (min-width: 1025px) and (max-width: 1471px) {
  .comparativo__item { padding: 18px 20px; }
  .comparativo__item p { font-size: 15px; }
  .diferencial__title { font-size: 34px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .comparativo { gap: 12px 16px; }
  .comparativo__item { padding: 18px; }
  .comparativo__item p { font-size: 15px; }
  .comparativo__head { font-size: 17px; padding: 12px 16px; }
  .diferencial__title { font-size: 30px; }
}

@media (max-width: 767px) {
  .diferencial__header { margin-bottom: 32px; }
  .diferencial__title { font-size: 26px; }

  .comparativo {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comparativo__head { display: none; }

  .comparativo__item {
    padding: 16px 18px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .comparativo__item p { font-size: 14px; flex: 1; min-width: 0; }

  .comparativo__item--sem {
    border-radius: 14px 14px 0 0;
    border-bottom: none;
    margin-top: 12px;
  }

  .comparativo__item--com {
    border-radius: 0 0 14px 14px;
    margin-bottom: 4px;
  }

  .comparativo__item:first-child { margin-top: 0; }

  .comparativo__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    width: 100%;
    margin-bottom: 2px;
  }

  .comparativo__item--sem .comparativo__label { color: rgba(255, 255, 255, 0.45); }
  .comparativo__item--com .comparativo__label { color: var(--color-success); }

  .comparativo__icon { width: 24px; height: 24px; }
  .comparativo__icon i { width: 14px; height: 14px; }
}

/* === FIM BLOCO === */



/* === BLOCO: SECTION id="precos" === */

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

.precos__title {
  font-size: 44px;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  border: 2px solid var(--color-primary);
  background: linear-gradient(180deg, #fff 0%, rgba(220, 38, 38, 0.04) 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.price-card--featured:hover {
  transform: translateY(-12px);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-red);
}

.price-card__header {
  margin-bottom: 24px;
}

.price-card__plan {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.price-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5em;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px dashed var(--color-border);
}

.price-card__currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.price-card__amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  font-family: var(--font-heading);
}

.price-card__period {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.price-card .btn {
  margin-bottom: 0;
  white-space: normal;
  text-align: center;
}

.price-card__features {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.45em;
}

.price-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-card__check i {
  width: 11px;
  height: 11px;
  stroke-width: 3;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
  .precos__title { font-size: 32px; }
}

@media (max-width: 767px) {
  .precos__title { font-size: 26px; }
  .price-card { padding: 28px 22px; }
  .price-card__amount { font-size: 36px; }
}

/* === FIM BLOCO === */





/* === BLOCO: SECTION id="faq" === */

.faq {
  background: var(--color-bg);
}

.faq__title {
  font-size: 40px;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.faq__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item.is-open,
.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-item.is-open {
  box-shadow: var(--shadow-md);
}

.faq-item__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.4em;
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.faq-item__icon i { width: 18px; height: 18px; }

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  background: var(--color-primary);
  color: #fff;
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-base);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__panel p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.65em;
  color: var(--color-text-muted);
}

.faq__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .faq__title { font-size: 32px; }
}

@media (max-width: 767px) {
  .faq__title { font-size: 26px; }
  .faq-item { border-radius: 12px; }
  .faq-item__trigger { padding: 18px 18px; gap: 14px; }
  .faq-item__question { font-size: 15px; }
  .faq-item__panel p { padding: 0 18px 20px; font-size: 14px; }
  .faq__cta { margin-top: 32px; }
  .faq__cta .btn { width: 100%; }
}

/* === FIM BLOCO === */


/* === BLOCO: SECTION id="footer" === */

.footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 64px;
}

.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}

.logo--footer {
  color: #fff;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6em;
}

.footer__social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.footer__social-list a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.footer__social-list a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer__bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .footer { padding-top: 48px; }
  .footer__wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .footer__brand { align-items: center; }
  .footer__tagline { margin: 0 auto; }
  .logo--footer { justify-content: center; }

  .footer__bottom-wrapper {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* === FIM BLOCO === */


