/* ============================================================
   PSICOLOGIA EM SITE — style.css
   Mobile-first, then tablet (768px+), then desktop (1024px+)
   ============================================================ */

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

:root {
  --sage:       #2E6B5E;
  --sage-light: #3D8A7A;
  --sage-pale:  #EAF4F1;
  --sage-mid:   #C5E0D8;
  --cream:      #FAF8F4;
  --warm-white: #FFFDF9;
  --clay:       #C4651A;
  --clay-light: #E07B2A;
  --ink:        #1A2420;
  --ink-light:  #3A4F49;
  --mist:       #8BA89F;
  --gold:       #D4A843;
  --gold-pale:  #FBF3E0;
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { cursor: pointer; }

/* ── CUSTOM CURSOR (desktop only) ── */
@media (pointer: fine) {
  body { cursor: none; }
}
#cursor {
  width: 12px; height: 12px;
  background: var(--sage);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform .15s ease, background .2s ease;
  mix-blend-mode: multiply;
  display: none;
}
#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--sage);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94), opacity .3s;
  opacity: .5;
  display: none;
}
@media (pointer: fine) {
  #cursor, #cursor-ring { display: block; }
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--clay));
  z-index: 200;
  transition: width .1s linear;
}

/* ────────────────────────────────────────
   NAV
──────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(250,248,244,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46,107,94,.08);
  transition: padding .4s ease, box-shadow .4s ease;
}
nav.scrolled {
  padding: .75rem 1.25rem;
  box-shadow: 0 4px 32px rgba(46,107,94,.08);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--sage);
  letter-spacing: -.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--clay); }

/* Desktop nav links — hidden on mobile */
.nav-links { display: none; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .85rem; font-weight: 500;
  color: var(--ink-light); text-decoration: none;
  letter-spacing: .03em; position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--sage);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--sage) !important;
  color: #fff !important;
  padding: .5rem 1.2rem !important;
  border-radius: 100px !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--sage-light) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.nav-drawer.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-drawer a {
  font-family: 'Fraunces', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--ink); text-decoration: none;
  transition: color .2s;
}
.nav-drawer a:hover { color: var(--sage); }
.nav-drawer .drawer-cta {
  background: var(--sage);
  color: #fff !important;
  font-size: 1rem !important;
  padding: .85rem 2.5rem;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important;
}

@media (min-width: 768px) {
  nav { padding: 1.25rem 2.5rem; }
  nav.scrolled { padding: .85rem 2.5rem; }
}
@media (min-width: 1024px) {
  nav { padding: 1.25rem 4rem; }
  nav.scrolled { padding: .85rem 4rem; }
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
}

/* ────────────────────────────────────────
   SHARED UTILS
──────────────────────────────────────── */
.section-tag {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.section-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--sage);
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -.025em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--sage); }
.section-title .clay { color: var(--clay); }

.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--sage); color: #fff;
  padding: .85rem 2rem; border-radius: 100px;
  font-size: .92rem; font-weight: 500; text-decoration: none;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 24px rgba(46,107,94,.3);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46,107,94,.35);
}
.btn-primary svg { width: 16px; transition: transform .25s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--ink-light); font-size: .88rem;
  text-decoration: none; font-weight: 400; transition: color .2s;
}
.btn-ghost:hover { color: var(--sage); }
.btn-ghost svg { width: 14px; opacity: .5; }

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(1.4); }
}

/* ────────────────────────────────────────
   HERO
──────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 1.25rem 3rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, var(--sage-pale) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 10% 100%, var(--gold-pale) 0%, transparent 60%);
}
.hero-lines {
  position: absolute; inset: 0; opacity: .03;
  background-image:
    repeating-linear-gradient(0deg,   var(--sage) 0, var(--sage) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg,  var(--sage) 0, var(--sage) 1px, transparent 1px, transparent 60px);
}
.hero-left { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--sage-pale); border: 1px solid var(--sage-mid);
  color: var(--sage); font-size: .72rem; font-weight: 500;
  padding: .4rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: .04em; text-transform: uppercase;
  animation: fadeUp .8s ease both;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--sage); border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 10vw, 4.4rem);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -.03em; color: var(--ink);
  animation: fadeUp .8s .1s ease both;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero h1 .accent {
  position: relative; display: inline-block; color: var(--clay);
}
.hero h1 .accent::after {
  content: ''; position: absolute;
  left: 0; bottom: 2px; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--clay), transparent);
  border-radius: 2px;
}
.hero-sub {
  margin-top: 1.25rem; font-size: .97rem;
  color: var(--ink-light); line-height: 1.7; font-weight: 300;
  animation: fadeUp .8s .2s ease both;
}
.hero-actions {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: .85rem; align-items: center;
  animation: fadeUp .8s .3s ease both;
}
.hero-stats {
  margin-top: 2.5rem;
  display: flex; gap: 2rem; flex-wrap: wrap;
  animation: fadeUp .8s .4s ease both;
}
.stat-num {
  font-family: 'Fraunces', serif; font-size: 2rem;
  font-weight: 600; color: var(--sage); line-height: 1;
}
.stat-label { font-size: .75rem; color: var(--mist); margin-top: .2rem; }

/* Phone mockup — hidden on mobile, shown on desktop */
.hero-right { display: none; }

@media (min-width: 768px) {
  .hero { padding: 7rem 2.5rem 4rem; }
  .hero-sub { max-width: 500px; }
}
@media (min-width: 1024px) {
  .hero {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; padding: 7rem 4rem 4rem; gap: 3rem;
  }
  .hero-right {
    display: flex; justify-content: center; z-index: 2;
    animation: fadeUp .9s .2s ease both;
  }
  .hero-sub { max-width: 460px; font-size: 1.05rem; }
}

/* Phone mockup */
.phone-mockup {
  width: 260px;
  background: var(--ink); border-radius: 40px; padding: 14px;
  box-shadow: 0 40px 80px rgba(26,36,32,.3), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
}
.phone-notch {
  width: 72px; height: 24px; background: var(--ink);
  border-radius: 20px; margin: 0 auto 10px;
}
.phone-screen {
  background: var(--warm-white); border-radius: 26px;
  overflow: hidden; height: 480px;
}
.phone-header {
  background: var(--warm-white); padding: .9rem 1.1rem .5rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.phone-logo {
  font-family: 'Fraunces', serif; font-size: .85rem;
  color: var(--clay); font-weight: 600;
}
.phone-hero-section { padding: 1.1rem; }
.phone-tag-small {
  font-size: .58rem; color: var(--clay);
  font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: .45rem;
}
.phone-headline {
  font-family: 'Fraunces', serif; font-size: 1.25rem;
  font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: .55rem;
}
.phone-headline em { font-style: italic; color: var(--clay); }
.phone-sub-text {
  font-size: .62rem; color: var(--ink-light);
  line-height: 1.5; margin-bottom: .9rem;
}
.phone-cta-btn {
  display: inline-block; background: var(--clay); color: #fff;
  font-size: .58rem; padding: .42rem .95rem;
  border-radius: 100px; font-weight: 500;
}
.phone-bottom-img {
  width: 100%; height: 165px;
  background: linear-gradient(135deg, var(--clay) 0%, var(--gold) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.2); font-family: 'Fraunces', serif;
  font-size: 2.8rem; font-style: italic;
}
.phone-floating-badge {
  position: absolute; right: -36px; top: 55px;
  background: var(--warm-white); border-radius: 14px;
  padding: .75rem .9rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex; align-items: center; gap: .65rem;
  animation: float 3s ease-in-out infinite;
}
.phone-floating-badge2 {
  position: absolute; left: -44px; bottom: 75px;
  background: var(--sage); border-radius: 14px;
  padding: .75rem .9rem;
  box-shadow: 0 8px 32px rgba(46,107,94,.3);
  animation: float 3s .8s ease-in-out infinite;
  color: #fff;
}
.badge-icon { font-size: 1.2rem; }
.badge-text .badge-num {
  font-family: 'Fraunces', serif; font-size: .95rem;
  font-weight: 600; color: var(--sage); line-height: 1;
}
.badge-text .badge-label { font-size: .62rem; color: var(--mist); }
.badge2-label { font-size: .67rem; font-weight: 500; line-height: 1.3; }
.badge2-sub { font-size: .58rem; opacity: .7; }

/* ────────────────────────────────────────
   MARQUEE
──────────────────────────────────────── */
.marquee-section {
  background: var(--sage); padding: .9rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 2.5rem;
  animation: marquee 8s linear infinite; white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: .65rem;
  color: rgba(255,255,255,.7); font-size: .75rem; font-weight: 400;
  letter-spacing: .04em; flex-shrink: 0;
}
.marquee-item strong { color: #fff; font-weight: 500; }
.marquee-dot {
  width: 4px; height: 4px; background: rgba(255,255,255,.3); border-radius: 50%;
}

/* ────────────────────────────────────────
   PROBLEM
──────────────────────────────────────── */
.problem-section {
  padding: 5rem 1.25rem;
}
.problem-grid {
  display: flex; flex-direction: column; gap: 3rem; margin-top: 3rem;
}
.problem-text p {
  font-size: .95rem; color: var(--ink-light);
  line-height: 1.75; font-weight: 300; margin-bottom: 1.1rem;
}
.problem-text p strong { color: var(--ink); font-weight: 500; }
.problem-cards { display: flex; flex-direction: column; gap: 1rem; }
.problem-card {
  background: var(--warm-white);
  border: 1px solid rgba(46,107,94,.08);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(46,107,94,.1);
  border-color: var(--sage-mid);
}
.problem-card-icon {
  width: 42px; height: 42px; background: var(--sage-pale);
  border-radius: 13px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.problem-card h4 {
  font-family: 'Fraunces', serif; font-size: .98rem;
  font-weight: 400; color: var(--ink); margin-bottom: .2rem;
}
.problem-card p { font-size: .8rem; color: var(--mist); line-height: 1.55; }

@media (min-width: 768px) {
  .problem-section { padding: 6rem 2.5rem; }
  .problem-cards { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .problem-section { padding: 7rem 4rem; max-width: 1300px; margin: 0 auto; }
  .problem-grid { flex-direction: row; gap: 5rem; align-items: center; }
  .problem-cards { display: flex; flex-direction: column; }
}

/* ────────────────────────────────────────
   STORY / LEVELS
──────────────────────────────────────── */
.story-section {
  background: var(--ink); padding: 5rem 1.25rem; overflow: hidden;
}
.story-section .section-tag { color: var(--sage-mid); }
.story-section .section-tag::before { background: var(--sage-mid); }
.story-section .section-title { color: #fff; }
.story-section .section-title em { color: var(--sage-mid); }
.story-intro {
  font-size: .95rem; color: rgba(255,255,255,.5);
  line-height: 1.7; font-weight: 300; margin-top: 1rem;
}
.levels-container {
  margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem;
}
.level-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md); padding: 1.5rem;
  position: relative; overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s;
}
.level-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  opacity: 0; transition: opacity .3s;
}
.level-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.level-card:hover::before { opacity: 1; }
.level-card.level-starter::before { background: linear-gradient(90deg, var(--sage), transparent); }
.level-card.level-pro::before    { background: linear-gradient(90deg, var(--clay), transparent); }
.level-card.level-elite::before  { background: linear-gradient(90deg, var(--gold), transparent); }
.level-card.featured { background: rgba(46,107,94,.15); border-color: rgba(46,107,94,.35); }

.level-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.level-number {
  font-family: 'Fraunces', serif; font-size: 2.8rem;
  font-weight: 300; color: rgba(255,255,255,.08); line-height: 1;
}
.level-price-col { text-align: right; }
.level-badge {
  display: inline-block; font-size: .62rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 100px; margin-bottom: .6rem;
}
.badge-starter { background: rgba(46,107,94,.2); color: var(--sage-mid); }
.badge-pro     { background: rgba(196,101,26,.2); color: var(--clay-light); }
.badge-elite   { background: rgba(212,168,67,.2); color: var(--gold); }
.level-price {
  font-family: 'Fraunces', serif; font-size: 1.8rem;
  font-weight: 400; color: #fff; line-height: 1;
}
.level-price span { font-size: .9rem; color: rgba(255,255,255,.4); }

.level-info h3 {
  font-family: 'Fraunces', serif; font-size: 1.25rem;
  font-weight: 400; color: #fff; margin-bottom: .2rem;
}
.level-subtitle { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: .85rem; }
.level-features { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.level-feat {
  font-size: .68rem; color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  padding: .28rem .7rem; border-radius: 100px;
}
.level-feat.highlight { background: rgba(46,107,94,.25); color: var(--sage-mid); }
.level-cta-btn {
  display: inline-block; padding: .52rem 1.2rem;
  border-radius: 100px; font-size: .78rem; font-weight: 500;
  text-decoration: none; transition: .2s;
}
.cta-sage { background: var(--sage); color: #fff; }
.cta-sage:hover { background: var(--sage-light); }
.cta-clay { background: var(--clay); color: #fff; }
.cta-clay:hover { background: var(--clay-light); }
.cta-gold { background: var(--gold); color: var(--ink); }
.cta-gold:hover { filter: brightness(1.1); }

@media (min-width: 768px) {
  .story-section { padding: 6rem 2.5rem; }
}
@media (min-width: 1024px) {
  .story-section { padding: 7rem 4rem; }
  .level-card {
    display: grid; grid-template-columns: 80px 1fr auto;
    gap: 2rem; align-items: center; padding: 2.5rem;
    cursor: pointer;
  }
  .level-card:hover { transform: translateX(6px); }
  .level-top { display: contents; }
  .level-price-col { text-align: right; flex-shrink: 0; }
}

/* ────────────────────────────────────────
   PREVIEW
──────────────────────────────────────── */
.preview-section { background: var(--sage-pale); padding: 5rem 1.25rem; }
.preview-header { text-align: center; margin-bottom: 3rem; }
.preview-header .section-tag { justify-content: center; }
.preview-header .section-tag::before { display: none; }

.browser-mockup {
  background: var(--warm-white); border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(46,107,94,.12), 0 0 0 1px rgba(46,107,94,.06);
  overflow: hidden;
}
.browser-bar {
  background: #F0EDEA; padding: .7rem 1.1rem;
  display: flex; align-items: center; gap: .6rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.browser-dots { display: flex; gap: .32rem; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF6057; }
.dot-y { background: #FFBD2E; }
.dot-g { background: #27C93F; }
.browser-url {
  flex: 1; max-width: 260px; margin: 0 auto;
  background: rgba(255,255,255,.7); border-radius: 8px;
  padding: .28rem .7rem; font-size: .72rem; color: var(--mist); text-align: center;
}
.browser-content { display: flex; flex-direction: column; }
.preview-left { padding: 2rem 1.5rem; }
.preview-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(196,101,26,.1); color: var(--clay);
  font-size: .7rem; font-weight: 500;
  padding: .32rem .8rem; border-radius: 100px;
  margin-bottom: 1.25rem; letter-spacing: .04em; text-transform: uppercase;
}
.preview-left h2 {
  font-family: 'Fraunces', serif; font-size: 1.75rem;
  font-weight: 300; line-height: 1.15; color: var(--ink); margin-bottom: .85rem;
}
.preview-left h2 em { font-style: italic; color: var(--clay); }
.preview-left > p {
  font-size: .85rem; color: var(--ink-light);
  line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem;
}
.preview-pill-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.preview-pill {
  display: flex; align-items: center; gap: .7rem;
  font-size: .82rem; color: var(--ink-light);
}
.preview-pill::before {
  content: '✓'; width: 19px; height: 19px;
  background: var(--sage); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; flex-shrink: 0;
}
.preview-right {
  background: linear-gradient(145deg, #F8F0EA 0%, var(--cream) 100%);
  padding: 2rem; display: flex; align-items: center;
  justify-content: center; min-height: 340px; position: relative; overflow: hidden;
}
.preview-phone {
  width: 180px; background: var(--ink);
  border-radius: 28px; padding: 9px;
  box-shadow: 0 24px 60px rgba(26,36,32,.35); position: relative; z-index: 2;
}
.preview-phone-screen { background: var(--warm-white); border-radius: 22px; overflow: hidden; }
.pp-nav {
  background: var(--warm-white); padding: .45rem .7rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: .5rem; color: var(--clay);
  font-family: 'Fraunces', serif; font-weight: 600;
}
.pp-hero { padding: .7rem; }
.pp-hero-tag { font-size: .42rem; color: var(--clay); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .38rem; }
.pp-hero-title { font-family: 'Fraunces', serif; font-size: .78rem; font-weight: 400; line-height: 1.25; color: var(--ink); margin-bottom: .32rem; }
.pp-hero-title em { font-style: italic; color: var(--clay); }
.pp-sub { font-size: .44rem; color: var(--ink-light); line-height: 1.5; margin-bottom: .55rem; }
.pp-btn { display: inline-block; background: var(--clay); color: #fff; font-size: .42rem; padding: .28rem .6rem; border-radius: 100px; font-weight: 500; }
.pp-section-title { background: #F8F0EA; padding: .45rem .7rem; font-size: .46rem; color: var(--clay); font-family: 'Fraunces', serif; font-weight: 600; text-align: center; }
.pp-pills { padding: .55rem .7rem; display: flex; flex-direction: column; gap: .28rem; }
.pp-pill { display: flex; align-items: center; gap: .38rem; font-size: .42rem; color: var(--ink-light); }
.pp-pill-num { width: 11px; height: 11px; background: var(--clay); color: #fff; border-radius: 50%; font-size: .38rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floating-el { position: absolute; background: var(--warm-white); border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.1); padding: .65rem .9rem; }
.fl-1 { top: 16px; right: 16px; animation: float 3s ease-in-out infinite; }
.fl-2 { bottom: 24px; left: 8px; animation: float 3s .5s ease-in-out infinite; }
.fl-stars { color: var(--gold); font-size: .58rem; margin-bottom: .18rem; }
.fl-rating { font-size: .62rem; color: var(--ink); font-weight: 500; }
.fl-label { font-size: .58rem; color: var(--mist); }
.fl-number { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--sage); font-weight: 600; }

@media (min-width: 768px) {
  .preview-section { padding: 6rem 2.5rem; }
  .browser-content { flex-direction: row; }
  .preview-left { flex: 1; padding: 2.5rem 2rem; }
  .preview-right { flex: 0 0 340px; }
}
@media (min-width: 1024px) {
  .preview-section { padding: 7rem 4rem; }
  .preview-left { padding: 3rem; }
}

/* ────────────────────────────────────────
   PROCESS
──────────────────────────────────────── */
.process-section { padding: 5rem 1.25rem; }
.process-header { margin-bottom: 3rem; }
.process-steps {
  display: flex; flex-direction: column; gap: 1rem; position: relative;
}
.process-step {
  background: var(--warm-white);
  border: 1px solid rgba(46,107,94,.08);
  border-radius: var(--radius-md); padding: 1.75rem 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(46,107,94,.1);
  border-color: var(--sage-mid);
}
.step-number {
  width: 50px; height: 50px; border-radius: 16px;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--sage);
  margin-bottom: 1.1rem; position: relative;
}
.step-number::after {
  content: attr(data-num); position: absolute;
  top: -5px; right: -5px; width: 17px; height: 17px;
  background: var(--sage); color: #fff; border-radius: 50%;
  font-size: .52rem; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 400; color: var(--ink); margin-bottom: .4rem; }
.process-step p { font-size: .8rem; color: var(--mist); line-height: 1.6; }

@media (min-width: 600px) {
  .process-steps { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .process-section { padding: 6rem 2.5rem; }
}
@media (min-width: 1024px) {
  .process-section { padding: 7rem 4rem; max-width: 1300px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(4, 1fr); }
  .process-steps::before {
    content: ''; position: absolute;
    top: 32px; left: 40px; right: 40px; height: 1px;
    background: linear-gradient(90deg, var(--sage-mid), transparent); z-index: 0;
  }
}

/* ────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────── */
.testimonial-section {
  background: linear-gradient(135deg, var(--sage) 0%, #1D5045 100%);
  padding: 5rem 1.25rem; overflow: hidden;
}
.testimonial-section .section-tag { color: rgba(255,255,255,.5); }
.testimonial-section .section-tag::before { background: rgba(255,255,255,.3); }
.testimonial-section .section-title { color: #fff; }
.testimonial-section .section-title em { color: var(--sage-mid); }
.testimonial-grid { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; }
.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: background .3s, transform .3s;
}
.testimonial-card:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.t-quote { font-size: 2.2rem; color: rgba(255,255,255,.2); line-height: 1; margin-bottom: .65rem; font-family: 'Fraunces', serif; }
.t-text { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.7; font-weight: 300; margin-bottom: 1.4rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: .8rem; }
.t-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: .95rem; }
.t-name { font-weight: 500; color: #fff; font-size: .85rem; }
.t-role { font-size: .7rem; color: rgba(255,255,255,.4); }
.t-stars { margin-left: auto; color: var(--gold); font-size: .68rem; }

@media (min-width: 768px) {
  .testimonial-section { padding: 6rem 2.5rem; }
  .testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .testimonial-section { padding: 7rem 4rem; }
  .testimonial-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ────────────────────────────────────────
   TECH
──────────────────────────────────────── */
.tech-section { padding: 5rem 1.25rem; }
.tech-grid { display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem; }
.tech-card {
  background: var(--warm-white);
  border: 1px solid rgba(46,107,94,.06);
  border-radius: var(--radius-md); padding: 1.75rem;
  transition: transform .3s, box-shadow .3s;
}
.tech-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(46,107,94,.1); }
.tech-icon { font-size: 1.75rem; margin-bottom: .85rem; }
.tech-card h4 { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 400; color: var(--ink); margin-bottom: .4rem; }
.tech-card p { font-size: .8rem; color: var(--mist); line-height: 1.6; }

@media (min-width: 600px) {
  .tech-grid { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .tech-section { padding: 6rem 2.5rem; }
}
@media (min-width: 1024px) {
  .tech-section { padding: 7rem 4rem; max-width: 1300px; margin: 0 auto; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ────────────────────────────────────────
   PRICING
──────────────────────────────────────── */
.pricing-section { background: var(--cream); padding: 5rem 1.25rem; }
.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-header .section-tag { justify-content: center; }
.pricing-header .section-tag::before { display: none; }
.pricing-grid { display: flex; flex-direction: column; gap: 1.5rem; align-items: stretch; justify-content: center; }

.price-card {
  background: var(--warm-white);
  border: 1px solid rgba(46,107,94,.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(46,107,94,.12); }
.price-card.featured { border-color: var(--sage); box-shadow: 0 12px 40px rgba(46,107,94,.18); }
.price-header {
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.price-card.featured .price-header { background: var(--sage); }
.price-badge {
  display: inline-block; font-size: .62rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .8rem; border-radius: 100px; margin-bottom: .85rem;
}
.pb-green { background: var(--sage-pale); color: var(--sage); }
.pb-white { background: rgba(255,255,255,.2); color: #fff; }
.pb-clay  { background: rgba(196,101,26,.1); color: var(--clay); }
.price-name { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 300; color: var(--ink); margin-bottom: .2rem; }
.price-card.featured .price-name { color: #fff; }
.price-desc { font-size: .78rem; color: var(--mist); margin-bottom: 1.25rem; }
.price-card.featured .price-desc { color: rgba(255,255,255,.6); }
.price-amount { display: flex; align-items: flex-end; gap: .22rem; }
.price-cur { font-size: .88rem; color: var(--mist); padding-bottom: .2rem; }
.price-card.featured .price-cur { color: rgba(255,255,255,.6); }
.price-num { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 300; color: var(--ink); line-height: 1; }
.price-card.featured .price-num { color: #fff; }
.price-period { font-size: .72rem; color: var(--mist); padding-bottom: .28rem; }
.price-card.featured .price-period { color: rgba(255,255,255,.5); }
.price-body { padding: 1.5rem 1.75rem 1.75rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.75rem; }
.price-features li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .83rem; color: var(--ink-light);
}
.price-features li::before {
  content: '✓'; width: 17px; height: 17px; background: var(--sage-pale);
  color: var(--sage); border-radius: 50%; font-size: .58rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.price-features li.muted { color: var(--mist); }
.price-features li.muted::before { content: '–'; background: rgba(0,0,0,.04); color: var(--mist); }
.price-btn {
  display: block; text-align: center; padding: .88rem;
  border-radius: 13px; font-size: .88rem; font-weight: 500;
  text-decoration: none; transition: .25s;
}
.price-btn-ghost { border: 1.5px solid var(--sage-mid); color: var(--sage); }
.price-btn-ghost:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.price-btn-solid { background: var(--sage); color: #fff; box-shadow: 0 4px 20px rgba(46,107,94,.25); }
.price-btn-solid:hover { background: var(--sage-light); transform: translateY(-1px); }
.price-btn-clay { border: 1.5px solid rgba(196,101,26,.3); color: var(--clay); }
.price-btn-clay:hover { background: var(--clay); color: #fff; }

@media (min-width: 768px) {
  .pricing-section { padding: 6rem 2.5rem; }
  .pricing-grid { flex-direction: row; align-items: start; }
  .price-card.featured { transform: scale(1.02); }
  .price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
}
@media (min-width: 1024px) {
  .pricing-section { padding: 7rem 4rem; }
  .price-card.featured { transform: scale(1.03); }
  .price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
}

/* ────────────────────────────────────────
   FAQ
──────────────────────────────────────── */
.faq-section { padding: 5rem 1.25rem; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header .section-tag { justify-content: center; }
.faq-header .section-tag::before { display: none; }
.faq-list { display: flex; flex-direction: column; gap: .65rem; }
.faq-item {
  background: var(--warm-white);
  border: 1px solid rgba(46,107,94,.08);
  border-radius: 14px; overflow: hidden; transition: box-shadow .3s;
}
.faq-item.open { box-shadow: 0 8px 32px rgba(46,107,94,.1); }
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: .92rem; font-weight: 500;
  color: var(--ink); transition: color .2s; gap: .75rem;
}
.faq-question:hover { color: var(--sage); }
.faq-chevron {
  width: 20px; height: 20px; border: 1.5px solid var(--mist); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .3s, border-color .3s, background .3s;
  color: var(--mist); font-size: .68rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--sage); background: var(--sage); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: .86rem; color: var(--mist); line-height: 1.7; font-weight: 300; }

@media (min-width: 768px) {
  .faq-section { padding: 6rem 2.5rem; max-width: 860px; margin: 0 auto; }
}
@media (min-width: 1024px) {
  .faq-section { padding: 7rem 4rem; }
}

/* ────────────────────────────────────────
   CTA FINAL
──────────────────────────────────────── */
.cta-section {
  padding: 5rem 1.25rem; text-align: center;
  background: var(--ink); position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,107,94,.18) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.cta-section .section-tag { justify-content: center; color: rgba(255,255,255,.4); }
.cta-section .section-tag::before { background: rgba(255,255,255,.2); }
.cta-section .section-title { color: #fff; max-width: 680px; margin: 0 auto 1.25rem; }
.cta-sub {
  font-size: .95rem; color: rgba(255,255,255,.45); font-weight: 300;
  line-height: 1.7; max-width: 420px; margin: 0 auto 2.5rem;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.btn-white {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #fff; color: var(--ink);
  padding: .88rem 1.8rem; border-radius: 100px;
  font-size: .9rem; font-weight: 500; text-decoration: none;
  transition: .25s; box-shadow: 0 4px 24px rgba(0,0,0,.18);
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.28); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1.5px solid rgba(255,255,255,.22); color: rgba(255,255,255,.7);
  padding: .88rem 1.8rem; border-radius: 100px;
  font-size: .9rem; text-decoration: none; transition: .25s;
  white-space: nowrap;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.5); color: #fff; }

@media (min-width: 768px) {
  .cta-section { padding: 7rem 2.5rem; }
}

/* ────────────────────────────────────────
   FOOTER
──────────────────────────────────────── */
footer { background: #111a18; padding: 3.5rem 1.25rem 2rem; }
.footer-top {
  display: flex; flex-direction: column; gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .nav-logo { display: block; margin-bottom: .85rem; }
.footer-brand p { font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 240px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col h5 {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  padding-top: 1.75rem; display: flex;
  flex-direction: column; gap: 1rem; align-items: center;
}
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.2); text-align: center; }
.footer-social { display: flex; gap: .85rem; }
.social-link {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: .82rem; text-decoration: none; transition: .2s;
}
.social-link:hover { background: var(--sage); color: #fff; }

@media (min-width: 768px) {
  footer { padding: 4rem 2.5rem 2.5rem; }
  .footer-top { flex-direction: row; flex-wrap: wrap; gap: 2rem; }
  .footer-brand { flex: 0 0 220px; }
  .footer-cols { flex: 1; grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) {
  footer { padding: 4rem 4rem 2.5rem; }
  .footer-brand { flex: 0 0 280px; }
}

/* ────────────────────────────────────────
   FLOATING WHATSAPP BUTTON (mobile)
──────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.25rem; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none; transition: transform .3s, box-shadow .3s;
  animation: float 3s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

/* ════════════════════════════════════════
   PREVIEW — INTERACTIVE DEVICE SWITCHER
════════════════════════════════════════ */
.preview-section { background: var(--sage-pale); padding: 5rem 1.25rem; }
.preview-inner   { max-width: 1300px; margin: 0 auto; }

.preview-header  { text-align: center; margin-bottom: 2.5rem; }
.preview-header .section-tag { justify-content: center; }
.preview-header .section-tag::before { display: none; }
.preview-subtitle {
  font-size: .9rem; color: var(--mist); font-weight: 300;
  line-height: 1.65; max-width: 520px; margin: .75rem auto 0;
}

/* Wrap: info col + device col */
.preview-wrap {
  display: flex; flex-direction: column; gap: 2.5rem;
}
@media (min-width: 1024px) {
  .preview-wrap { flex-direction: row; align-items: flex-start; gap: 3.5rem; }
}

/* Info column */
.preview-info { flex: 0 0 280px; }
.preview-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(196,101,26,.1); color: var(--clay);
  font-size: .7rem; font-weight: 500;
  padding: .32rem .8rem; border-radius: 100px;
  margin-bottom: 1.1rem; letter-spacing: .04em; text-transform: uppercase;
}
.preview-name {
  font-family: 'Fraunces', serif; font-size: 1.5rem;
  font-weight: 300; line-height: 1.2; color: var(--ink); margin-bottom: .85rem;
}
.preview-name em { font-style: italic; color: var(--clay); }
.preview-desc {
  font-size: .85rem; color: var(--ink-light);
  line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem;
}
.preview-pill-list { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.5rem; }
.preview-pill {
  display: flex; align-items: center; gap: .65rem;
  font-size: .82rem; color: var(--ink-light);
}
.preview-pill::before {
  content: '✓'; width: 18px; height: 18px;
  background: var(--sage); color: #fff; border-radius: 50%;
  font-size: .58rem; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.preview-info-actions { display: flex; flex-direction: column; gap: .75rem; align-items: flex-start; }

.btn-expand-modal {
  display: inline-flex; align-items: center; gap: .5rem;
  background: none; border: 1.5px solid var(--sage-mid);
  color: var(--sage); padding: .6rem 1.25rem; border-radius: 100px;
  font-size: .82rem; font-weight: 500; cursor: pointer;
  transition: .25s; font-family: 'DM Sans', sans-serif;
}
.btn-expand-modal:hover { background: var(--sage); color: #fff; border-color: var(--sage); }

/* Device viewer column */
.device-viewer-col { flex: 1; display: flex; flex-direction: column; gap: 1rem; }

/* Device tabs */
.device-tabs {
  display: flex; gap: .5rem;
  background: var(--warm-white);
  border: 1px solid rgba(46,107,94,.1);
  border-radius: 100px; padding: .3rem;
  align-self: flex-start;
}
.device-tab {
  display: flex; align-items: center; gap: .45rem;
  padding: .5rem 1.1rem; border-radius: 100px;
  border: none; background: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: .78rem;
  font-weight: 500; color: var(--mist); transition: .25s;
}
.device-tab svg { opacity: .5; transition: opacity .2s; }
.device-tab:hover { color: var(--sage); }
.device-tab.active {
  background: var(--sage); color: #fff;
}
.device-tab.active svg { opacity: 1; }

/* Stage container */
.device-stage {
  position: relative;
  background: linear-gradient(145deg, #E8F0EE 0%, #D4E5E0 100%);
  border-radius: 20px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1.5rem;
  min-height: 540px;
  transition: min-height .4s ease;
}

/* Common device-frame visibility */
.device-frame { display: none; width: 100%; }
.device-frame.active { display: flex; align-items: center; justify-content: center; }

/* ── DESKTOP FRAME ── */
.df-desktop-outer {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 860px;
}
.df-desktop-screen {
  width: 100%; background: #1A2420;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  overflow: hidden;
}
.df-browser-bar {
  background: #2A3530; padding: .6rem .85rem;
  display: flex; align-items: center; gap: .65rem;
}
.df-dots { display: flex; gap: .3rem; }
.df-dots span {
  width: 9px; height: 9px; border-radius: 50%;
}
.df-dots span:nth-child(1) { background: #FF6057; }
.df-dots span:nth-child(2) { background: #FFBD2E; }
.df-dots span:nth-child(3) { background: #27C93F; }
.df-url {
  flex: 1; background: rgba(255,255,255,.08); border-radius: 6px;
  padding: .25rem .6rem; font-size: .68rem; color: rgba(255,255,255,.5); text-align: center;
  font-family: 'DM Sans', sans-serif; letter-spacing: .02em;
}
.df-expand-btn {
  color: rgba(255,255,255,.4); font-size: .9rem; cursor: pointer;
  padding: .1rem .3rem; border-radius: 4px; transition: color .2s;
  user-select: none;
}
.df-expand-btn:hover { color: rgba(255,255,255,.8); }
.df-iframe-wrap { position: relative; width: 100%; height: 440px; overflow: hidden; }
.df-iframe-wrap iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.df-desktop-stand {
  width: 60px; height: 28px;
  background: linear-gradient(180deg, #2A3530 0%, #1A2420 100%);
  margin: 0 auto;
}
.df-desktop-base {
  width: 160px; height: 8px;
  background: #1A2420; border-radius: 0 0 8px 8px;
}

/* ── TABLET FRAME ── */
.df-tablet { min-height: 600px; }
.df-tablet-outer {
  background: #1A2420; border-radius: 20px; padding: 14px 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.06);
  width: 340px; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.df-tablet-camera {
  width: 8px; height: 8px; background: #2A3530;
  border-radius: 50%;
}
.df-tablet-screen {
  width: 100%; flex: 1; background: var(--cream);
  border-radius: 10px; overflow: hidden;
  height: 480px;
}
.df-tablet-screen iframe { width: 100%; height: 100%; border: none; }
.df-tablet-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #2A3530; background: #111a18;
}

/* ── MOBILE FRAME ── */
.df-mobile { min-height: 600px; }
.df-mobile-outer {
  background: #1A2420; border-radius: 36px; padding: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
  width: 220px; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.df-mobile-notch {
  width: 70px; height: 20px; background: #1A2420;
  border-radius: 20px;
}
.df-mobile-screen {
  width: 100%; background: var(--cream);
  border-radius: 26px; overflow: hidden; height: 460px;
}
.df-mobile-screen iframe { width: 100%; height: 100%; border: none; }
.df-mobile-bar { padding: 4px 0 2px; display: flex; justify-content: center; }
.df-home-indicator {
  width: 80px; height: 4px; background: #2A3530; border-radius: 4px;
}

/* Stage height by device */
.device-stage[data-active="desktop"] { min-height: 560px; }
.device-stage[data-active="tablet"]  { min-height: 660px; }
.device-stage[data-active="mobile"]  { min-height: 660px; }

/* ════════════════════════════════════════
   FULLSCREEN MODAL
════════════════════════════════════════ */
.preview-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
}
.preview-modal.open { display: flex; }

.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(15,22,20,.88);
  backdrop-filter: blur(6px);
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-inner {
  position: relative; z-index: 1;
  width: calc(100vw - 2rem); max-width: 1200px;
  height: calc(100vh - 3rem); max-height: 860px;
  background: #1A2420; border-radius: 16px;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  overflow: hidden;
  animation: scaleIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes scaleIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

.modal-topbar {
  background: #2A3530; padding: .6rem 1rem;
  display: flex; align-items: center; gap: .85rem; flex-shrink: 0;
}
.modal-dots { display: flex; gap: .3rem; }
.modal-dots span { width: 9px; height: 9px; border-radius: 50%; }
.modal-dots span:nth-child(1){ background: #FF6057; }
.modal-dots span:nth-child(2){ background: #FFBD2E; }
.modal-dots span:nth-child(3){ background: #27C93F; }
.modal-url {
  background: rgba(255,255,255,.08); border-radius: 6px;
  padding: .22rem .7rem; font-size: .68rem;
  color: rgba(255,255,255,.45); font-family: 'DM Sans', sans-serif; letter-spacing: .02em;
}
.modal-device-tabs {
  display: flex; gap: .35rem; margin-left: auto;
}
.modal-dtab {
  border: none; background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5); font-size: .7rem; font-weight: 500;
  padding: .35rem .8rem; border-radius: 100px; cursor: pointer;
  transition: .2s; font-family: 'DM Sans', sans-serif;
}
.modal-dtab.active { background: var(--sage); color: #fff; }
.modal-dtab:hover:not(.active) { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }

.modal-close {
  background: rgba(255,255,255,.07); border: none; color: rgba(255,255,255,.5);
  width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; font-size: .85rem; display: flex;
  align-items: center; justify-content: center;
  transition: .2s; flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,0,0,.3); color: #fff; }

.modal-viewport {
  flex: 1; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: auto; padding: 1.5rem;
}

/* Mobile/tablet wrapping inside modal */
.modal-device-wrap { width: 100%; height: 100%; transition: all .4s ease; }
.modal-device-wrap.m-desktop { width: 100%; height: 100%; }
.modal-device-wrap.m-tablet  {
  width: 420px; height: 100%;
  background: #1A2420; border-radius: 20px; padding: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  overflow: hidden;
}
.modal-device-wrap.m-mobile  {
  width: 280px; height: 560px;
  background: #1A2420; border-radius: 36px; padding: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  overflow: hidden;
}
.modal-device-wrap iframe {
  width: 100%; height: 100%; border: none;
  border-radius: 4px;
}
.modal-device-wrap.m-tablet  iframe { border-radius: 10px; }
.modal-device-wrap.m-mobile  iframe { border-radius: 26px; }

/* ════════════════════════════════════════
   QUEM FAZ
════════════════════════════════════════ */
.quemfaz-section {
  padding: 5rem 1.25rem;
  background: var(--warm-white);
}
.quemfaz-inner { max-width: 1100px; margin: 0 auto; }

.quemfaz-card {
  display: flex; flex-direction: column; gap: 3rem;
  background: var(--cream);
  border: 1px solid rgba(46,107,94,.08);
  border-radius: 28px; padding: 2.5rem 2rem;
}
@media (min-width: 768px) {
  .quemfaz-section { padding: 6rem 2.5rem; }
  .quemfaz-card { flex-direction: row; gap: 4rem; padding: 3.5rem; }
}
@media (min-width: 1024px) {
  .quemfaz-section { padding: 7rem 4rem; }
}

/* Photo column */
.qf-photo-col { flex: 0 0 260px; display: flex; flex-direction: column; gap: 1.5rem; }
.qf-photo-col > img{border-radius: 20px;}
.qf-photo-wrap { position: relative; }
.qf-photo-placeholder {
  width: 100%; aspect-ratio: 3/4; max-height: 320px;
  background: linear-gradient(145deg, var(--sage-pale) 0%, var(--sage-mid) 100%);
  border-radius: 20px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(46,107,94,.12);
  /* ↓ Replace with: background-image: url('img/eduardo.jpg'); background-size: cover; background-position: center top; */
}
.qf-avatar-fallback {
  width: 60%; opacity: .5;
}
.qf-avatar-fallback svg { width: 100%; height: auto; }

.qf-photo-badge {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  background: var(--warm-white); border: 1px solid rgba(46,107,94,.12);
  border-radius: 100px; padding: .45rem 1rem; white-space: nowrap;
  font-size: .72rem; color: var(--sage); font-weight: 500;
  box-shadow: 0 4px 16px rgba(46,107,94,.1);
  display: flex; align-items: center; gap: .5rem;
}
.qf-badge-dot {
  width: 7px; height: 7px; background: #27C93F;
  border-radius: 50%; animation: pulse 2s infinite;
}

/* Credentials */
.qf-creds { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.25rem; }
.qf-cred {
  display: flex; align-items: flex-start; gap: .75rem;
  background: var(--warm-white); border: 1px solid rgba(46,107,94,.07);
  border-radius: 12px; padding: .75rem 1rem;
  transition: box-shadow .25s;
}
.qf-cred:hover { box-shadow: 0 4px 16px rgba(46,107,94,.08); }
.qf-cred-icon { font-size: 1.1rem; flex-shrink: 0; }
.qf-cred-title { font-size: .72rem; font-weight: 600; color: var(--ink); margin-bottom: .1rem; }
.qf-cred-desc  { font-size: .7rem; color: var(--mist); }

/* Text column */
.qf-text-col { flex: 1; }
.qf-text-col .section-tag { margin-bottom: .6rem; }
.qf-text-col .section-title { margin-bottom: 1.5rem; font-size: clamp(1.6rem, 3vw, 2.4rem); }

.qf-bio {
  font-size: .93rem; color: var(--ink-light); line-height: 1.8;
  font-weight: 300; margin-bottom: 1rem;
}
.qf-bio strong { color: var(--ink); font-weight: 500; }

.qf-stats-row {
  display: flex; gap: 2rem; margin: 1.75rem 0 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--sage-pale);
  border-radius: 16px; flex-wrap: wrap;
}
.qf-stat-num {
  font-family: 'Fraunces', serif; font-size: 1.8rem;
  font-weight: 400; color: var(--sage); line-height: 1;
}
.qf-stat-label { font-size: .72rem; color: var(--mist); margin-top: .2rem; }

.qf-cta { margin-top: .25rem; }
