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

:root {
  --bg-main: #060607;
  --bg-card: #0d0d10;
  --bg-card-hover: #131318;
  --bg-surface: #101014;
  --bg-glass: rgba(13, 13, 16, 0.88);
  
  --gold-primary: #d4af37;
  --gold-light: #f5e8be;
  --gold-bronze: #c5a880;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f7ecc6 50%, #aa820a 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --text-main: #ffffff;
  --text-muted: #b0b0b8;
  --text-dim: #767682;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-active: rgba(212, 175, 55, 0.7);
  
  --font-display: 'Syne', sans-serif;
  --font-title: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 0 35px -5px rgba(212, 175, 55, 0.3);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* Fundo com efeito de luz ambiente sutil */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* TOP SCARCITY TICKER */
.top-ticker {
  background: linear-gradient(90deg, #100e07, #241c0b, #100e07);
  border-bottom: 1px solid var(--border-gold);
  padding: 10px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 100;
}

.top-ticker .badge-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff4757;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px #ff4757;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(255, 71, 87, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(6, 6, 7, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 90;
  padding: 14px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 6, 7, 0.96);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  padding: 11px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* LOGO OFICIAL */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  height: 38px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: contrast(1.1);
  transition: var(--transition);
}

.brand-logo:hover .site-logo-img {
  opacity: 0.9;
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTONS — FULLY RESPONSIVE AND ADAPTIVE */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: normal;
  text-wrap: balance;
  line-height: 1.35;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  user-select: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5);
  color: #000000;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #22bf5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  border-color: var(--border-gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #ffffff;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 0.98rem;
}

.btn-block-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HERO SECTION (ANEXO 2 STYLE) */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 50px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-badge svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.5px;
  color: var(--text-main);
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-title span.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.68;
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-cta-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-guarantee-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.hero-guarantee-note svg {
  color: #2ed573;
  flex-shrink: 0;
}

/* HERO IMAGE CONTAINER */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-container:hover img {
  transform: scale(1.02);
}

.hero-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, var(--bg-main) 10%, transparent 100%);
  pointer-events: none;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 2;
}

.hero-card-floating {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: rgba(16, 16, 20, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-card-floating .icon-gold {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.hero-card-floating .card-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.hero-card-floating .card-text p {
  font-size: 0.75rem;
  color: var(--gold-bronze);
}

/* STATS BAR */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 0 10px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.stat-number span {
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* SECTION COMMONS */
.section {
  padding: 85px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-tag {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-bronze);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 14px;
  text-wrap: balance;
}

.section-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* METHODOLOGY / SERVICES GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.3);
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.card-actions {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* TIMELINE (SCHEDULE) */
.timeline-wrap {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-primary), rgba(212, 175, 55, 0.1));
}

.timeline-step {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
  position: relative;
}

.timeline-bullet {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold-light);
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  flex-grow: 1;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}

.timeline-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
}

.timeline-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-theory { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.tag-practice { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.tag-break { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.tag-bonus { background: rgba(212, 175, 55, 0.15); color: var(--gold-light); border: 1px solid var(--border-gold); }

.timeline-content ul {
  list-style: none;
  margin-top: 8px;
}

.timeline-content ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.timeline-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 700;
}

/* PROVA SOCIAL REAL */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.proof-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.proof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.proof-card:hover .proof-img img {
  transform: scale(1.04);
}

.proof-caption {
  padding: 20px;
}

.proof-caption h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.proof-caption p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* BIO / AUTORIDADE */
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.bio-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  max-width: 440px;
  margin: 0 auto;
}

.bio-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05);
}

.bio-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

.bio-content p {
  font-size: 0.96rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.bio-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bio-badge-item {
  padding: 7px 13px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* PRICING & OFFER CARD */
.pricing-wrap {
  max-width: 740px;
  margin: 0 auto;
  background: linear-gradient(180deg, #15141a 0%, #0d0d11 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.pricing-wrap::before {
  content: '5 VAGAS EXCLUSIVAS';
  position: absolute;
  top: 24px;
  right: -55px;
  background: var(--gold-gradient);
  color: #000;
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 60px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pricing-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.price-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition);
}

.price-box:hover {
  transform: translateY(-2px);
  border-color: var(--border-gold);
}

.price-box.featured {
  border-color: var(--border-gold);
  background: rgba(212, 175, 55, 0.05);
}

.price-box-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-bronze);
  margin-bottom: 6px;
}

.price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.price-box small {
  color: var(--text-dim);
  font-size: 0.78rem;
}

.reserve-highlight {
  background: rgba(46, 213, 115, 0.1);
  border: 1px dashed rgba(46, 213, 115, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  margin-bottom: 28px;
}

.reserve-highlight strong {
  color: #2ed573;
  font-size: 1.05rem;
}

.reserve-highlight p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 4px;
}

.included-list {
  list-style: none;
  margin-bottom: 32px;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.included-list li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.refund-terms {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.74rem;
  color: var(--text-dim);
  line-height: 1.5;
  text-align: center;
}

/* FAQ SECTION */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  user-select: none;
  gap: 12px;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* FOOTER */
.footer {
  background: #040405;
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 25px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 35px;
}

.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.03);
}

/* STICKY MOBILE CONVERSION BAR WITH SAFE-AREA */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 13, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px max(14px, env(safe-area-inset-bottom));
  z-index: 150;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.85);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mobile-sticky-text {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-text span {
  font-size: 0.68rem;
  color: var(--gold-bronze);
  text-transform: uppercase;
  font-weight: 700;
}

.mobile-sticky-text strong {
  font-size: 0.88rem;
  color: #fff;
  white-space: nowrap;
}

.mobile-sticky-btns {
  display: flex;
  gap: 8px;
}

/* ========================================================
   RESPONSIVIDADE COMPLETA E CORREÇÃO DE QUEBRAS
   ======================================================== */

/* TABLETS (<= 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-subtitle {
    margin: 0 auto 28px;
  }
  
  .hero-cta-btns {
    justify-content: center;
  }
  
  .hero-guarantee-note {
    justify-content: center;
  }
  
  .hero-image-wrap {
    order: -1;
  }
  
  .hero-image-container {
    max-width: 360px;
  }
  
  .hero-card-floating {
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    width: 88%;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .bio-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .bio-badges {
    justify-content: center;
  }
  
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}

/* SMARTPHONES (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 30px 0 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-btns .btn {
    width: 100%;
  }

  .btn {
    padding: 13px 18px;
    font-size: 0.88rem;
  }

  .btn-lg {
    padding: 15px 18px;
    font-size: 0.90rem;
    line-height: 1.35;
  }

  .pricing-boxes {
    grid-template-columns: 1fr;
  }

  .pricing-wrap {
    padding: 30px 16px;
  }

  .pricing-wrap::before {
    display: none;
  }

  .timeline-wrap::before {
    left: 20px;
  }

  .timeline-bullet {
    width: 42px;
    height: 42px;
    font-size: 0.72rem;
  }

  .timeline-step {
    gap: 16px;
  }

  .timeline-content {
    padding: 16px;
  }

  .proof-img {
    height: 220px;
  }

  .mobile-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 75px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-actions {
    justify-content: center;
    width: 100%;
  }

  .footer-actions .btn {
    width: 100%;
  }
}

/* SMARTPHONES PEQUENOS (<= 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .site-logo-img {
    max-width: 170px;
  }

  .btn {
    font-size: 0.82rem;
    padding: 11px 14px;
  }

  .btn-lg {
    font-size: 0.85rem;
    padding: 13px 14px;
  }

  .mobile-sticky-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-sticky-btns {
    width: 100%;
  }

  .mobile-sticky-btns .btn {
    flex: 1;
    font-size: 0.75rem;
    padding: 8px 10px;
  }
}
