/* ============================================
   ANOTA AMIGA — Landing Page
   Light Theme · Pink Accent · Feminine Premium
   ============================================ */

:root {
  /* Brand — Anota Amiga pink palette */
  --color-primary: #2A2A2A;              /* dark text */
  --color-secondary: #C94A7D;            /* dark pink */
  --color-highlight: #FFD9E9;            /* soft pink background */
  --color-highlight-strong: #FF609B;     /* vivid pink for accents */
  --color-highlight-dark: #FF2E7A;

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-off-white: #FFF0F5;            /* light pink tint */
  --color-body: #4B5563;
  --color-border: #FFE4EF;
  --color-error: #EF4444;

  /* Layers for cards */
  --color-layer-highlight-1: rgba(255,96,155,0.15);
  --color-layer-highlight-2: rgba(255,96,155,0.08);
  --color-layer-neutral-1: rgba(200,200,200,0.15);
  --color-layer-neutral-2: rgba(200,200,200,0.08);

  /* Shadows */
  --shadow-glow: 0 8px 40px rgba(255, 96, 155, 0.25);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--color-white);
  color: var(--color-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* Container */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1536px) { .container { max-width: 1400px; } }

/* ============================
   HEADER
   ============================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; flex-direction: column; width: 100%; align-items: center;
  padding: 1rem 1rem 0; transition: all 0.3s;
}
.header-inner {
  display: flex; max-width: 1280px; width: 92%; height: 56px;
  align-items: center; justify-content: space-between;
  padding: 0 1rem; border-radius: 9999px;
  background: var(--color-white); border: 1px solid transparent;
  transition: all 0.3s;
}
.header.scrolled .header-inner {
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
@media (min-width: 768px) {
  .header { padding-top: 2rem; }
  .header-inner { height: 88px; width: 94%; padding: 0 2rem; }
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem; font-weight: 800; color: var(--color-primary);
}
.logo-text .dot { color: var(--color-highlight-strong); }
.logo-icon {
  width: 36px; height: 36px; background: linear-gradient(135deg, #FF609B, #FF2E7A);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white;
}
@media (min-width: 768px) {
  .logo-icon { width: 44px; height: 44px; border-radius: 12px; font-size: 1.3rem; }
  .logo-text { font-size: 1.6rem; }
}

/* Nav */
.nav-links { display: none; align-items: center; gap: 0.5rem; }
.nav-links button {
  padding: 0.5rem 1rem; font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 1rem; letter-spacing: -0.02em;
  color: var(--color-body); border-radius: 6px; transition: color 0.2s;
}
.nav-links button:hover { color: var(--color-primary); }

.header-actions { display: none; align-items: center; gap: 0.6rem; }

@media (min-width: 1024px) {
  .nav-links { display: inline-flex; }
  .header-actions { display: inline-flex; }
}

/* Mobile hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px; padding: 0.5rem;
  width: 40px; height: 40px; border-radius: 50%;
  align-items: center; justify-content: center; transition: background 0.2s;
}
.hamburger:hover { background: var(--color-off-white); }
.hamburger span {
  width: 20px; height: 2px; background: var(--color-primary);
  border-radius: 2px; transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: var(--color-primary);
}

/* ============================
   BUTTONS
   ============================ */
.btn-highlight {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 1.25rem 2.5rem;
  background: var(--color-highlight); color: var(--color-primary);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.125rem; border-radius: 9999px;
  transition: all 0.5s; position: relative; overflow: hidden;
  border: none; cursor: pointer;
}
.btn-highlight:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: var(--shadow-glow);
}
/* Vivid pink gradient for secondary CTAs */
.btn-highlight-vivid {
  background: linear-gradient(135deg, #FF609B, #FF2E7A);
  color: white;
  box-shadow: 0 8px 30px rgba(255, 46, 122, 0.3);
  animation: solo-pulse 1.2s ease-in-out infinite;
}
.btn-highlight-vivid:hover {
  box-shadow: 0 12px 40px rgba(255, 46, 122, 0.45);
  transform: translateY(-3px) scale(1.02);
}
.btn-highlight .badge-off {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.25rem 0.75rem;
  background: var(--color-white); border-left: 2px solid rgba(45,27,78,0.2);
  border-right: 2px solid rgba(45,27,78,0.2);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 0.875rem; color: var(--color-primary);
}
.btn-highlight-vivid .badge-off {
  background: rgba(255,255,255,0.95);
  border-left: none; border-right: none;
  border-radius: 6px;
  color: #FF2E7A; font-weight: 800;
}
.btn-white {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1.25rem 2.5rem; width: 100%;
  background: var(--color-white); color: var(--color-primary);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.125rem; border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.btn-white:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }

.btn-sm {
  padding: 0.75rem 1.5rem; font-size: 0.875rem;
  background: var(--color-highlight); color: var(--color-primary);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
}
.btn-sm-vivid {
  background: linear-gradient(135deg, #FF609B, #FF2E7A);
  color: white;
  animation: solo-pulse 1.2s ease-in-out infinite;
}
.badge-off-sm {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.15rem 0.5rem;
  background: rgba(255,255,255,0.95);
  border-radius: 4px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 0.7rem; color: #FF2E7A;
}

/* Tag / pill label */
.tag {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 1rem; border-left: 2px solid var(--color-border);
  border-right: 2px solid var(--color-border);
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 1rem; color: var(--color-body); letter-spacing: -0.02em;
}
.tag-highlight {
  border-color: var(--color-highlight);
  color: var(--color-primary);
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem; width: 100%; background: var(--color-white);
}
.hero-wrapper {
  width: 100%; background: var(--color-off-white);
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 24px; overflow: hidden; position: relative;
  padding: 6rem 1rem 2.5rem; display: flex; flex-direction: column;
}
@media (min-width: 640px) { .hero-wrapper { border-radius: 32px; padding: 7rem 1.5rem 4rem; } }
@media (min-width: 768px) { .hero-wrapper { border-radius: 64px; padding: 6rem 4rem 4rem; } }

/* Decorative SVG path */
.hero-decoration {
  position: absolute; z-index: 0; pointer-events: none;
  width: 100%; max-width: 750px; height: auto;
  right: 0; bottom: -140px; opacity: 0.12;
}
@media (min-width: 768px) {
  .hero-decoration {
    opacity: 1; right: 0; bottom: auto;
    top: 50%; transform: translateY(-50%);
  }
}

.hero-content {
  display: flex; flex-direction: column;
  max-width: 1280px; width: 100%; margin: 0 auto;
  gap: 1.5rem; position: relative; z-index: 10;
}
@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row; align-items: center; min-height: 480px;
  }
}

.hero-left {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 1rem; flex: 1;
}
@media (min-width: 1024px) { .hero-left { max-width: 50%; gap: 1.5rem; } }

/* Social proof in hero */
.hero-social {
  display: flex; align-items: center;
  border-right: 1px solid var(--color-border);
  padding-right: 0; gap: 0;
}
.hero-avatars { display: flex; padding-right: 0.75rem; }
.hero-avatars .avatar {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid white;
  margin-left: -8px; object-fit: cover; transition: transform 0.2s;
  background: var(--color-highlight); display: flex; align-items: center;
  justify-content: center; font-size: 0.65rem; font-weight: 700;
  color: var(--color-primary);
}
.hero-avatars .avatar:first-child { margin-left: 0; }
.hero-avatars .avatar:hover { transform: translateY(-3px); }
@media (min-width: 768px) { .hero-avatars .avatar { width: 44px; height: 44px; } }

.hero-rating { padding-left: 0.75rem; }
.hero-rating .stars { display: flex; align-items: center; gap: 1px; }
.hero-rating .stars svg { width: 16px; height: 16px; fill: var(--color-highlight-strong); stroke: var(--color-highlight-strong); }
.hero-rating .rating-text { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 1.125rem; margin-left: 0.5rem; color: var(--color-body); }
.hero-rating .users-text { font-size: 0.85rem; color: rgba(75,85,99,0.8); }
.hero-rating .users-text strong { color: var(--color-primary); font-weight: 800; }

/* Star entrance animation */
.star-anim {
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.star-anim.star-visible {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; color: var(--color-primary);
  font-size: 2.5rem; letter-spacing: -0.04em; line-height: 1.05;
}
@media (min-width: 768px) { .hero-title { font-size: 2.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.5rem; line-height: 1.15; } }

.hero-desc {
  font-size: 0.95rem; line-height: 1.5; letter-spacing: -0.02em; color: var(--color-body);
}
.hero-desc strong { font-weight: 700; }
@media (min-width: 1024px) { .hero-desc { font-size: 1.125rem; line-height: 1.7; } }

.hero-cta-area {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem; width: 100%;
}
@media (min-width: 640px) { .hero-cta-area { align-items: flex-start; width: auto; } }
.hero-meta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-style: italic; color: var(--color-body);
}
.hero-meta .dot { width: 5px; height: 5px; background: var(--color-border); border-radius: 50%; }

/* Hero right (image area) */
.hero-right {
  flex: 1; position: relative; width: 100%; min-height: 280px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; margin-top: 1rem;
}
@media (min-width: 640px) { .hero-right { min-height: 380px; } }
@media (min-width: 1024px) { .hero-right { min-height: 580px; margin-top: 0; } }

.hero-phone-placeholder {
  width: 85%; max-width: 420px; aspect-ratio: 9/16;
  background: linear-gradient(145deg, var(--color-off-white), #e8e0f5);
  border-radius: 32px; border: 2px solid rgba(124,58,237,0.15);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1rem; padding: 2rem;
  color: var(--color-body); font-size: 0.85rem; text-align: center;
  box-shadow: 0 20px 60px rgba(124,58,237,0.1);
}
.hero-phone-placeholder .ph-icon { font-size: 3rem; }

/* Hero Animations */
.hero-image-floating {
  animation: float-image 1.5s ease-in-out infinite;
}
@keyframes float-image {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.btn-pulse {
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 217, 233, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(255, 217, 233, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 217, 233, 0); }
}

.hero-blob {
  position: absolute;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.6;
  animation: blob-spin 15s linear infinite;
}
.bg-blob-1 {
  width: 300px; height: 300px;
  background: linear-gradient(135deg, var(--color-highlight-strong), var(--color-secondary));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: -10%; left: -10%;
}
.bg-blob-2 {
  width: 250px; height: 250px;
  background: linear-gradient(135deg, var(--color-highlight), var(--color-off-white));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: -10%; right: -10%;
  animation-direction: reverse;
}
@media (min-width: 768px) {
  .bg-blob-1 { width: 450px; height: 450px; left: -20%; }
  .bg-blob-2 { width: 400px; height: 400px; right: -20%; }
}
@keyframes blob-spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

/* ============================
   QUOTE STRIP
   ============================ */
.quote-strip {
  width: 100%; background: white;
  padding: 2rem 0; border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.quote-strip .container {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .quote-strip .container { flex-direction: row; justify-content: space-between; }
}
.quote-strip blockquote {
  flex: 1; font-style: italic; font-weight: 500;
  color: var(--color-body); font-size: 0.9rem; line-height: 1.7;
  text-align: center; letter-spacing: -0.02em;
}
@media (min-width: 1024px) { .quote-strip blockquote { text-align: left; font-size: 1.1rem; } }

.quote-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}
@media (min-width: 1024px) {
  .quote-divider { width: 1px; height: 60px; flex: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent); }
}

.quote-author {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.quote-author .author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-highlight); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 0.9rem;
  color: var(--color-primary); border: 3px solid var(--color-off-white);
}
@media (min-width: 768px) { .quote-author .author-avatar { width: 64px; height: 64px; } }
.quote-author .author-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600; color: var(--color-primary); font-size: 1rem;
}
.quote-author .author-role { font-size: 0.85rem; color: rgba(75,85,99,0.7); }

/* ============================
   PAIN SECTION
   ============================ */
.pain-section {
  display: flex; flex-direction: column; align-items: center;
  padding: 5rem 1rem; background: var(--color-white);
}
@media (min-width: 768px) { .pain-section { padding: 6rem 3rem; } }
@media (min-width: 1024px) { .pain-section { padding: 10rem 3rem; } }

.pain-content {
  display: flex; flex-direction: column; gap: 2rem;
  max-width: 1280px; width: 100%;
}
@media (min-width: 1024px) {
  .pain-content { flex-direction: row; align-items: center; gap: 4rem; }
}

.pain-left { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; align-items: center; text-align: center; }
@media (min-width: 1024px) { .pain-left { align-items: flex-start; text-align: left; } }
.pain-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; color: var(--color-primary);
  font-size: 2.5rem; letter-spacing: -0.04em; line-height: 1.05;
}
@media (min-width: 768px) { .pain-title { font-size: 3rem; } }
@media (min-width: 1024px) { .pain-title { font-size: 3.5rem; } }
.pain-desc { font-size: 1rem; line-height: 1.7; letter-spacing: -0.02em; }
.pain-desc strong { font-weight: 700; }

.pain-right {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; background: linear-gradient(135deg, #FF609B, #FF2E7A);
  border-radius: 16px; overflow: hidden; min-height: 250px;
  position: relative; padding: 1rem;
}
@media (min-width: 768px) { .pain-right { border-radius: 32px; min-height: 400px; padding: 3rem; } }

.pain-image-stack {
  width: 100%; max-width: 100%; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.pain-planilha {
  width: 100%; border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.pain-confuso {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(-25deg);
  width: 65%; max-width: 320px;
  opacity: 0;
  transition: none;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
  pointer-events: none;
}

/* When the parent .pain-right gets the 'visible' class from scroll reveal */
.pain-right.visible .pain-confuso {
  animation: stamp-slam 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes stamp-slam {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5) rotate(-15deg);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9) rotate(-8deg);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.05) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(-6deg);
  }
}

/* ============================
   FEATURES SECTION
   ============================ */
.features-section {
  display: flex; flex-direction: column; align-items: center;
  padding: 5rem 1rem; position: relative; width: 100%;
  background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
}
@media (min-width: 768px) { .features-section { padding: 6rem 3rem; } }
@media (min-width: 1024px) { .features-section { padding: 10rem 3rem; } }

/* Feature pills bar */
.feature-pills {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem; padding: 1.25rem 2.5rem;
  background: var(--color-off-white); border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.03); margin-bottom: 2rem;
}
@media (min-width: 640px) { .feature-pills { position: relative; top: -23px; } }

.feature-pill {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--color-body);
}
.feature-pill .pill-icon { width: 22px; height: 22px; }

.features-header {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; text-align: center; margin-bottom: 3rem;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600; color: var(--color-primary);
  font-size: 2.5rem; letter-spacing: -0.03em; line-height: 1.1;
  text-align: center;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3.5rem; line-height: 1.2; } }

/* Feature Cards Grid */
.features-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  width: 100%; max-width: 1280px;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  min-height: 320px; border-radius: 16px; overflow: hidden;
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
  position: relative; transition: transform 0.3s;
}
@media (min-width: 768px) {
  .feature-card { border-radius: 24px; padding: 2.5rem; min-height: 410px; }
}
.feature-card:hover { transform: translateY(-4px); }

.feature-card.card-dark {
  background: var(--color-primary); color: white;
}
.feature-card.card-light {
  background: var(--color-off-white); color: var(--color-primary);
}
.feature-card.card-accent {
  background: var(--color-highlight); color: var(--color-primary);
}

.feature-card .card-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.feature-card .card-tag {
  display: inline-flex; align-items: center; padding: 0 1rem;
  border-left: 2px solid var(--color-highlight);
  border-right: 2px solid var(--color-highlight);
  font-size: 0.8rem; font-weight: 500; width: fit-content;
}
.feature-card.card-dark .card-tag { color: var(--color-highlight); }
.feature-card.card-accent .card-tag { border-color: var(--color-primary); }

.feature-card .card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500; font-size: 1.5rem; line-height: 1.1;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .feature-card .card-title { font-size: 2rem; } }

.feature-card .card-desc {
  font-size: 1rem; line-height: 1.6; letter-spacing: -0.02em;
}
.feature-card.card-dark .card-desc { color: rgba(245,240,255,0.8); }

/* ============================
   PRICING SECTION
   ============================ */
.pricing-section {
  display: flex; flex-direction: column; align-items: center;
  padding: 5rem 1rem; background: var(--color-off-white);
  position: relative; width: 100%; overflow: hidden;
}
@media (min-width: 768px) { .pricing-section { padding: 6rem 3rem; } }

.pricing-bg-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 5rem; color: rgba(45,27,78,0.03);
  text-align: center; display: none; letter-spacing: -0.03em;
  margin-bottom: -2rem;
}
@media (min-width: 1024px) { .pricing-bg-text { display: block; font-size: 7.5rem; } }

.pricing-card-wrapper {
  display: flex; flex-direction: column; gap: 1.5rem;
  width: 100%; max-width: 1280px; margin: 0 auto;
  background: var(--color-white); border-radius: 24px;
  padding: 1rem; overflow: hidden;
}
@media (min-width: 640px) { .pricing-card-wrapper { border-radius: 32px; padding: 1.5rem; } }
@media (min-width: 768px) { .pricing-card-wrapper { border-radius: 64px; padding: 3rem; } }
@media (min-width: 1024px) {
  .pricing-card-wrapper { flex-direction: row; }
}

.pricing-card {
  flex: 1; display: flex; flex-direction: column; gap: 1rem;
  padding: 1.5rem; border-radius: 16px; overflow: visible;
  position: relative;
}
@media (min-width: 768px) { .pricing-card { padding: 2.5rem; border-radius: 24px; } }

.pricing-card.card-featured {
  background: rgba(124,58,237,0.08);
}

/* Ribbon */
.pricing-card.card-featured::before {
  content: '💖 MAIS POPULAR';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--color-highlight-strong); color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 0.4rem 1.2rem; border-radius: 0 0 12px 12px;
}

.pricing-card .plan-tag {
  text-align: center; margin-top: 2.5rem;
}
.pricing-card .plan-tag .tag { font-size: 0.875rem; }

.pricing-card .price-old {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem; font-weight: 500;
  color: var(--color-error); text-decoration: line-through;
  letter-spacing: -0.03em;
}
@media (min-width: 768px) { .pricing-card .price-old { font-size: 2rem; } }

.pricing-card .price-row {
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.pricing-card .price-current {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.25rem; letter-spacing: -0.04em; line-height: 1.2;
}
@media (min-width: 768px) { .pricing-card .price-current { font-size: 3rem; } }
.pricing-card .price-current .prefix { font-weight: 500; }
.pricing-card.card-featured .price-current .prefix { color: var(--color-secondary); }
.pricing-card .price-current .value { font-weight: 700; color: var(--color-primary); cursor: pointer; }

.pricing-card .access-label {
  font-weight: 700; font-size: 1rem; color: var(--color-secondary);
}
.pricing-card:not(.card-featured) .access-label { color: var(--color-body); }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 0.5rem; flex-grow: 1; }
.check-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--color-secondary);
}
.pricing-card:not(.card-featured) .check-item { color: var(--color-body); }
.check-item .check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--color-highlight-strong); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-item .check-icon svg { width: 12px; height: 12px; stroke: white; fill: none; }
@media (min-width: 768px) {
  .check-item { font-size: 1rem; }
  .check-item .check-icon { width: 24px; height: 24px; }
  .check-item .check-icon svg { width: 14px; height: 14px; }
}

/* Selo de segurança */
.solo-secure {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem; color: var(--color-body); font-weight: 500;
  opacity: 0.7; white-space: nowrap; letter-spacing: -0.02em;
}
@media (max-width: 380px) {
  .solo-secure { font-size: 0.65rem; }
}

/* ============================
   MARQUEE STRIP
   ============================ */
.marquee-strip {
  width: 100%; padding: 1rem 0; overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  position: relative;
}
.marquee-strip.bg-off-white { background: var(--color-off-white); }
.marquee-strip.bg-white { background: white; }

.marquee-fade-left, .marquee-fade-right {
  position: absolute; top: 0; bottom: 0; width: 8rem; z-index: 20; pointer-events: none;
}
.marquee-fade-left { left: 0; background: linear-gradient(to right, var(--color-white), transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left, var(--color-white), transparent); }
.marquee-strip.bg-off-white .marquee-fade-left {
  background: linear-gradient(to right, var(--color-off-white), transparent);
}
.marquee-strip.bg-off-white .marquee-fade-right {
  background: linear-gradient(to left, var(--color-off-white), transparent);
}
@media (min-width: 768px) { .marquee-fade-left, .marquee-fade-right { width: 24rem; } }

.marquee-track {
  display: flex; animation: marquee 15s linear infinite; width: fit-content;
  will-change: transform;
}
.marquee-item {
  display: flex; align-items: center; gap: 0.75rem; padding: 0 0.5rem;
  white-space: nowrap; flex-shrink: 0;
}
.marquee-item .marquee-dot {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(75,85,99,0.2);
}
.marquee-item span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500; color: rgba(75,85,99,0.4);
  font-size: 1rem; letter-spacing: -0.02em;
}
@media (min-width: 768px) { .marquee-item span { font-size: 1.25rem; } }

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

/* ============================
   GUARANTEE SECTION
   ============================ */
.guarantee-section {
  display: flex; flex-direction: column; align-items: center;
  padding: 4rem 1rem 5rem;
  background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
  text-align: center; overflow: hidden;
}
.guarantee-seal {
  width: 400px; height: 400px; margin-bottom: 2rem;
  position: relative; display: flex; align-items: center; justify-content: center;
}
@media (min-width: 768px) { .guarantee-seal { width: 550px; height: 550px; } }

.guarantee-seal .seal-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4rem; font-weight: 800; color: var(--color-highlight-strong);
  position: relative; z-index: 2;
}
@media (min-width: 768px) { .guarantee-seal .seal-number { font-size: 5.5rem; } }

.guarantee-seal .seal-ring {
  position: absolute; inset: 0; animation: spin-slow 20s linear infinite;
}
.guarantee-seal .seal-ring svg { width: 100%; height: 100%; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.guarantee-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600; color: var(--color-primary);
  font-size: 2.5rem; letter-spacing: -0.03em; line-height: 1.1;
  max-width: 700px; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .guarantee-title { font-size: 3rem; } }
@media (min-width: 1024px) { .guarantee-title { font-size: 3.5rem; } }

.guarantee-desc {
  font-size: 1rem; color: var(--color-body); max-width: 720px;
  line-height: 1.7; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .guarantee-desc { font-size: 1.125rem; } }

.guarantee-desc .bold-line {
  display: inline-block; font-weight: 700; font-size: 1.125rem;
  border-bottom: 2px solid rgba(45,27,78,0.1); padding-bottom: 0.25rem;
  margin-top: 1rem;
}
@media (min-width: 768px) { .guarantee-desc .bold-line { font-size: 1.25rem; } }

/* ============================
   TESTIMONIALS V2 — Spread Carousel (Zy clone)
   ============================ */
.testimonials-section-v2 {
  width: 100%; padding: 5rem 1rem; background: var(--color-white);
  overflow: hidden;
}
@media (min-width: 768px) { .testimonials-section-v2 { padding: 6rem 3rem; } }

.testimonials-header {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; text-align: center; margin-bottom: 3rem;
}

.testi-spread {
  position: relative; width: 100%; max-width: 1280px; margin: 0 auto;
  height: 380px; overflow: hidden;
}

.testi-spread-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Individual card */
.testi-card {
  position: absolute; left: 50%; top: 50%;
  width: 280px; height: 266px;
  border-radius: 32px; overflow: hidden;
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  /* Default: side card style */
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--color-primary);
  border: 1px solid rgba(255,228,239,0.2);
  filter: grayscale(1) blur(1px);
  opacity: 0.8;
  z-index: 0;
  pointer-events: auto;
}
.testi-card:hover {
  opacity: 1; filter: grayscale(1) blur(0px);
}

/* Active card in center */
.testi-card.testi-active {
  background: var(--color-off-white);
  border: 1px solid rgba(255,228,239,0.4);
  filter: grayscale(0) blur(0px);
  opacity: 1;
  z-index: 10;
  transform: translate(-50%, -50%) translateX(0px) translateY(-30px) rotate(0deg) scale(1.1) !important;
}

/* Active card avatar special styling */
.testi-card.testi-active .testi-avatar-wrap img {
  box-shadow: 0 4px 15px rgba(255,96,155,0.3);
  outline: 2px solid rgba(255,96,155,0.4);
  outline-offset: 2px;
  filter: grayscale(0);
}
.testi-card.testi-active .testi-avatar-wrap::after {
  content: '';
  position: absolute; bottom: -2px; right: -2px;
  width: 12px; height: 12px;
  background: var(--color-highlight-strong);
  border: 2px solid white; border-radius: 50%;
  animation: avatar-ping 1.5s ease-out infinite;
}
@keyframes avatar-ping {
  0% { box-shadow: 0 0 0 0 rgba(255,96,155,0.6); }
  100% { box-shadow: 0 0 0 8px rgba(255,96,155,0); }
}

/* Active card quote icon uses highlight color */
.testi-card.testi-active .testi-quote-icon { color: var(--color-highlight-strong); }

/* Hidden cards (too far away) */
.testi-card.testi-hidden {
  opacity: 0 !important; pointer-events: none !important;
}

/* Card inner layout */
.testi-card-inner {
  display: flex; flex-direction: column; height: 100%;
  padding: 1.25rem; position: relative;
}
@media (min-width: 640px) { .testi-card-inner { padding: 1.75rem; } }
@media (min-width: 768px) { .testi-card-inner { padding: 2.25rem; } }

/* Author row */
.testi-author {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
@media (min-width: 640px) { .testi-author { gap: 1rem; margin-bottom: 1.5rem; } }

.testi-avatar-wrap {
  position: relative; flex-shrink: 0;
}
.testi-avatar-wrap img {
  width: 40px; height: 40px; border-radius: 12px; object-fit: cover;
  transition: all 0.5s; filter: grayscale(1);
}
@media (min-width: 640px) {
  .testi-avatar-wrap img { width: 48px; height: 48px; border-radius: 16px; }
}

.testi-info { display: flex; flex-direction: column; }
.testi-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--color-primary); line-height: 1.2;
}
@media (min-width: 640px) { .testi-name { font-size: 0.9375rem; } }
.testi-role {
  font-size: 0.625rem; font-weight: 500; opacity: 0.6;
  color: var(--color-body); letter-spacing: -0.01em;
}
@media (min-width: 640px) { .testi-role { font-size: 0.75rem; } }

/* Testimonial text */
.testi-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem; font-weight: 500; line-height: 1.6;
  letter-spacing: -0.02em; color: var(--color-body);
  flex-grow: 1;
}
@media (min-width: 640px) { .testi-text { font-size: 1rem; } }

/* Quote icon */
.testi-quote-icon {
  margin-top: auto; display: flex; justify-content: flex-end;
  color: var(--color-primary); opacity: 0.2;
}

/* Nav arrows */
.testi-nav {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 1.5rem;
  z-index: 20;
}
.testi-nav-btn {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(8px);
  color: var(--color-primary); border: none; cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.5s;
}
.testi-nav-btn:hover {
  background: var(--color-primary); color: white;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.testi-nav-btn svg {
  transition: transform 0.3s;
}
.testi-nav-btn:hover svg {
  transform: translateX(-2px);
}
#testi-next:hover svg {
  transform: translateX(2px);
}

/* ============================
   FAQ SECTION
   ============================ */
.faq-section { padding: 3rem 1rem 5rem; background: var(--color-white); }
@media (min-width: 768px) { .faq-section { padding: 3rem 3rem 6rem; } }

.faq-header {
  max-width: 768px; margin: 0 auto 3rem; text-align: center;
}
.faq-header .faq-subtitle {
  font-size: 1rem; color: var(--color-body); margin-top: 1rem;
}
@media (min-width: 768px) { .faq-header .faq-subtitle { font-size: 1.125rem; } }

.faq-list { max-width: 768px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06);
  background: var(--color-white); transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(124,58,237,0.2); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; text-align: left; cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500; font-size: 1rem; color: rgba(45,27,78,0.8);
  letter-spacing: -0.02em; transition: color 0.2s;
}
@media (min-width: 768px) { .faq-question { padding: 1.5rem 2rem; font-size: 1.125rem; } }

.faq-question .faq-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-off-white); color: rgba(45,27,78,0.5);
  transition: all 0.2s;
}
.faq-item:hover .faq-icon {
  background: rgba(124,58,237,0.1); color: var(--color-primary);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem; font-size: 0.95rem;
  color: var(--color-body); line-height: 1.7;
}
@media (min-width: 768px) { .faq-answer-inner { padding: 0 2rem 2rem; } }

/* ============================
   FINAL CTA
   ============================ */
.final-cta {
  display: flex; flex-direction: column; align-items: center;
  padding: 3rem 1.5rem 6rem; overflow: hidden;
}
@media (min-width: 768px) { .final-cta { padding: 6rem 3rem; } }

.final-cta-box {
  max-width: 1280px; width: 100%;
  background: var(--color-off-white); border-radius: 24px;
  padding: 3rem 1.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  overflow: hidden;
}
@media (min-width: 640px) { .final-cta-box { border-radius: 40px; padding: 6rem 3rem; } }
@media (min-width: 768px) { .final-cta-box { border-radius: 64px; padding: 8rem 5rem; } }

.final-cta-box .section-title { max-width: 700px; }
.final-cta-box .final-desc {
  max-width: 560px; font-size: 1rem; color: var(--color-body);
  line-height: 1.7; letter-spacing: -0.02em;
}
@media (min-width: 768px) { .final-cta-box .final-desc { font-size: 1.125rem; } }
.final-cta-box .final-meta {
  font-size: 0.875rem; font-style: italic; color: rgba(75,85,99,0.5);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  width: 100%; background: white; border-top: 1px solid rgba(0,0,0,0.04);
  padding: 4rem 1rem 2rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 5fr 7fr; gap: 3rem; }
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
@media (min-width: 640px) { .footer-brand { align-items: flex-start; text-align: left; } }
.footer-brand p { max-width: 360px; font-size: 0.9rem; color: var(--color-body); line-height: 1.6; }

.footer-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.footer-links-grid a {
  font-size: 0.9rem; color: var(--color-body); transition: color 0.2s;
}
.footer-links-grid a:hover { color: var(--color-primary); }

.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.04);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { font-size: 0.8rem; color: rgba(75,85,99,0.5); }

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================
   SOLO PRICING CARD — High-Conversion Single Card
   ============================ */
.solo-pricing-card {
  position: relative;
  background: linear-gradient(180deg, #FFF8FB 0%, #FFFFFF 100%);
  border-radius: 28px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 520px;
  width: 100%;
  display: flex; flex-direction: column; gap: 0;
  border: 2px solid var(--color-highlight-strong);
  box-shadow: 0 0 60px rgba(255, 46, 122, 0.12), 0 12px 40px rgba(0,0,0,0.06);
  overflow: visible;
}
@media (max-width: 480px) {
  .solo-pricing-card { padding: 2.5rem 1.5rem 2rem; border-radius: 20px; }
}

/* Badge flutuante */
.solo-badge {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #FF609B, #FF2E7A);
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.06em;
  padding: 0.5rem 1.75rem;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255, 46, 122, 0.3);
  z-index: 5;
}

/* Header: título + subtítulo */
.solo-header {
  text-align: center; margin-bottom: 1.5rem;
}
.solo-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--color-primary); text-transform: none;
  margin-top: 0.5rem; display: block; line-height: 1.3;
}
.solo-subtitle {
  font-size: 0.9rem; color: var(--color-body); font-weight: 500;
  margin-top: 0.4rem;
}

/* Bloco de preço */
.solo-price-block {
  text-align: center; margin-bottom: 1.5rem;
}
.solo-price-old-row {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.solo-price-old {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem; font-weight: 600; color: #dc2626;
  text-decoration: line-through; letter-spacing: -0.02em;
}
.solo-discount-tag {
  background: linear-gradient(135deg, #FF609B, #FF2E7A);
  color: white; padding: 0.25rem 0.65rem;
  font-size: 0.75rem; font-weight: 800;
  border-radius: 6px; letter-spacing: 0.02em;
}
.solo-price-current {
  display: flex; align-items: baseline; justify-content: center; gap: 0.5rem;
}
.solo-por {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem; font-weight: 600; color: var(--color-body);
}
.solo-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 4rem; font-weight: 800; color: var(--color-primary);
  letter-spacing: -0.04em; line-height: 1;
}
@media (max-width: 480px) { .solo-value { font-size: 3.25rem; } }
.solo-cents {
  font-size: 2rem; font-weight: 700;
}
.solo-installment {
  font-size: 0.9rem; color: var(--color-body); font-weight: 500;
  font-family: 'Inter', sans-serif; margin-top: 0.25rem;
}

/* Divisor */
.solo-divider {
  width: 100%; height: 1px; margin: 0.5rem 0 1.25rem;
  background: linear-gradient(90deg, transparent, var(--color-highlight-strong), transparent);
  opacity: 0.35;
}

/* Benefícios */
.solo-benefits {
  display: flex; flex-direction: column; gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.solo-benefit {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem; font-weight: 600; color: var(--color-primary);
  line-height: 1.3;
}

/* Botão CTA pulsante */
.solo-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, #FF609B, #FF2E7A);
  color: white; border-radius: 9999px; border: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em;
  cursor: pointer; transition: all 0.5s;
  box-shadow: 0 8px 30px rgba(255, 46, 122, 0.3);
  animation: solo-pulse 1.2s ease-in-out infinite;
  text-decoration: none;
  position: relative; overflow: hidden;
}
.solo-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 46, 122, 0.45);
}
@keyframes solo-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(255, 46, 122, 0.3); }
  50% { box-shadow: 0 8px 50px rgba(255, 46, 122, 0.5), 0 0 0 12px rgba(255, 96, 155, 0.15); }
}

/* Ripple animation — inspired by competitor */
.ripple-animation {
  position: absolute;
  display: block;
  width: 100%; height: 100%;
  top: 0; left: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  animation: ripple-effect 0.7s ease-out infinite;
}
.ripple-animation:nth-child(1) {
  animation-delay: 0s;
}
.ripple-animation:nth-child(2) {
  animation-delay: 0.35s;
}
@keyframes ripple-effect {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}




/* ============================
   PRICING V3 — Premium Zy Card Clone
   ============================ */
.pricing-cards-premium {
  display: flex; flex-direction: column; gap: 1.5rem;
  width: 100%; max-width: 1280px; margin: 0 auto;
}
@media (min-width: 1024px) {
  .pricing-cards-premium { flex-direction: row; align-items: stretch; justify-content: center; gap: 2rem; padding: 0 2rem; }
}

.pricing-card-premium {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  display: flex; flex-direction: column; gap: 1rem;
  overflow: hidden;
  flex: 1; max-width: 450px; margin: 0 auto;
}
.pricing-card-premium.featured {
  background: #f3e8ff;
  border: 2px solid var(--color-highlight-strong);
  box-shadow: 0 12px 50px rgba(124,58,237,0.15);
  transform: scale(1.03);
  z-index: 2;
}
@media (max-width: 1023px) {
  .pricing-card-premium.featured { transform: scale(1); }
}

.premium-ribbon {
  position: absolute; top: 0; left: 0;
  background: var(--color-highlight-strong); color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 0.75rem; letter-spacing: 0.05em;
  padding: 0.5rem 3rem;
  transform: rotate(-45deg) translate(-25%, -60%);
  transform-origin: center center;
  width: 180px; text-align: center;
  z-index: 10;
}

.premium-header {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-top: 1rem; margin-bottom: 0.5rem;
}
.premium-title {
  font-size: 0.95rem; font-weight: 700; color: var(--color-body);
  letter-spacing: 0.05em; text-transform: uppercase; text-align: center;
}
.featured .premium-title { color: var(--color-primary); font-weight: 800; }

.premium-price-old-wrapper {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-bottom: 0.5rem;
}
.premium-price-old {
  font-size: 1.5rem; font-weight: 600; color: #dc2626;
  text-decoration: line-through; letter-spacing: -0.02em;
}
.premium-discount {
  background: white; border: 1px solid rgba(0,0,0,0.1);
  padding: 0.2rem 0.5rem; font-size: 0.75rem; font-weight: 800;
  color: var(--color-primary); border-radius: 4px;
}

.premium-price-current {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem; font-weight: 800; color: var(--color-primary);
  line-height: 1; letter-spacing: -0.04em;
  display: flex; align-items: baseline; justify-content: center; gap: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 480px) { .premium-price-current { font-size: 3rem; } }
.premium-price-current .por {
  font-weight: 600; font-size: 1.5rem; color: var(--color-secondary); letter-spacing: -0.02em;
}

.premium-access {
  font-weight: 800; font-size: 1.1rem; color: var(--color-secondary);
  text-align: center; margin-bottom: 1rem; margin-top: 1.5rem;
}

/* Check list overriding for premium */
.check-list-v2 { display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1; margin-top: 0.5rem; }
.check-item-v2 {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; font-weight: 500; color: var(--color-body); line-height: 1.4;
}
.featured .check-item-v2 { color: var(--color-primary); font-weight: 600; }
.ci-icon {
  width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  background: var(--color-highlight-strong);
  display: flex; align-items: center; justify-content: center;
  stroke: white; fill: none; padding: 4px;
}

.premium-buy-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; padding: 1.35rem 1rem; margin-top: auto;
  background: white; color: var(--color-primary);
  border-radius: 9999px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: none;
  cursor: pointer; transition: all 0.2s;
}
.featured .premium-buy-btn {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  font-size: 1.15rem;
}
.premium-buy-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ============================
   AVATAR PLACEHOLDERS (photo)
   ============================ */
.avatar-photo {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid white; object-fit: cover;
  background: var(--color-highlight);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; color: var(--color-primary);
  overflow: hidden; position: relative;
}
.avatar-photo img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 768px) { .avatar-photo { width: 44px; height: 44px; } }

/* ============================
   RESPONSIVE — MOBILE FIRST
   ============================ */
@media (max-width: 480px) {
  .hero-title { font-size: 3rem; line-height: 1; letter-spacing: -0.06em; margin-bottom: 0.25rem; }
  .section-title { font-size: 2.5rem; line-height: 1.05; letter-spacing: -0.05em; }
  .pain-title { font-size: 2.25rem; line-height: 1.05; letter-spacing: -0.05em; }
  .guarantee-title { font-size: 2.25rem; line-height: 1.1; letter-spacing: -0.04em; }
  .hero-desc { font-size: 1.1rem; line-height: 1.5; }
  
  .btn-highlight { padding: 0.9rem 1.25rem; font-size: 0.95rem; }
  .pricing-card-v2 { padding: 1.25rem; }
  .price-big { font-size: 2.75rem; }

  .hero-wrapper { padding: 4rem 0.5rem 2rem; border-radius: 20px; }
  .header-inner { width: 96%; padding: 0 0.5rem; }

  .feature-card { min-height: 260px; padding: 1.25rem; }
  .feature-card .card-title { font-size: 1.75rem; }

  .final-cta-box { padding: 2.5rem 1rem; border-radius: 20px; }

  .testimonial-card { padding: 1.5rem; min-height: auto; box-sizing: border-box; }
  .testimonials-carousel { padding: 1rem 0; width: 100%; overflow: hidden; }

  .guarantee-seal { width: 280px; height: 280px; }
  .guarantee-seal .seal-number { font-size: 2.25rem; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2.25rem; }
  .pain-title { font-size: 2rem; }
  .price-big { font-size: 2.25rem; }
  .btn-highlight { padding: 0.75rem 1rem; font-size: 0.875rem; }
}

