:root {
  --bg: #f5f7ff;
  --bg-card: #ffffff;
  --bg-soft: #eef2ff;
  --bg-dark: #0d1020;
  --text: #14162b;
  --text-muted: #586079;
  --btn-bg: #6c5ce7;
  --btn-hover: #5a4bd1;
  --border: #dfe3ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', -apple-system, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, #dfe4ff 0%, transparent 55%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.landing {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--text);
  text-decoration: none;
}

.logo-wordmark {
  height: 24px;
  max-width: 120px;
  width: auto;
  display: block;
}

.logo:hover {
  color: var(--text);
}

.nav-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #6c5ce7 0%, #00c2ff 100%);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #5a4bd1 0%, #00a9e0 100%);
  color: white;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-auth .hidden {
  display: none !important;
}

.nav-logged {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Botão hambúrguer */
.hamburger-btn {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: 0.2s ease;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay hambúrguer */
.landing-hamburger-overlay {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.landing-hamburger-overlay.open {
  opacity: 1;
  visibility: visible;
}

.landing-hamburger-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: var(--bg-card);
  box-shadow: -4px 0 24px rgba(0,0,0,0.08);
  z-index: 1501;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-hamburger-overlay.open .landing-hamburger-panel {
  transform: translateX(0);
}

.landing-hamburger-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s;
}

.landing-hamburger-panel a:hover {
  background: var(--bg-soft);
}

.landing-hamburger-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin: -8px -8px 8px -8px;
  border-radius: 8px;
  background: var(--bg-soft);
}

.landing-hamburger-avatar-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--btn-bg);
}

.landing-hamburger-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hamburger-avatar-wrap .landing-hamburger-avatar {
  display: none;
}

.landing-hamburger-avatar-wrap.has-img .landing-hamburger-avatar {
  display: block;
}

.landing-hamburger-avatar-wrap.has-img .landing-hamburger-initial {
  display: none;
}

.landing-hamburger-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.landing-hamburger-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.landing-hamburger-user-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-hamburger-badge {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.9;
}

.landing-hamburger-logout {
  margin-left: auto;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.landing-hamburger-logout:hover {
  color: var(--text);
  border-color: var(--text-muted);
  background: var(--bg-soft);
}

.nav-logout {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, border-color 0.2s;
}

.nav-logout:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

/* Hero */
.hero {
  text-align: center;
  padding: 32px 0 28px;
}

.hero-videos {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-video-card {
  flex: 1;
  min-width: 160px;
  max-width: 280px;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(108, 92, 231, 0.12);
  color: #4f46b6;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge-small {
  padding: 3px 8px;
  font-size: 0.65rem;
  margin-bottom: 12px;
}

.hero-compact {
  padding: 20px 24px 20px;
}

.hero-compact h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  margin-bottom: 12px;
}

.hero-compact p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.hero-compact .cta {
  padding: 12px 24px;
  font-size: 0.95rem;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero h1 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.08em;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.hero .hero-perfeito {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.hero .hero-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 380px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
}

.hero .hero-list li {
  font-size: 1rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 0;
}

.hero .hero-fast {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

.hero .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6c5ce7 0%, #00c2ff 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.hero .cta:hover {
  background: linear-gradient(135deg, #5a4bd1 0%, #00a9e0 100%);
  transform: translateY(-1px);
  color: white;
}

/* Carousel */
.carousel-section {
  padding: 8px 0 32px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.carousel-section-compact {
  padding-top: 0;
  padding-bottom: 32px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
}

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

.carousel-track {
  display: flex;
  gap: 12px;
  padding: 0 24px 0 0;
  width: max-content;
}

@media (min-width: 769px) {
  .carousel {
    display: flex;
    justify-content: center;
  }
  .carousel-track {
    padding: 0 24px;
  }
}

.video-card {
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  position: relative;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  pointer-events: auto;
}

/* Mobile: 2.5 cards visíveis para indicar continuidade (landing padding 24px*2 + 2 gaps 12px*2) */
@media (max-width: 639px) {
  .carousel-section .video-card {
    width: calc((100vw - 48px - 24px) / 2.5);
    min-width: 110px;
  }
}

@media (min-width: 640px) {
  .video-card {
    width: 180px;
  }
}

.mute-btn {
  z-index: 2;
}

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

.video-card .video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: rgba(255,255,255,0.5);
}

.video-card .video-placeholder span {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 8px;
}

.video-card .video-placeholder small {
  font-size: 0.8rem;
}

.mute-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.mute-btn:hover {
  opacity: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  z-index: 1;
  transition: all 0.2s;
}

.carousel-nav:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.carousel-nav.left {
  left: 12px;
}

.carousel-nav.right {
  right: 12px;
}

@media (max-width: 768px) {
  .carousel-nav {
    display: none;
  }
}

/* Social proof */
.social-proof {
  background: linear-gradient(135deg, #0d1020 0%, #1b2250 60%, #223b80 100%);
  color: white;
  padding: 48px 24px;
  text-align: center;
}

.social-proof p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

/* Integrations strip */
.integrations-strip {
  position: relative;
  padding: 32px 0;
  overflow: hidden;
  background: #eef2ff;
}

.integrations-wrap {
  overflow: hidden;
}

.integrations-track {
  display: flex;
  gap: 48px;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.integrations-track span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.integrations-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(90deg, #eef2ff, transparent);
  pointer-events: none;
}

.integrations-gradient.is-right {
  right: 0;
  left: auto;
  background: linear-gradient(270deg, #eef2ff, transparent);
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Value props - social proof acima das features */
.value-props {
  padding: 48px 24px 56px;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.value-props-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 64px;
  max-width: 800px;
  margin: 0 auto;
}

.value-stat {
  text-align: center;
}

.value-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.value-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Features section - conversion focused */
.features-section {
  padding: 48px 0 64px;
}

.features-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.features-intro h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.features-intro h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.features-intro p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  border-color: #ddd;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.feature-card:last-child {
  margin-bottom: 0;
}

.feature-card.feature-card-reverse {
  direction: rtl;
}

.feature-card.feature-card-reverse > * {
  direction: ltr;
}

.feature-card.feature-card-center {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 40px 48px;
}

.feature-card-body {
  padding: 0;
}

.feature-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #f0f0f0;
  color: var(--text-muted);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--btn-bg);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.feature-cta:hover {
  color: var(--text);
  gap: 10px;
}

.feature-card-list {
  margin: 0 0 20px;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.feature-card-media {
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 9/16;
  max-height: 320px;
}

.feature-card-media:has(video) {
  cursor: pointer;
}

.feature-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .value-props-inner {
    gap: 32px;
  }
  .value-stat-num {
    font-size: 1.25rem;
  }
  .feature-card,
  .feature-card.feature-card-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    padding: 32px 24px;
  }
  .feature-card-media {
    max-height: 260px;
  }
  .feature-card.feature-card-center {
    padding: 32px 24px;
  }
}

/* FAQ section */
.faq-section {
  padding: 48px 0 64px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-title {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.faq-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 32px;
  line-height: 1.5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:hover {
  border-color: #ddd;
}

.faq-item[open] {
  border-color: var(--btn-bg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 18px 20px;
  padding-right: 44px;
  position: relative;
  list-style: none;
  transition: background 0.2s;
}

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

.faq-item summary::after {
  content: '›';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(-90deg);
}

.faq-item summary:hover {
  background: var(--bg-soft);
}

.faq-content {
  padding: 0 20px 18px;
}

.faq-content p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

.faq-content ul {
  margin: 0 0 12px;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-content ul:last-child {
  margin-bottom: 0;
}

/* Spotlight section — cards escuros estilo referência */
.spotlight-section {
  padding: 64px 0 80px;
}

.spotlight-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 40px;
  letter-spacing: -0.02em;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.spotlight-card {
  background: linear-gradient(135deg, #171b3d 0%, #273273 55%, #2d57a8 100%);
  border-radius: 20px;
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.spotlight-media {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  margin-bottom: 12px;
}

.spotlight-media video,
.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-media-images {
  display: flex;
  gap: 8px;
}

.spotlight-media-images video,
.spotlight-media-images img {
  flex: 1;
  min-width: 0;
}

.spotlight-media-three {
  display: flex;
  gap: 6px;
}

.spotlight-media-three video,
.spotlight-media-three img {
  flex: 1;
  min-width: 0;
}

.spotlight-caption {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 8px;
}

.spotlight-flags {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.spotlight-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 16px;
}

.spotlight-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.2s;
}

.spotlight-dots span.active {
  background: rgba(255,255,255,0.9);
}

.spotlight-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px;
  color: white;
}

.spotlight-card h3 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.spotlight-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0 0 20px;
  flex: 1;
}

.spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}

.spotlight-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

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

@media (max-width: 768px) {
  .spotlight-section {
    padding: 48px 0 64px;
  }
  .spotlight-card {
    padding: 20px;
  }
  .spotlight-media {
    max-height: 240px;
  }
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #10152f 0%, #262f6f 60%, #3f60bf 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}

.cta-inner h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 32px;
}

.cta-trust {
  margin-top: 20px !important;
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.6) !important;
}

.cta-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  background: white;
  color: #1a1f45;
  text-decoration: none;
  border-radius: 12px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-large:hover {
  background: #e7ecff;
  color: #1a1f45;
}

/* Footer */
footer {
  padding: 48px 24px 32px;
  background: #edf1ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 12px;
  line-height: 1.5;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Modal Vídeo */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: auto;
  transition: opacity 0.2s;
}

.video-modal.hidden {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  max-width: 280px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-modal-close:hover {
  background: rgba(0,0,0,0.8);
}

.video-modal-player {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.video-modal-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.video-modal-actions {
  padding: 16px;
  background: #1a1a1c;
}

.video-modal-desc {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.video-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-modal-btn {
  display: block;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.video-modal-btn-primary {
  background: #fff;
  color: #111;
}

.video-modal-btn-primary:hover {
  background: #f0f0f0;
  color: #111;
}

.video-modal-btn:not(.video-modal-btn-primary) {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.video-modal-btn:not(.video-modal-btn-primary):hover {
  background: rgba(255,255,255,0.25);
}
