/* =========================================================
   Lash Designer Pro · Landing Page
   Paleta extraída do app (lib/src/core/theme.dart)
   ========================================================= */

:root {
  --primary: #e84a7b;
  --primary-dark: #d13b6b;
  --primary-soft: #fff0f5;
  --accent: #f39ab4;
  --text: #1a1a1a;
  --subtext: #555555;
  --bg: #fafafa;
  --white: #ffffff;
  --border: #eeeeee;
  --border-strong: #dddddd;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(232, 74, 123, 0.08);
  --shadow-lg: 0 20px 50px rgba(232, 74, 123, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1200px;
  --transition: 0.25s ease;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--primary-soft);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(232, 74, 123, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.section-head p {
  color: var(--subtext);
  font-size: 1.0625rem;
}

/* =========================================================
   Botões
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
  min-height: 42px;
}

.btn-lg {
  padding: 16px 26px;
  font-size: 1rem;
  min-height: 54px;
  border-radius: 16px;
}

.btn-xl {
  padding: 20px 30px;
  font-size: 1.0625rem;
  min-height: 64px;
  border-radius: 18px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 74, 123, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(232, 74, 123, 0.4);
}

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
  padding-left: 6px;
  padding-right: 6px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(232, 74, 123, 0.35);
  text-decoration-thickness: 2px;
  min-height: auto;
  box-shadow: none;
}

.btn-ghost:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
  transform: none;
}

/* =========================================================
   Navbar
   ========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--text);
}

.brand-sub {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.nav-menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--subtext);
  position: relative;
  padding: 6px 0;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: width var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta,
.nav-cta-badge {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

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

/* =========================================================
   Hero
   ========================================================= */

.hero {
  padding-top: 150px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 10% 0%, rgba(243, 154, 180, 0.25), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(232, 74, 123, 0.12), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, var(--primary-soft) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 74, 123, 0.12);
  font-size: 0.8125rem;
  color: var(--subtext);
  font-weight: 500;
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1875rem, 4.6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-title .accent {
  color: var(--primary);
}

.hero-sub {
  color: var(--subtext);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 10px 24px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 560px;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--subtext);
  font-size: 0.9375rem;
}

.hero-proof li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

.hero-proof strong {
  color: var(--white);
}

/* Google Play Badge */
.play-badge-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
  outline: none;
  line-height: 0;
  border-radius: 14px;
}
.play-badge-link:hover {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}
.play-badge-link:focus-visible {
  box-shadow: 0 0 0 3px var(--primary);
}
.play-badge {
  display: block;
  height: auto;
}
.play-badge-lg   { width: min(240px, 62vw); max-width: 260px; }
.play-badge-xl   { width: min(320px, 78vw); max-width: 340px; }
.play-badge-md   { width: min(200px, 68vw); max-width: 220px; }
.play-badge-sm   { width: min(170px, 40vw); max-width: 180px; }

.play-badge-block {
  display: flex !important;
  justify-content: center;
  margin-top: 6px;
}

.footer-play-badge {
  margin-top: 10px;
  display: inline-block;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

.hero-visual {
  position: relative;
}

.hero-mockup {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  filter: drop-shadow(0 30px 60px rgba(232, 74, 123, 0.18));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* =========================================================
   Proof strip
   ========================================================= */

.proof-strip {
  padding: 36px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.proof-badge {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.proof-stars {
  display: flex;
  color: #f59e0b;
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.proof-chip {
  background: rgba(232, 74, 123, 0.08);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.proof-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.proof-value {
  font-size: 0.875rem;
  color: var(--subtext);
}

/* =========================================================
   Features
   ========================================================= */

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 74, 123, 0.25);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.icon-pink {
  background: rgba(232, 74, 123, 0.1);
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  color: var(--subtext);
  font-size: 0.96875rem;
}

/* =========================================================
   Screenshots (Carousel automático lento)
   ========================================================= */

.carousel {
  position: relative;
  padding: 12px 0 16px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
  z-index: 5;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.06);
}

.carousel-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.carousel-prev { left: -6px; }
.carousel-next { right: -6px; }

.carousel-viewport {
  overflow: hidden;
  padding: 10px 6px 24px;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide {
  flex: 0 0 auto;
  width: min(300px, 78vw);
  scroll-snap-align: start;
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transform: scale(1);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.carousel.is-paused .carousel-track {
  transition-duration: 0.2s;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: none;
  background: #e9d5de;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}

.carousel-dot:hover {
  background: var(--accent);
}

.carousel-dot.is-active {
  background: var(--primary);
  width: 28px;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.375rem;
  }
  .carousel-prev { left: -2px; }
  .carousel-next { right: -2px; }
  .carousel-viewport { padding: 10px 2px 22px; }
  .carousel-track { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none !important; }
}

/* =========================================================
   Por que usar (lifestyle)
   ========================================================= */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.why-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(232, 74, 123, 0.05));
}

.why-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.why-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 8px 0 16px;
  color: var(--text);
}

.why-copy > p {
  color: var(--subtext);
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-list .check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 74, 123, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.why-list strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.why-list p {
  color: var(--subtext);
  font-size: 0.9375rem;
  margin: 0;
}

/* =========================================================
   Pricing / Planos
   ========================================================= */

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

.plan-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.plan-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 16px 40px rgba(232, 74, 123, 0.18);
  transform: translateY(-8px);
}

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

.plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}

.plan-head h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.plan-price .small {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--subtext);
  letter-spacing: 0;
  display: block;
  margin-bottom: 4px;
}

.plan-price span:not(.small) {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--subtext);
  font-family: var(--font-sans);
}

.plan-sub {
  color: var(--subtext);
  font-size: 0.9375rem;
}

.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--subtext);
  font-size: 0.9375rem;
}

.plan-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1.6;
}

.plan-list strong {
  color: var(--text);
}

.plan-card .btn {
  margin-top: auto;
}

.pricing-table-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.pricing-table-label {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  font-size: 1rem;
}

.pricing-table {
  background: linear-gradient(180deg, #1a1120 0%, #10091a 100%);
  border-radius: 20px;
  padding: 6px;
  color: #f7f5fa;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 30px 60px rgba(10, 5, 20, 0.25);
}

.pricing-table::-webkit-scrollbar {
  height: 8px;
}
.pricing-table::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 999px;
}

.pricing-table-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(140px, 1fr));
  gap: 2px;
  min-width: 720px;
}

.pricing-table-head {
  position: sticky;
  top: 0;
  z-index: 2;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  margin: 14px auto;
}

.plan-mini-free {
  background: rgba(255, 255, 255, 0.08);
  color: #e8e6ee;
}

.plan-mini-premium {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.plan-mini-pro {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(232, 74, 123, 0.4);
}

.pricing-table-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 14px;
  font-size: 0.9375rem;
  color: #dedae6;
  border-radius: 10px;
  min-height: 56px;
  transition: background 0.2s ease;
}

.pricing-table-cell + .pricing-table-cell {
  background: rgba(255, 255, 255, 0.02);
}

.pricing-table-feature {
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
  padding-left: 20px;
}

.pricing-table-featured {
  background: linear-gradient(180deg, rgba(232, 74, 123, 0.18), rgba(232, 74, 123, 0.06));
  color: #fff4f8;
  border: 1px solid rgba(232, 74, 123, 0.35);
}

.pricing-table-row:not(.pricing-table-head) .pricing-table-feature {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-table-row + .pricing-table-row {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-check {
  color: #6ae9a7;
  font-weight: 800;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .pricing-table-wrap {
    padding: 16px 12px 18px;
    border-radius: var(--radius-lg);
  }
  .pricing-table-row {
    grid-template-columns: minmax(180px, 1.2fr) repeat(3, minmax(110px, 1fr));
  }
  .pricing-table-cell {
    padding: 12px 8px;
    font-size: 0.875rem;
  }
  .plan-mini {
    height: 36px;
    font-size: 0.8125rem;
    padding: 0 12px;
    margin: 10px auto;
  }
}

/* =========================================================
   Final CTA
   ========================================================= */

.final-cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 240, 245, 0.9), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(243, 154, 180, 0.2), transparent 45%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
}

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

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.play-big {
  background: var(--white) !important;
  color: var(--primary) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18) !important;
  padding: 16px 26px !important;
  border: 0 !important;
  border-radius: 18px !important;
  gap: 16px !important;
  min-height: 72px;
}

.play-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24) !important;
}

.play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 4px;
}

.play-big span:not(.play-icon) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.play-big small {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--subtext);
  font-weight: 700;
  margin-bottom: 2px;
}

.play-big strong {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
}

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

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2px 2px;
  transition: all var(--transition);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(232, 74, 123, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

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

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 74, 123, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.faq-item p {
  color: var(--subtext);
  padding: 0 24px 24px;
  font-size: 0.96875rem;
  line-height: 1.7;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: #101014;
  color: #d1d5db;
  padding: 72px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 18px;
  color: #9ca3af;
  font-size: 0.9375rem;
  max-width: 360px;
  line-height: 1.7;
}

.footer .brand-title {
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-col a {
  color: #9ca3af;
  font-size: 0.9375rem;
  transition: color var(--transition);
}

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

.footer-play {
  margin-top: 8px;
  background: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
  max-width: 220px;
}

.footer-play:hover {
  background: var(--primary-dark) !important;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8125rem;
  color: #6b7280;
}

.footer-disclaimer {
  max-width: 520px;
  text-align: right;
}

/* =========================================================
   Responsivo · < 1024px
   ========================================================= */

@media (max-width: 1024px) {
  .features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-mockup {
    margin: 0 auto;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

/* =========================================================
   Responsivo · Mobile < 768px
   ========================================================= */

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

  .hero {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .nav-menu,
  .nav-cta,
  .nav-cta-badge {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu.open {
    display: flex;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.2s ease;
  }

  .nav-menu.open a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
  }
  .nav-menu.open a:last-child {
    border-bottom: 0;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-featured {
    transform: translateY(0);
  }

  .why-photo {
    aspect-ratio: 16/12;
  }

  .screenshot-item {
    width: 80vw;
  }

  .final-cta {
    padding: 64px 0;
  }

  .play-big {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-disclaimer {
    text-align: left;
  }
}

/* =========================================================
   Utilities
   ========================================================= */

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

/* =========================================================
   Páginas legais (Privacidade / Termos)
   ========================================================= */

.legal-hero {
  padding-top: 140px;
  padding-bottom: 36px;
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-soft) 100%);
  border-bottom: 1px solid var(--border);
}

.legal-hero .container {
  max-width: 880px;
}

.legal-hero .eyebrow {
  margin-bottom: 14px;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 10px;
}

.legal-hero p {
  color: var(--subtext);
  font-size: 1rem;
}

.legal-content {
  padding: 56px 0 96px;
}

.legal-content .container {
  max-width: 880px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px clamp(20px, 3vw, 48px);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  line-height: 1.75;
}

.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  margin: 32px 0 12px;
  color: var(--text);
  scroll-margin-top: 96px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--text);
}

.legal-card p {
  color: var(--subtext);
  margin: 8px 0 12px;
  font-size: 0.96875rem;
}

.legal-card ul,
.legal-card ol {
  margin: 10px 0 14px 20px;
  color: var(--subtext);
  font-size: 0.96875rem;
}

.legal-card li {
  margin: 6px 0;
}

.legal-card strong {
  color: var(--text);
}

.legal-card a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card a:hover {
  color: var(--primary-dark);
}

.legal-summary {
  background: rgba(232, 74, 123, 0.06);
  border-left: 3px solid var(--primary);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin: 0 0 28px;
}

.legal-summary p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.legal-toc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.legal-toc h2 {
  margin: 0 0 12px !important;
  font-size: 1rem !important;
  font-family: var(--font-sans) !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.legal-toc ol {
  margin: 0 0 0 20px;
  padding: 0;
}

.legal-toc li {
  margin: 6px 0;
  font-size: 0.9375rem;
}

.legal-footer-back {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}

.legal-footer-back:hover {
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .legal-hero { padding-top: 112px; padding-bottom: 24px; }
  .legal-content { padding: 36px 0 64px; }
  .legal-card { padding: 24px 20px; border-radius: var(--radius-lg); }
}
