/* ============================================================
   SAYJAY — Design System
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  --brand:        #FF006F;
  --brand-light:  #ff6aaa;
  --brand-glow:   rgba(255, 0, 111, 0.15);
  --brand-gradient-start: #FF006F;
  --brand-gradient-mid:   rgba(255, 0, 111, 0.5);
  --brand-gradient-end:   rgba(255, 106, 170, 0.15);
  --cream:        #FAF9F5;
  --sand:         #F0EDE6;
  --beige:        #E8E4DB;
  --ink:          #0F0F0D;
  --muted:        #888;
  --border:       rgba(0, 0, 0, 0.07);
  --radius-card:  28px;
  --shadow-card:  0 2px 12px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.04);
  --shadow-hover: 0 14px 44px rgba(0,0,0,0.09), 0 0 0 1px rgba(0,0,0,0.05);
}

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

/* Fundo da página — gradiente suave com toque #FF006F */
.body-gradient {
  background: linear-gradient(180deg, #f8f6f3 0%, #f2f0eb 25%, #f0ede6 60%, #f3f0ea 100%);
  min-height: 100vh;
}

::selection {
  background: var(--brand);
  color: #fff;
}

/* ===== HEADER (menu) — partilha o background com .hero-bg (wrapper), sem fundo próprio ===== */
.hero-bg > header {
  position: static !important;
  background: transparent;
  padding-top: 0.75rem;
  padding-bottom: 0;
}

/* ===== GRAIN OVERLAY (body-level) ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.45;
  pointer-events: none;
  z-index: 9999;
}

/* ===== FAQ DETAILS ===== */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
details[open] summary ~ * {
  animation: sweep .35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes sweep {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== HERO BACKGROUND — gradiente #FF006F centralizado e mais forte ===== */
.hero-bg {
  position: relative;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(255, 0, 111, 0.22) 0%, rgba(255, 0, 111, 0.08) 40%, transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 45%, rgba(255, 106, 170, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, #fdf6f9 0%, #faf4f7 50%, #f5f3ef 100%);
}
.hero-bg > * { position: relative; z-index: 1; }

/* ===== HERO REELS (card com borda em gradiente #FF006F) ===== */
.hero-reels-card {
  min-height: 420px;
  background: linear-gradient(145deg, #f0f9f4 0%, #e8f4ec 30%, #ecf5f0 70%, #eaf6f1 100%);
  box-shadow: 0 24px 56px -12px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04), 0 0 80px -20px rgba(255, 0, 111, 0.12);
}
@media (min-width: 768px) {
  .hero-reels-card {
    min-height: 520px;
  }
}
@media (min-width: 640px) {
  .hero-reels-card {
    background: linear-gradient(150deg, #f2faf6 0%, #ecf7ef 40%, #eef8f2 100%);
  }
}
.hero-float { animation: hero-float-ease 4s ease-in-out infinite; }
.hero-float-2 { animation-delay: 0.8s; }
@keyframes hero-float-ease {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== GIF NO TÍTULO HERO ===== */
.hero-title-gif {
  height: 1em;
  width: auto;
  max-height: 72px;
  object-fit: contain;
  vertical-align: -0.2em;
  margin: 0 0.15em;
  display: inline-block;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #FF006F 0%, #ff6aaa 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sublinhado em rabisco de lápis em "salva" */
.salva-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.salva-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M0 4 Q 12 0 25 4 T 50 4 T 75 4 T 100 4' fill='none' stroke='%23FF006F' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 100%;
  opacity: 0.9;
}

/* ===== WIDGET PREVIEW (dentro dos feature cards) ===== */
.widget-preview {
  background: white;
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  max-width: 100%;
  transform: rotate(-2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feat-card:hover .widget-preview {
  transform: rotate(-1deg) translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.05);
}
.widget-preview-alt {
  transform: rotate(2deg);
}
.feat-card:hover .widget-preview-alt {
  transform: rotate(3deg) translateY(-2px);
}
.widget-preview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.widget-preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FEATURES BENTO GRID (section funcionalidades) ===== */
.features-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}
@media (max-width: 767px) {
  .features-bento-grid { grid-template-columns: 1fr; }
}
.features-bento-item {
  border-radius: 28px;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.features-bento-item:hover {
  transform: translateY(-5px);
}
.features-bento-title {
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.features-bento-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 100%;
  color: #555;
  line-height: 1.45;
  margin-bottom: 1rem;
}
.features-bento-item .features-widget-preview:first-of-type {
  margin-top: 0;
}
.features-bento-yellow { background-color: #f6ca45; grid-column: 1 / -1; }
.features-bento-blue  { background-color: #5697f8; color: white; }
.features-bento-pink {
  background-color: #ffb5ef;
  min-height: 260px;
}
.features-bento-pink .features-widget-preview {
  margin-top: 0.5rem;
}
.features-bento-green { background-color: #67d7a0; grid-column: 1 / -1; }
.features-bento-red  {
  background-color: #f4533e;
  grid-column: 1 / -1;
  color: white;
  text-align: center;
  align-items: center;
}
.features-widget-preview {
  background: white;
  border-radius: 20px;
  padding: 16px;
  margin-top: auto;
  color: #1a1a1a;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  max-width: 280px;
  transform: rotate(-2deg);
}
.features-widget-preview-alt { transform: rotate(3deg); margin-left: auto; }
.features-widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.features-widget-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.features-widget-text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.features-widget-small {
  min-width: 160px;
  margin: 0;
  transform: rotate(-1deg);
}
.features-widget-small.features-widget-alt { transform: rotate(2deg); }

/* ===== CELULAR EM DESTAQUE (Features — coluna direita) ===== */
.features-phone-panel {
  background: #0f0f0f;
  border-radius: 1.75rem;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
}
.features-phone-panel::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: rgba(255, 0, 111, 0.12);
  filter: blur(60px);
  pointer-events: none;
}
.features-phone-panel::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -15%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  filter: blur(50px);
  pointer-events: none;
}

.features-phone-wrap {
  position: relative;
  z-index: 1;
  pointer-events: none;
  width: 230px;
}
.features-phone-wrap.features-phone-prominent {
  width: 280px;
}
@media (min-width: 1024px) {
  .features-phone-wrap.features-phone-prominent { width: 320px; }
}
.features-phone-shell {
  background: rgba(255,255,255,0.2);
  border-radius: 32px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(15,15,15,0.12),
    0 18px 40px -10px rgba(0,0,0,0.35);
}
.features-phone-prominent .features-phone-shell {
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(15,15,15,0.16),
    0 24px 56px -12px rgba(0,0,0,0.45);
}
.features-phone-screen {
  background: #f5f5f7;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  aspect-ratio: 9/19;
}

/* Chat aberto estilo iOS (imagem exemplo) */
.wa-chat-header {
  display: none;
}
.wa-chat-body {
  flex: 1;
  padding: 10px 12px 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  background: linear-gradient(180deg,#f5f5f7 0%,#f2f2f4 100%);
}
.wa-chat-bubble {
  max-width: 80%;
  padding: 8px 10px 16px;
  font-size: 12px;
  line-height: 1.35;
  border-radius: 18px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  animation: wa-chat-pop 10s ease-out infinite;
}
.wa-chat-body .wa-chat-bubble:nth-child(2) { animation-delay: 0.2s; }
.wa-chat-body .wa-chat-bubble:nth-child(3) { animation-delay: 0.8s; }
.wa-chat-body .wa-chat-bubble:nth-child(4) { animation-delay: 1.4s; }
.wa-chat-body .wa-chat-bubble:nth-child(5) { animation-delay: 2s; }
.wa-chat-body .wa-chat-bubble:nth-child(6) { animation-delay: 2.6s; }

@keyframes wa-chat-pop {
  0%   { opacity: 0; transform: translateY(12px) scale(0.98); }
  8%   { opacity: 1; transform: translateY(0) scale(1.01); }
  15%  { opacity: 1; transform: translateY(0) scale(1); }
  90%  { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(12px) scale(0.98); }
}
.wa-chat-bubble-in {
  align-self: flex-start;
  background: #ffffff;
  border-bottom-left-radius: 4px;
}
.wa-chat-bubble-in::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 0;
  height: 0;
  border-top: 6px solid #ffffff;
  border-right: 6px solid transparent;
}
.wa-chat-bubble-out {
  align-self: flex-end;
  background: #dcf8c6;
  border-bottom-right-radius: 4px;
}
.wa-chat-bubble-out::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -4px;
  width: 0;
  height: 0;
  border-top: 6px solid #dcf8c6;
  border-left: 6px solid transparent;
}
.wa-chat-time {
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-size: 9px;
  color: rgba(0,0,0,0.45);
}
.wa-chat-pill-today {
  align-self: center;
  margin: 6px 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  font-size: 11px;
  color: #4b5563;
}
.wa-chat-banner {
  align-self: center;
  max-width: 90%;
  background: #e1f6f5;
  border-radius: 12px;
  padding: 8px 10px 16px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  position: relative;
  font-size: 11px;
  color: #134e4a;
}
.wa-chat-banner-icon {
  font-size: 13px;
  margin-right: 6px;
}
.wa-chat-banner-text {
  display: block;
}
.wa-chat-input {
  padding: 6px 10px 10px;
  background: #f9fafb;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-chat-input-box {
  flex: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-chat-input-box-icons {
  display: flex;
  gap: 8px;
}
.wa-chat-input {
  /* redefine para garantir que regra acima prevaleça */
}
.wa-chat-mic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}
.wa-chat-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.wa-chat-icon-white {
  filter: brightness(0) invert(1);
}
.wa-chat-gift-img {
  margin-top: 6px;
  width: 120px;
  border-radius: 12px;
  display: block;
}

/* ===== BENTO CARDS ===== */
.bento-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.055);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-card);
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.bento-card-dark {
  background: #0f0f0e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.bento-card-pink {
  background: var(--brand);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
}
/* Shimmer on pink card */
.bento-card-pink::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 55%);
  pointer-events: none;
}

/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-cell-headline { grid-column: 1 / 3; grid-row: 1 / 2; }
.bento-cell-phone    { grid-column: 3 / 4; grid-row: 1 / 3; }
.bento-cell-feat1    { grid-column: 1 / 2; grid-row: 2 / 3; }
.bento-cell-feat2    { grid-column: 2 / 3; grid-row: 2 / 3; }

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-cell-headline,
  .bento-cell-phone,
  .bento-cell-feat1,
  .bento-cell-feat2 {
    grid-column: 1 / 2;
    grid-row: auto;
  }
}

/* ===== PHONE MOCKUP ===== */
.phone-wrap {
  width: 260px;
  aspect-ratio: 9 / 19.5;
  position: relative;
  margin: 0 auto;
}
.phone-shell {
  width: 100%; height: 100%;
  background: #111;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 30px 80px -10px rgba(255,0,111,0.28),
    0 50px 100px -20px rgba(0,0,0,0.75);
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #e5ddd5;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ===== WHATSAPP UI ===== */
.wa-header {
  background: #075E54;
  padding: 10px 12px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.wa-status {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 14px;
  flex-shrink: 0;
}
.wa-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  scrollbar-width: none;
}
/* Utility: hide scrollbar on horizontal scroll areas */
.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.wa-input-bar {
  background: #f0f0f0;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.bubble-in {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 6px 8px;
  max-width: 85%;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.bubble-out {
  background: #dcf8c6;
  border-radius: 10px 0 10px 10px;
  padding: 6px 8px;
  max-width: 82%;
  align-self: flex-end;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.bubble-text {
  font-size: 9.5px;
  line-height: 1.4;
  color: #111;
}
.bubble-time {
  font-size: 7.5px;
  color: #888;
  text-align: right;
  margin-top: 2px;
}
.bubble-time-out { color: #4a9c6d; }
.wa-date-sep {
  align-self: center;
  background: rgba(225,221,216,0.95);
  border-radius: 8px;
  padding: 3px 8px;
  font-size: 7.5px;
  color: #555;
  margin: 4px 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ===== ICON STYLE ===== */
.icon-stroke {
  stroke: #1c1c1a;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ===== BENTO BACKGROUND ===== */
.bg-dot-grid {
  background-image: radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.card-beige { background: var(--beige); }

/* ===== NAVBAR PILL ===== */
.nav-pill {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 12px 16px;
  box-shadow: none;
  transition: opacity 0.2s ease;
}
.nav-pill:hover {
  opacity: 0.85;
  box-shadow: none;
}

/* ===== PRIMARY BUTTON ===== */
.btn-primary {
  transition: all 0.2s ease;
}
.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(255,0,111,0.35) !important;
}

/* ===== CTA DARK BUTTON ===== */
.btn-dark {
  transition: all 0.22s ease;
}
.btn-dark:hover {
  background: var(--brand) !important;
  box-shadow: 0 8px 24px rgba(255,0,111,0.3);
}

/* ===== FEATURE CARDS (2×2 grid) ===== */
.feat-card {
  border-radius: 1.75rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-11px); }
}
.float { animation: float 6s ease-in-out infinite; }

@keyframes ping-slow {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.08); opacity: 0.8; }
}
.ping-slow { animation: ping-slow 3s ease-in-out infinite; }

/* Hero entrance stagger */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-enter {
  opacity: 0;
  animation: hero-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.22s; }
.delay-350 { animation-delay: 0.38s; }
.delay-500 { animation-delay: 0.52s; }
.delay-650 { animation-delay: 0.68s; }

/* ===== FRASES AO ROLAR — Sticky Scroll (tela travada) ===== */
.phrases-scroll {
  position: relative;
  height: 400vh; /* Altura grande para permitir scroll longo */
  margin-bottom: 0;
}
.phrase-card-sticky {
  position: sticky;
  top: 0;
  height: 100vh; /* Ocupa toda a tela */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f0ede6; /* Mesma cor do fundo da section */
  z-index: 10;
}
.phrase-card-inner {
  width: 100%;
  max-width: 42rem;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}
.phrase-content {
  position: relative;
  height: 120px; /* Altura fixa para evitar pulos */
  display: flex;
  align-items: center;
  justify-content: center;
}
.phrase-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Transição mais suave */
  pointer-events: none;
}
.phrase-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.phrase-item.phrase-intro {
  font-size: 1.5rem;
  font-weight: 500;
  color: #6b7280;
}
@media (min-width: 640px) {
  .phrase-item.phrase-intro { font-size: 2rem; }
}
.phrase-item.phrase-line {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a4d2e;
  line-height: 1.3;
}
@media (min-width: 640px) {
  .phrase-item.phrase-line { font-size: 2.5rem; }
}
.phrase-trigger { display: none; } /* Não usado nesta versão */

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="100"] { transition-delay: 0.1s; }
[data-reveal][data-delay="150"] { transition-delay: 0.15s; }
[data-reveal][data-delay="200"] { transition-delay: 0.2s; }
[data-reveal][data-delay="250"] { transition-delay: 0.25s; }
[data-reveal][data-delay="300"] { transition-delay: 0.3s; }
[data-reveal][data-delay="350"] { transition-delay: 0.35s; }
[data-reveal][data-delay="400"] { transition-delay: 0.4s; }
[data-reveal][data-delay="500"] { transition-delay: 0.5s; }

/* Variant: scale reveal for cards */
[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="scale"].is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ===== PRICING CARD RING ===== */
.price-ring {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 0 60px rgba(255,0,111,0.12);
  transition: box-shadow 0.3s ease;
}
.price-ring:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 0 80px rgba(255,0,111,0.2);
}

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  border-radius: 1.75rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
}

/* ===== FAQ ITEM ===== */
.faq-item {
  border-radius: 1.25rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* ===== SOCIAL LINK ===== */
.social-link {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.social-link:hover {
  color: var(--brand);
  background: #fff;
  transform: translateY(-2px);
}
