/* ============================================================
   ClubMasSalud - home.css
   Estilos da landing page pública
   ============================================================ */

/* ── Variáveis (herda do style.css via partials/head.ejs) ─── */
:root {
  --nav-h: 72px;
}

/* ── Reset base para homepage ────────────────────────────── */
body.home-page {
  background: #fff;
  overflow-x: hidden;
}

/* ================================================================
   NAVBAR PÚBLICA
   ================================================================ */
.public-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  z-index: 999;
  transition: all .3s ease;
}
.public-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  background: rgba(255,255,255,.98);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; }
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: .6rem;
  color: #0ea5e9;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: #475569;
  transition: all .2s;
  text-decoration: none;
}
.nav-link:hover { background: #f1f5f9; color: #0ea5e9; }
.nav-link.active { color: #0ea5e9; font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-btn-login {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  font-size: .875rem;
  font-weight: 600;
  color: #475569;
  background: transparent;
  text-decoration: none;
  transition: all .2s;
}
.nav-btn-login:hover { border-color: #0ea5e9; color: #0ea5e9; background: #eff6ff; }
.nav-btn-cta {
  padding: 9px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(14,165,233,.3);
}
.nav-btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(14,165,233,.4); color: #fff; }

/* Mobile menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #475569;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 998;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 10px 12px; }
.mobile-menu .nav-actions { flex-direction: column; margin-left: 0; margin-top: 8px; }
.mobile-menu .nav-btn-login,
.mobile-menu .nav-btn-cta { text-align: center; }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #f8fafc 0%, #eff6ff 40%, #e0f2fe 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  border: 1px solid #bae6fd;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: #0284c7;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-badge i { color: #f59e0b; }
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 16px;
}
.hero-title span {
  background: linear-gradient(135deg, #0ea5e9, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-promo {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-promo-label { font-size: .7rem; opacity: .6; }
.hero-promo-price { font-size: 1.5rem; font-weight: 900; color: #10b981; }
.hero-promo-normal { font-size: .75rem; text-decoration: line-through; opacity: .5; }
.hero-promo-tag {
  background: #f59e0b;
  color: #0f172a;
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(14,165,233,.3);
  transition: all .3s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(14,165,233,.4); color: #fff; }
.btn-hero-secondary {
  padding: 14px 28px;
  background: transparent;
  color: #0f172a;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
}
.btn-hero-secondary:hover { border-color: #0ea5e9; color: #0ea5e9; background: #eff6ff; }

/* Counters */
.hero-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.counter-item {
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,.8);
  border-radius: 10px;
  border: 1px solid rgba(14,165,233,.12);
  backdrop-filter: blur(4px);
}
.counter-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: #0ea5e9;
  line-height: 1;
}
.counter-label { font-size: .7rem; color: #64748b; margin-top: 2px; }

/* Hero visual – floating card */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card-mockup { position: relative; }
.floating-card {
  background: linear-gradient(135deg, #0f172a 0%, #0ea5e9 100%);
  border-radius: 24px;
  padding: 30px;
  color: #fff;
  width: 320px;
  box-shadow: 0 30px 60px rgba(14,165,233,.3), 0 8px 24px rgba(0,0,0,.2);
  position: relative;
  z-index: 2;
  animation: cardFloat 4s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}
.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  z-index: 3;
  animation: badgeFloat 3s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.floating-badge.top-left  { top: -16px; left: -24px; animation-delay: .5s; }
.floating-badge.top-right { top: 20px; right: -28px; animation-delay: 1s; }
.floating-badge.bottom    { bottom: -10px; left: 10px; animation-delay: 1.5s; }
.floating-badge i { font-size: 1rem; }
.floating-badge i.green  { color: #10b981; }
.floating-badge i.blue   { color: #0ea5e9; }
.floating-badge i.orange { color: #f59e0b; }

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.section { padding: 80px 0; }
.section-alt { background: #f8fafc; }
.section-dark { background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}
.section-title.white { color: #fff; }
.section-title span {
  background: linear-gradient(135deg, #0ea5e9, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle.white { color: rgba(255,255,255,.7); }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #10b981);
  z-index: 0;
}
.step-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all .3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 6px 16px rgba(14,165,233,.3);
}
.step-icon { font-size: 1.4rem; margin-bottom: 4px; }
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #0f172a; }
.step-desc { font-size: .82rem; color: #64748b; line-height: 1.6; }

/* ================================================================
   BENEFITS GRID
   ================================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-home-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.benefit-home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  border-color: #0ea5e9;
}
.benefit-home-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #10b981);
  transform: scaleX(0);
  transition: transform .3s;
}
.benefit-home-card:hover::before { transform: scaleX(1); }
.benefit-home-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: all .3s;
}
.benefit-home-card:hover .benefit-home-icon { transform: scale(1.1) rotate(-5deg); }
.benefit-home-title { font-size: .95rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.benefit-home-desc { font-size: .8rem; color: #64748b; line-height: 1.6; margin-bottom: 10px; }
.benefit-home-tag {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

/* ================================================================
   PLANS SECTION
   ================================================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.plan-home-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.plan-home-card.featured {
  border-color: #0ea5e9;
  box-shadow: 0 20px 40px rgba(14,165,233,.15);
  transform: scale(1.03);
}
.plan-home-card:hover { box-shadow: 0 16px 32px rgba(0,0,0,.1); }
.plan-badge {
  position: absolute;
  top: -1px; right: 24px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}
.plan-home-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.plan-home-desc { font-size: .8rem; color: #64748b; margin-bottom: 20px; }
.plan-home-price { margin-bottom: 6px; }
.plan-home-price .from { font-size: .7rem; color: #94a3b8; }
.plan-home-price .amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0ea5e9;
  line-height: 1;
}
.plan-home-price .currency { font-size: 1rem; font-weight: 700; vertical-align: super; }
.plan-home-price .period { font-size: .75rem; color: #94a3b8; }
.plan-promo-note {
  font-size: .72rem;
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.plan-features { margin-bottom: 24px; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #475569;
  padding: 5px 0;
}
.plan-feature i { color: #10b981; font-size: .85rem; }
.plan-home-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
}
.plan-home-card.featured .plan-home-cta {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  box-shadow: 0 6px 16px rgba(14,165,233,.3);
}
.plan-home-card:not(.featured) .plan-home-cta {
  background: #f1f5f9;
  color: #0f172a;
  border: 2px solid #e2e8f0;
}
.plan-home-cta:hover { transform: translateY(-2px); }

/* ================================================================
   PARTNERS LOGOS
   ================================================================ */
.partners-marquee {
  overflow: hidden;
  padding: 8px 0;
  position: relative;
}
.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 1;
}
.partners-marquee::before { left: 0; background: linear-gradient(90deg, #f8fafc, transparent); }
.partners-marquee::after  { right: 0; background: linear-gradient(-90deg, #f8fafc, transparent); }
.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 8px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  min-width: 130px;
  font-size: .8rem;
  font-weight: 700;
  color: #64748b;
  white-space: nowrap;
  transition: all .2s;
}
.partner-logo:hover { border-color: #0ea5e9; color: #0ea5e9; }

/* ================================================================
   CAPTADORES SECTION
   ================================================================ */
.captadores-section {
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.captadores-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,.15) 0%, transparent 70%);
}
.earnings-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.earnings-card {
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.earnings-card.promo {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}
.earnings-card.normal {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
}
.earnings-label { font-size: .75rem; opacity: .8; margin-bottom: 8px; }
.earnings-value { font-size: 2rem; font-weight: 900; }
.earnings-suffix { font-size: .75rem; opacity: .7; }
.earnings-note { font-size: .7rem; opacity: .6; margin-top: 4px; }
.earnings-features { list-style: none; text-align: left; }
.earnings-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.earnings-feature:last-child { border-bottom: none; }
.earnings-feature i { color: #10b981; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: all .3s;
}
.testimonial-card:hover { box-shadow: 0 12px 28px rgba(0,0,0,.08); transform: translateY(-4px); }
.testimonial-stars { color: #f59e0b; margin-bottom: 12px; font-size: .9rem; }
.testimonial-text { font-size: .875rem; color: #475569; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #10b981);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: .875rem; font-weight: 700; color: #0f172a; }
.testimonial-role { font-size: .72rem; color: #94a3b8; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all .2s;
}
.faq-item.open { border-color: #0ea5e9; box-shadow: 0 4px 12px rgba(14,165,233,.1); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
  user-select: none;
  gap: 12px;
}
.faq-question:hover { background: #f8fafc; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #eff6ff;
  color: #0ea5e9;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: #0ea5e9; color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: .875rem;
  color: #475569;
  line-height: 1.7;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  padding: 15px 32px;
  background: #fff;
  color: #0284c7;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.2); color: #0284c7; }
.btn-cta-outline {
  padding: 15px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ================================================================
   FOOTER
   ================================================================ */
.public-footer {
  background: #0f172a;
  color: rgba(255,255,255,.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { height: 32px; filter: brightness(0) invert(1); }
.footer-logo-text { font-size: 1rem; font-weight: 800; color: #fff; }
.footer-desc { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-contact { margin-top: 16px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.footer-contact-item i { color: #0ea5e9; }
.footer-col-title { font-size: .875rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: #0ea5e9; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,.35); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: all .3s;
  font-size: .875rem;
  font-weight: 700;
  overflow: hidden;
  max-width: 56px;
}
.whatsapp-btn:hover {
  max-width: 260px;
  background: #1da851;
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
  color: #fff;
}
.whatsapp-icon { font-size: 1.4rem; flex-shrink: 0; }
.whatsapp-text { white-space: nowrap; overflow: hidden; }
.whatsapp-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 14px; height: 14px;
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}

/* ================================================================
   RESPONSIVE HOMEPAGE
   ================================================================ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin: 0 auto 28px; }
  .hero-promo { flex-direction: column; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-counters { grid-template-columns: repeat(3, 1fr); }
  .hero-visual { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-home-card.featured { transform: none; }
  .earnings-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .captadores-section { padding: 60px 0; }
  .section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .hero-counters { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.8rem; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-cta-white, .btn-cta-outline { width: 100%; justify-content: center; }
  .whatsapp-btn { border-radius: 50%; padding: 16px; }
  .whatsapp-text { display: none; }
}
