@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --background: #ffffff;
  --foreground: #1b4332;
  --primary: #1b4332;
  --primary-foreground: #ffffff;
  --secondary: #f0faf4;
  --secondary-foreground: #1b4332;
  --muted: #f5f9f7;
  --muted-foreground: #4a7a63;
  --accent: #2d8a5e;
  --accent-foreground: #ffffff;
  --border: #e0ede6;
  --card: #ffffff;
  --card-foreground: #1b4332;
  --destructive: #ef4444;
  --cuidame-teal: #2bb3a0;
  --shadow-soft: 0 4px 20px -4px rgba(27,67,50,0.1);
  --shadow-card: 0 10px 40px -10px rgba(27,67,50,0.15);
  --radius: 0.75rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

ul { list-style: none; }

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

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.navbar .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo img {
  height: 2.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(27,67,50,0.7);
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .login-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(27,67,50,0.7);
  transition: color 0.2s;
}

.nav-actions .login-link:hover { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover { opacity: 0.9; }

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover { opacity: 0.9; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover { box-shadow: var(--shadow-soft); }

.btn-outline-white {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover { opacity: 0.9; }

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 1.5rem 1rem;
}

.mobile-menu.active { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(27,67,50,0.7);
}

.mobile-menu .mobile-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: linear-gradient(to bottom right, #f8fafb, #fff, rgba(45,138,94,0.05));
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg .circle-1 {
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, rgba(45,138,94,0.2), rgba(43,179,160,0.1));
  filter: blur(40px);
  animation: pulse-slow 10s ease-in-out infinite;
}

.hero-bg .circle-2 {
  position: absolute;
  bottom: -10rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: linear-gradient(to top left, rgba(43,179,160,0.15), rgba(45,138,94,0.1));
  filter: blur(40px);
  animation: pulse-slow 12s ease-in-out infinite 2s;
}

.hero-bg .glass-shape {
  position: absolute;
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  animation: float 6s ease-in-out infinite;
}

.hero-bg .glass-1 { top: 5rem; right: 10%; width: 8rem; height: 8rem; background: rgba(255,255,255,0.4); }
.hero-bg .glass-2 { top: 10rem; right: 25%; width: 5rem; height: 5rem; background: rgba(45,138,94,0.2); animation-delay: 0.5s; }
.hero-bg .glass-3 { bottom: 8rem; left: 5%; width: 10rem; height: 10rem; background: rgba(43,179,160,0.15); animation-delay: 1s; animation-duration: 8s; }

.hero-bg .dot-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(27,67,50,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse-slow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.hero .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .text-accent { color: var(--accent); }

.hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 28rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--foreground);
  color: var(--background);
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  transition: opacity 0.2s;
  text-decoration: none;
}

.store-btn:hover { opacity: 0.9; }

.store-btn svg { width: 1.5rem; height: 1.5rem; }

.store-btn .store-label { font-size: 0.625rem; line-height: 1; }
.store-btn .store-name { font-size: 0.875rem; font-weight: 600; line-height: 1.2; }

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 600px;
  width: 100%;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15));
  transition: transform 0.3s, filter 0.3s;
}

.hero-image img:hover {
  transform: scale(1.03) translateY(-5px);
}

/* ============ WHO ARE YOU ============ */
.who-are-you {
  padding: 5rem 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
}

.section-header .badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(45,138,94,0.1);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.who-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.who-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(45,138,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.who-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.who-card .link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s;
}

.who-card:hover .link { gap: 0.75rem; }

/* ============ FEATURES ============ */
.features {
  padding: 5rem 0;
  background: var(--secondary);
}

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

.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.feature-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.06); }

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============ PRICING ============ */
.pricing {
  padding: 5rem 0;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 3rem;
}

.pricing-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.pricing-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.pricing-card.featured .badge-top {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card .price-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-card .price-prefix {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-card .plan-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card .section-title {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pricing-card ul {
  margin-bottom: 1.5rem;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.pricing-card li .bullet {
  color: var(--muted-foreground);
}

.pricing-card.addon {
  background: var(--secondary);
  border: 1px dashed var(--border);
}

.pricing-card.addon .addon-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.promo-box {
  background: rgba(45,138,94,0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  text-align: center;
}

.promo-box p {
  font-size: 0.75rem;
  color: var(--accent);
}

/* ============ STATS ============ */
.stats {
  padding: 5rem 0;
  background: var(--secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(45,138,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============ LOVE SECTION ============ */
.love-section {
  padding: 5rem 0;
  background: #fff;
}

.love-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.love-image {
  position: relative;
}

.love-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1rem;
}

.love-image .frame {
  position: absolute;
  inset: 0;
  border: 12px solid rgba(45,138,94,0.2);
  border-radius: 1.5rem;
  pointer-events: none;
}

.love-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.love-content p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.check-circle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-circle svg {
  width: 1rem;
  height: 1rem;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============ TRUST ============ */
.trust {
  padding: 4rem 0;
  background: var(--secondary);
}

.trust .section-header { margin-bottom: 2.5rem; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.trust-badge .icon-box {
  margin-bottom: 0;
}

.trust-badge .trust-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-badge .trust-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============ CTA ============ */
.cta {
  padding: 5rem 0;
  background: var(--primary);
}

.cta .container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============ FOOTER ============ */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer .container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 1rem 0;
}

.footer-brand .footer-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--foreground); }

.footer-col .store-btn {
  margin-bottom: 0.5rem;
  width: 100%;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--foreground); }

/* ============ DOWNLOAD MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 28rem;
  width: 90%;
  position: relative;
}

.modal h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal p {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.modal .store-btn {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
}

.modal .store-btn svg { width: 2rem; height: 2rem; }
.modal .store-btn .store-name { font-size: 1.125rem; }

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1;
}

/* ============ CONTAINER ============ */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-accent { color: var(--accent); }
.text-accent-italic { color: var(--accent); font-style: italic; }

/* ============ PLAN CARDS (Pricing) ============ */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.plan-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.plan-card:hover {
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.plan-card.pop {
  border: 2px solid var(--accent);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  position: relative;
}

.plan-hdr {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.plan-ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-ico.b { background: rgba(45, 140, 100, 0.1); }
.plan-ico.p { background: linear-gradient(135deg, hsl(158, 55%, 40%), hsl(175, 50%, 45%)); }
.plan-ico.a { background: rgba(45, 140, 100, 0.1); }

.plan-nm {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}

.pr-old {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.pr-big {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--foreground);
}

.pr-big.free {
  background: linear-gradient(135deg, hsl(153, 44%, 15%), hsl(158, 55%, 40%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pr-note {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.25rem;
}

.pr-div {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.pr-div.ac { background: rgba(45, 140, 100, 0.2); }

.sec-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.sec-lbl svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--accent);
}

.pl-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pl-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 0.625rem;
}

.pl-list li svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.fl-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.disc-badge {
  display: inline-flex;
  font-size: 0.625rem;
  background: rgba(45, 140, 100, 0.1);
  color: var(--accent);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .plan-grid { grid-template-columns: repeat(3, 1fr); }
  .plan-card.pop { transform: scale(1.05); }
  .plan-card.pop:hover { transform: scale(1.05) translateY(-4px); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .hero-image { margin-top: 2rem; }
  .hero-image img { max-width: 400px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 28rem; margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .love-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== BAIXAR PAGE ===== */
.baixar-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 4rem;
}

.baixar-container {
  max-width: 28rem;
  width: 100%;
  text-align: center;
}

.baixar-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.baixar-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.baixar-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.baixar-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--foreground);
  color: var(--primary-foreground);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.baixar-store-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.baixar-store-btn svg {
  width: 2rem;
  height: 2rem;
}

.baixar-store-btn .store-label {
  font-size: 0.75rem;
  opacity: 0.8;
  text-align: left;
}

.baixar-store-btn .store-name {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
}

.baixar-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.baixar-qr-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.baixar-qr-code {
  background: #fff;
  padding: 0.75rem;
  border-radius: 0.75rem;
  line-height: 0;
}

.baixar-qr-hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.baixar-help {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
