/* =========================================================
   TITAN FITNESS CLUB — Design System v3
   Paleta oficial: creme #E5E4D0 · navy #0A125D · red #BA1525
   Estética: Athletic Editorial — arquitetônico, premium
   ========================================================= */

@font-face {
  font-family: 'Roca One';
  src: url('../fonts/roca-one.woff2') format('woff2');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Vintage Goods';
  src: url('../fonts/vintage-goods.woff2') format('woff2');
  font-weight: normal; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --c-cream:       #E5E4D0;
  --c-cream-soft:  #ECEBD9;
  --c-cream-deep:  #D8D7BF;
  --c-blue:        #0A125D;
  --c-blue-dark:   #060B40;
  --c-blue-mid:    #0E1A70;
  --c-red:         #BA1525;
  --c-red-dark:    #960F1B;
  --c-navy:        #07103A;
  --c-gray:        #4A4A4A;
  --c-gray-light:  #787878;
  --c-white:       #FFFFFF;
  --c-black:       #111111;

  --font-display: 'Roca One', 'Bowlby One', 'Impact', 'Arial Black', sans-serif;
  --font-script:  'Vintage Goods', 'Dancing Script', cursive;
  --font-body:    'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --max-w:        1200px;
  --max-w-narrow: 880px;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  14px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow-sm: 0 2px 10px rgba(10,18,93,0.10);
  --shadow:    0 10px 30px rgba(10,18,93,0.15);
  --shadow-lg: 0 24px 56px rgba(10,18,93,0.22);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-gray);
  background: var(--c-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; }

/* ---------- Utils ---------- */
.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: 1.5rem;
  position: relative; z-index: 2;
}
.container-narrow { max-width: var(--max-w-narrow); }
.text-center  { text-align: center; }
.text-red     { color: var(--c-red); }
.text-white   { color: var(--c-white) !important; }
.text-light   { color: rgba(255,255,255,0.78); }
.text-emphasis { font-size: 1.15em; font-weight: 700; }
.mt-lg        { margin-top: 1.5rem; }
.script       { font-family: var(--font-script); font-weight: 500; }
.script-bold  { font-family: var(--font-script); font-weight: 700; }

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
}

/* Textura de pontos sutis nas seções creme */
.section-cream {
  background: var(--c-cream);
  color: var(--c-gray);
}
.section-cream::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10,18,93,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none; z-index: 0;
  opacity: 0.5;
}
.section-blue  { background: var(--c-blue);  color: var(--c-white); }
.section-navy  { background: var(--c-navy);  color: var(--c-white); }

/* ---------- Credential Strip ---------- */
.cred-strip {
  background: var(--c-navy);
  border-top: 3px solid var(--c-red);
  border-bottom: 1px solid rgba(186,21,37,0.2);
  padding: 1rem 0;
  overflow: hidden;
}
.cred-items {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.cred-item { display: flex; align-items: center; gap: 0.7rem; padding: 0.4rem 2.5rem; }
.cred-icon { width: 18px; height: 18px; color: var(--c-red); flex-shrink: 0; }
.cred-icon svg { width: 100%; height: 100%; }
.cred-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.cred-sep { width: 1px; height: 22px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
@media (max-width: 768px) {
  .cred-item { padding: 0.4rem 1.25rem; }
  .cred-text { font-size: 0.68rem; letter-spacing: 1px; }
  .cred-sep  { display: none; }
}

/* ---------- Section titles ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.6vw, 3.25rem);
  color: var(--c-blue);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.section-blue .section-title,
.section-navy .section-title { color: var(--c-white); }

.section-lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--c-gray);
}
.section-blue .section-lead,
.section-navy .section-lead { color: rgba(255,255,255,0.78); }

/* ---------- Dividers — duplo editorial ---------- */
.divider {
  width: 56px;
  height: 3px;
  background: var(--c-red);
  margin: 0 auto 3rem;
  border-radius: 0;
  position: relative;
}
.divider::after {
  content: '';
  position: absolute;
  bottom: -7px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 3px;
  background: var(--c-blue);
  border-radius: 0;
}
.divider-blue { background: var(--c-blue); }
.divider-blue::after { background: var(--c-red); }
.divider-red  { background: var(--c-red); }
.divider-red::after { background: rgba(255,255,255,0.3); }

/* ---------- Prose ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  line-height: 1.78;
}
.prose p { margin: 0.5rem 0; }
.prose-white { color: rgba(255,255,255,0.92); }
.prose-white strong { color: var(--c-white); }
.callout-final {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  text-align: center;
  font-weight: 600;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 2rem !important;
}
.callout-final .script-bold {
  color: var(--c-red);
  font-size: 1.4em;
  display: inline-block;
  transform: translateY(2px);
}

/* ---------- Watermarks & decos ---------- */
.watermark {
  position: absolute; pointer-events: none; z-index: 0;
  opacity: 0.05; filter: grayscale(1) contrast(1.2);
}
.watermark img { width: 100%; height: 100%; object-fit: contain; }
.watermark-center {
  top: 50%; left: 50%;
  width: min(700px, 90vw); height: min(700px, 90vw);
  transform: translate(-50%,-50%);
}
.watermark-right { top: 0; right: -10%; width: 60%; height: 100%; opacity: 0.04; }
.watermark-left  { top: 0; left: -10%;  width: 60%; height: 100%; opacity: 0.04; }
.opacity-blue-deep { opacity: 0.06; filter: brightness(0) invert(1); }

.corner-deco { position: absolute; width: clamp(140px,18vw,240px); pointer-events: none; z-index: 1; opacity: 0.07; }
.corner-tl { top: 2rem; left: 1rem; }
.corner-tr { top: 2rem; right: 1rem; }
.corner-bl { bottom: 2rem; left: 1rem; }
.corner-br { bottom: 2rem; right: 1rem; }
.opacity-blue { opacity: 0.08; }

.section-deco { position: absolute; pointer-events: none; user-select: none; z-index: 1; }
.section-deco img { display: block; width: 100%; }
.tint-red   { filter: brightness(0) saturate(100%) invert(14%) sepia(98%) saturate(4867%) hue-rotate(351deg) brightness(94%) contrast(105%); }
.tint-white { filter: brightness(0) invert(1); }
.deco-subtle { opacity: 0.07; }
.deco-light  { opacity: 0.11; }
.deco-medium { opacity: 0.17; }

.deco-hero-right   { right: -1%; bottom: 0; width: clamp(200px,22vw,340px); }
.deco-hero-left    { left: -1%;  bottom: 0; width: clamp(160px,17vw,270px); }
.deco-right-mid    { right: 0; top: 50%; transform: translateY(-50%); width: clamp(200px,22vw,360px); }
.deco-left-mid     { left: 0;  top: 50%; transform: translateY(-50%); width: clamp(200px,22vw,360px); }
.deco-right-bottom { right: 0; bottom: 0; width: clamp(180px,20vw,320px); }
.deco-left-bottom  { left: 0;  bottom: 0; width: clamp(180px,20vw,320px); }
.deco-right-top-badge { right: clamp(1.5rem,3vw,4rem); top: clamp(1.5rem,3vw,3rem); width: clamp(90px,10vw,150px); }
.deco-year-bg { left: 50%; top: 50%; transform: translate(-50%,-50%); width: clamp(300px,45vw,660px); filter: brightness(0) invert(1); opacity: 0.04; }

.solucao-brand-accent { text-align: center; margin: 2.5rem auto 0.5rem; max-width: 230px; opacity: 0.88; }
.solucao-brand-accent img { margin: 0 auto; }

@media (max-width: 768px) { .section-deco { display: none; } }

/* Hero decos */
.hero-bg-figure { display: none; }
.hero-bg-figure img { display: block; width: 100%; }
.hero-deco-bl { position: absolute; left: -1%; bottom: 0; width: clamp(150px,16vw,250px); z-index: 1; pointer-events: none; mix-blend-mode: multiply; opacity: 0.18; }
.hero-deco-bl img { display: block; width: 100%; }
.hero-deco-tr { display: none; }
.hero-deco-tr img { display: block; width: 100%; }
.hero-since   { display: none; }
.hero-since img { display: block; width: 100%; }
.deco-dor-figure { right: 4%; top: 22%; width: clamp(230px,27vw,440px); opacity: 0.10; }

/* Assinatura */
.sig-text { color: rgba(255,255,255,0.97); display: block; font-size: 0.9em; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.sig-brand { color: var(--c-red); }
.rafael-signature { display: block; width: clamp(120px,14vw,185px); margin-top: 0.75rem; margin-left: auto; filter: brightness(0) invert(1); opacity: 0.88; }

/* CTA decos */
.deco-cta-left  { left: 2%;   bottom: 0; width: clamp(100px,11vw,165px); }
.deco-cta-right { top: clamp(1.5rem,3vw,2.5rem); left: 50%; transform: translateX(-50%); width: clamp(55px,6vw,95px); opacity: 0.10; }
.deco-cta-base  { right: 2%;  bottom: 0; width: clamp(100px,11vw,170px); }
.deco-cta-watermark { opacity: 0.055 !important; filter: brightness(0) invert(1) !important; }

.footer-bg-deco { position: absolute; right: -3%; bottom: 8%; width: clamp(200px,24vw,360px); pointer-events: none; opacity: 0.035; filter: brightness(0) invert(1); z-index: 0; }
.footer-bg-deco img { display: block; width: 100%; }

@media (max-width: 768px) {
  .hero-bg-figure, .hero-deco-bl, .hero-deco-tr, .hero-since { display: none; }
}

/* ---------- Buttons — retangulares ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: background 200ms var(--ease), color 200ms var(--ease), transform 180ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--c-red);
  color: var(--c-white);
  box-shadow: 0 6px 22px rgba(186,21,37,0.32);
}
.btn-primary:hover {
  background: var(--c-red-dark);
  box-shadow: 0 14px 36px rgba(186,21,37,0.44);
}
.btn-outline {
  background: transparent;
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.btn-outline:hover {
  background: var(--c-blue);
  color: var(--c-white);
}
.btn-lg  { padding: 1.05rem 2.5rem; font-size: 0.92rem; letter-spacing: 2px; }
.btn-sm  { padding: 0.55rem 1.2rem; font-size: 0.72rem; letter-spacing: 1px; }
.btn-block { width: 100%; }

/* ---------- Announce bar ---------- */
.announce-bar {
  background: var(--c-navy);
  color: var(--c-white);
  text-align: center;
  padding: 0.7rem 3rem;
  font-size: 0.86rem;
  font-family: var(--font-body);
  position: relative; z-index: 110;
  line-height: 1.4; overflow: hidden;
  border-bottom: 3px solid var(--c-red);
}
.announce-bar::before {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 38%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.055) 50%, transparent 100%);
  transform: skewX(-18deg) translateX(-200%);
  animation: announceShimmer 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes announceShimmer {
  0%        { transform: skewX(-18deg) translateX(-200%); }
  40%, 100% { transform: skewX(-18deg) translateX(420%); }
}
.announce-fire { display: inline-block; animation: firePulse 3s ease-in-out infinite; }
@keyframes firePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }
.announce-bar p { margin: 0; }
.announce-link { color: #FFBFC5; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; transition: color 200ms ease; }
.announce-link:hover { color: var(--c-white); }
.announce-close { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.7); font-size: 1rem; padding: 0.3rem; transition: color 200ms ease; }
.announce-close:hover { color: var(--c-white); }
.announce-bar.is-hidden { display: none; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(to right, var(--c-red), #E05565);
  z-index: 999; transition: width 60ms linear; pointer-events: none;
}

/* ---------- Wave dividers ---------- */
.wave-divider { overflow: hidden; line-height: 0; position: relative; z-index: 2; margin: -6px 0; display: block; }
.wave-divider svg { display: block; width: 100%; height: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(229,228,208,0.96);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 2px solid var(--c-blue);
  transform: translateY(-100%);
  transition: transform 380ms var(--ease);
}
.site-header.is-visible { transform: translateY(0); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.7rem; }
.header-brand img { height: 42px; width: auto; filter: none; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(5rem, 10vw, 8rem) 1.5rem 4rem;
  position: relative; overflow: hidden;
  background: var(--c-cream);
}
/* Faixa de acento vertical esquerda */
.hero::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--c-red) 0%, var(--c-blue) 100%);
  z-index: 3;
}
.hero-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem; align-items: center; width: 100%;
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-photo { position: relative; z-index: 3; }
.hero-photo img { width: 100%; display: block; border-radius: var(--radius-lg); box-shadow: 0 32px 72px rgba(10,18,93,0.28); }
.hero-photo::before {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px; top: 10px; left: 10px;
  border: 2px solid rgba(186,21,37,0.4);
  border-radius: var(--radius-lg); z-index: -1;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(6,11,64,0.22) 100%);
  border-radius: var(--radius-lg); pointer-events: none; z-index: 1;
}
.hero-logo { width: clamp(150px,16vw,220px); margin-bottom: 1.75rem; filter: drop-shadow(0 8px 24px rgba(10,18,93,0.18)); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  color: var(--c-blue); line-height: 1.0;
  letter-spacing: 0.3px; max-width: 680px; margin-bottom: 1.6rem;
}
.hero-subtitle { max-width: 520px; font-size: clamp(1rem,1.25vw,1.15rem); color: var(--c-gray); margin: 0 0 2.25rem; line-height: 1.65; }
.hero-slogan { margin-top: 2.5rem; font-family: var(--font-script); font-size: clamp(1.75rem,3vw,2.5rem); color: var(--c-blue); opacity: 0.65; letter-spacing: 1.5px; line-height: 1.5; }
.scroll-cue {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px; border: 2px solid var(--c-blue); border-radius: 12px; opacity: 0.4;
}
.scroll-cue span { display: block; width: 3px; height: 7px; background: var(--c-blue); margin: 6px auto; border-radius: 2px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { transform:translateY(0); opacity:1; } 50% { transform:translateY(10px); opacity:0.3; } }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.pillar {
  text-align: center; padding: 2.2rem 1.5rem;
  background: var(--c-white); border-radius: var(--radius);
  border: 1px solid rgba(10,18,93,0.10);
  border-top: 4px solid var(--c-blue);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-top-color 260ms ease;
}
.pillar:hover { box-shadow: var(--shadow); border-top-color: var(--c-red); }
.pillar-icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  background: var(--c-blue); color: var(--c-white);
  border-radius: var(--radius-sm); display: grid; place-items: center; padding: 14px;
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar h3 { font-family: var(--font-display); color: var(--c-blue); font-size: 1.3rem; margin-bottom: 0.5rem; letter-spacing: 0.5px; }
.pillar p { color: var(--c-gray); font-size: 0.98rem; margin: 0; }

/* ---------- Rafael ---------- */
.rafael-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 3rem; align-items: center; margin-top: 3rem; }
.rafael-photo { position: relative; }
.photo-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 3px solid var(--c-red); box-shadow: 0 30px 60px rgba(0,0,0,0.3); aspect-ratio: 4/5;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.photo-badge { display: none; }
.photo-overlay-brand {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.4rem 1.1rem;
  background: linear-gradient(to top, rgba(6,11,64,0.82) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex; align-items: flex-end;
}
.photo-overlay-brand img { width: 115px; filter: brightness(0) invert(1); opacity: 0.88; }
.rafael-text .signature { font-size: clamp(1.6rem,2.8vw,2.1rem); color: var(--c-red); margin-top: 2rem; text-align: right; line-height: 1.5; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); }

/* ---------- Cards (Entregas) ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.card {
  background: var(--c-white); padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10,18,93,0.10);
  border-left: 4px solid var(--c-red);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-left-color 260ms ease;
  position: relative;
}
.card:hover { box-shadow: var(--shadow); border-left-color: var(--c-blue); }
.card-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-dark));
  color: var(--c-white); border-radius: var(--radius-sm);
  display: grid; place-items: center; padding: 12px; margin-bottom: 1.1rem;
}
.card-icon svg { width: 100%; height: 100%; }
.card h3 { font-family: var(--font-display); color: var(--c-blue); font-size: 1.05rem; margin-bottom: 0.5rem; letter-spacing: 0.3px; line-height: 1.2; }
.card p { font-size: 0.93rem; color: var(--c-gray); margin: 0; line-height: 1.6; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3rem; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 38px; left: 12.5%; right: 12.5%; height: 2px;
  background: repeating-linear-gradient(to right, rgba(255,255,255,0.35) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; padding: 1rem; }
.step-num {
  width: 76px; height: 76px; margin: 0 auto 1.2rem;
  background: var(--c-red); color: var(--c-white);
  border-radius: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.5rem;
  border: 4px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 30px rgba(186,21,37,0.45);
  clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%);
}
.section-navy .step-num { border-color: rgba(255,255,255,0.18); }
.step h3 { font-family: var(--font-display); color: var(--c-white); font-size: 1.1rem; margin-bottom: 0.5rem; letter-spacing: 0.4px; }
.step p  { color: rgba(255,255,255,0.78); font-size: 0.93rem; margin: 0; }

/* ---------- Plans ---------- */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; align-items: stretch; }
.plan {
  background: var(--c-white); border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 2px solid rgba(10,18,93,0.10);
  display: flex; flex-direction: column; position: relative;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.plan:hover { box-shadow: var(--shadow); }
.plan-featured {
  background: var(--c-blue); color: var(--c-white);
  transform: scale(1.05); box-shadow: var(--shadow-lg);
  border-color: var(--c-red); z-index: 2;
}
.plan-featured:hover { box-shadow: var(--shadow-lg); }
.plan-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--c-red); color: var(--c-white);
  padding: 0.5rem 1.6rem; border-radius: 0;
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 2px;
  white-space: nowrap; box-shadow: 0 6px 20px rgba(186,21,37,0.5);
}
.plan-header { text-align: center; margin-bottom: 1.5rem; }
.plan h3 { font-family: var(--font-display); color: var(--c-blue); font-size: 1.6rem; letter-spacing: 0.5px; }
.plan-featured h3 { color: var(--c-white); }
.plan-sub { color: var(--c-gray-light); font-size: 0.9rem; margin: 0.4rem 0 0; text-transform: uppercase; letter-spacing: 1px; }
.plan-featured .plan-sub { color: rgba(255,255,255,0.7); }
.plan-price { text-align: center; font-family: var(--font-display); color: var(--c-blue); display: flex; justify-content: center; align-items: baseline; gap: 0.25rem; margin-bottom: 0.4rem; }
.plan-featured .plan-price { color: var(--c-white); }
.price-currency { font-size: 1.2rem; opacity: 0.7; }
.price-amount { font-size: clamp(3rem,5vw,4rem); line-height: 1; }
.price-period { font-size: 1rem; opacity: 0.6; font-family: var(--font-body); }
.plan-save { text-align: center; color: var(--c-red); font-weight: 700; margin: 0 0 1.5rem; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.plan-featured .plan-save { color: #FFAEAE; }
.plan-features { flex: 1; margin-bottom: 1.5rem; }
.plan-features li { padding: 0.6rem 0; border-bottom: 1px solid rgba(10,18,93,0.08); font-size: 0.95rem; display: flex; align-items: center; gap: 0.6rem; }
.plan-featured .plan-features li { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.88); }
.plan-features li::before { content: '✓'; color: var(--c-red); font-weight: 700; }
.plan-featured .plan-features li::before { color: #FFAEAE; }
.plan-micro { text-align: center; font-size: 0.78rem; color: var(--c-gray-light); margin-top: 0.75rem; }
.plan-featured .plan-micro { color: rgba(255,255,255,0.5); }
.plans-note { text-align: center; margin-top: 2.5rem; color: var(--c-gray-light); font-size: 0.95rem; font-style: italic; }
.plans-guarantee { text-align: center; margin-top: 0.75rem; color: var(--c-gray-light); font-size: 0.88rem; font-style: italic; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--c-red); border-radius: var(--radius);
  padding: 2.25rem 2rem 2rem; position: relative;
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease);
}
.testimonial:hover { background: rgba(255,255,255,0.10); box-shadow: 0 22px 44px rgba(0,0,0,0.22); }
.testimonial-photo { margin: -2.25rem -2rem 0; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; flex-shrink: 0; }
.testimonial-photo img { width: 100%; height: auto; display: block; }
.testimonial-quote { font-family: var(--font-script); font-size: 4.5rem; color: var(--c-red); line-height: 1; opacity: 0.9; margin-top: 1.1rem; margin-bottom: -0.5rem; }
.testimonial-text { margin: 0.75rem 0 1.25rem; color: rgba(255,255,255,0.92); font-size: 1.02rem; line-height: 1.74; flex: 1; }
.testimonial-author { display: flex; flex-direction: row; align-items: center; gap: 0.9rem; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.1rem; margin-top: auto; }
.author-info { display: flex; flex-direction: column; }
.author-name { font-family: var(--font-display); color: var(--c-white); font-size: 0.98rem; letter-spacing: 0.5px; }
.author-meta { color: rgba(255,255,255,0.52); font-size: 0.82rem; font-style: italic; margin-top: 0.15rem; }
.testimonials-group-photo { margin-top: 3.5rem; max-width: 660px; margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); }
.testimonials-group-photo img { width: 100%; display: block; }
.group-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 1.5rem 1.1rem; background: linear-gradient(to top, rgba(7,16,58,0.88) 0%, transparent 100%); font-size: 0.82rem; color: rgba(255,255,255,0.72); font-family: var(--font-body); letter-spacing: 0.5px; text-align: center; margin: 0; }

/* ---------- FAQ ---------- */
.faq { margin-top: 2.5rem; }
.faq-item {
  background: var(--c-white);
  border: 1px solid rgba(10,18,93,0.10);
  border-left: 3px solid transparent;
  border-radius: var(--radius); margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 200ms var(--ease), border-left-color 200ms ease, box-shadow 200ms ease;
}
.faq-item:hover { border-color: rgba(10,18,93,0.22); }
.faq-item.is-open { border-left-color: var(--c-red); border-color: rgba(10,18,93,0.18); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 1.25rem 1.5rem; font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--c-blue); gap: 1rem; }
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--c-red); border-radius: 1px; transition: transform 300ms var(--ease); }
.faq-icon::before { top: 50%; left: 0; right: 0; height: 2.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 2.5px; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 400ms var(--ease); }
.faq-a p { padding: 0 1.5rem 1.5rem; margin: 0; color: var(--c-gray); line-height: 1.7; }
.faq-a a { color: var(--c-red); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200;
  display: flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff;
  padding: 0.8rem 1.3rem 0.8rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.whatsapp-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.whatsapp-float:hover { box-shadow: 0 12px 32px rgba(37,211,102,0.52); }
@media (max-width: 500px) {
  .whatsapp-float { padding: 0.85rem; }
  .whatsapp-label { display: none; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; bottom: 5.5rem; right: 1.75rem; z-index: 200;
  width: 44px; height: 44px; background: var(--c-blue); color: var(--c-white);
  border-radius: var(--radius-sm); display: grid; place-items: center;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(12px);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease), background 200ms ease;
  pointer-events: none;
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--c-red); }
@media (max-width: 500px) { .back-to-top { bottom: 5.8rem; right: 1.4rem; width: 40px; height: 40px; } }

/* ---------- Final CTA ---------- */
.final-cta { padding: clamp(5rem,10vw,8rem) 0; }
.final-headline { font-family: var(--font-display); font-size: clamp(1.85rem,4.8vw,3.5rem); letter-spacing: 0.5px; margin-bottom: 1.2rem; line-height: 1.05; }
.final-sub { font-size: clamp(1.05rem,1.5vw,1.25rem); margin-bottom: 2.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(170deg, var(--c-blue) 0%, var(--c-blue-dark) 45%, #03072e 100%);
  color: rgba(255,255,255,0.75);
  padding: 5.5rem 0 2.5rem; position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--c-red) 0%, var(--c-blue-mid) 50%, var(--c-red) 100%);
  opacity: 0.9; z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { width: 145px; margin: 0 auto 1.25rem; display: block; filter: brightness(0) invert(1); opacity: 0.90; }
.footer-brand { text-align: center; }
.footer-slogan { font-family: var(--font-display); font-size: clamp(1.05rem,1.5vw,1.35rem); color: var(--c-cream); max-width: 340px; line-height: 1.3; margin: 0 auto; letter-spacing: 0.3px; }
.footer-col h4 { font-family: var(--font-display); color: var(--c-white); font-size: 1rem; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.55rem; font-size: 0.94rem; }
.footer-col a { transition: color 200ms ease; }
.footer-col a:hover { color: var(--c-red); }
.footer-disclaimer { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem; }
.footer-disclaimer p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; font-style: italic; max-width: 950px; margin: 0 auto; text-align: center; }
.footer-bottom { text-align: center; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 0.82rem; margin: 0; color: rgba(255,255,255,0.4); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 400ms var(--ease), transform 400ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 50ms; }
.reveal-delay-2 { transition-delay: 110ms; }
.reveal-delay-3 { transition-delay: 175ms; }
.reveal-delay-4 { transition-delay: 250ms; }

/* ---------- Hover transforms — somente em dispositivos com cursor real ---------- */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover:not(:active)  { transform: translateY(-2px); }
  .btn-outline:hover:not(:active)  { transform: translateY(-2px); }
  .pillar:hover        { transform: translateY(-5px); }
  .card:hover          { transform: translateY(-5px); }
  .plan:hover          { transform: translateY(-6px); }
  .plan-featured:hover { transform: scale(1.05) translateY(-6px); }
  .testimonial:hover   { transform: translateY(-5px); }
  .whatsapp-float:hover { transform: translateY(-3px) scale(1.04); }
  .back-to-top:hover   { transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue span, .announce-bar::before, .announce-fire { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-content { align-items: center; text-align: center; }
  .hero-photo { max-width: 420px; margin-inline: auto; }
  .hero-photo::before { display: none; }
  .hero::after { display: none; }
  .pillars, .cards-grid, .testimonials { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-6px); }
  .rafael-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .rafael-photos { grid-template-columns: repeat(3,1fr); }
  .rafael-photo { max-width: 420px; margin-inline: auto; }
  .rafael-text .signature { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.btn-outline-hero {
  font-size: 0.8rem;
  padding: 0.85rem 1.75rem;
  letter-spacing: 1.5px;
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding-inline: 1.25rem; }
  .section { padding: 4rem 0; }
  .pillars, .cards-grid, .testimonials, .steps { grid-template-columns: 1fr; }
  .corner-deco { width: 100px; opacity: 0.04; }
  .hero { padding-top: 5.5rem; min-height: auto; padding-bottom: 5.5rem; }
  .hero-inner { gap: 2rem; }
  .hero-photo { max-width: 320px; }
  .hero-headline { line-height: 1.05; }
  .hero-slogan { font-size: 1.3rem; }
  .photo-badge { width: 110px; bottom: -14px; right: -10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-slogan { margin-inline: auto; }
  .scroll-cue { display: none; }
  .header-brand img { height: 36px; }
  .btn-sm { padding: 0.5rem 1rem; font-size: 0.72rem; }
  .announce-bar { padding: 0.5rem 2.5rem; font-size: 0.8rem; }

  /* Mobile hero CTAs */
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
  .hero-ctas .btn-primary {
    width: 100%;
    max-width: 320px;
    padding: 1.1rem 2rem;
    font-size: 0.94rem;
    letter-spacing: 2px;
  }
  .btn-outline-hero {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    opacity: 0.85;
  }
}
