/* ═══════════════════════════════════════════════════════════════
   MÉTODO M.A.P.A — PREMIUM LANDING PAGE
   Douglas Bernart | Magnum Investimentos | 2026
   FONT: Poppins | STYLE: Dynamic & Premium
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & ROOT ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-primary:  #3182ce;
  --blue-dark:     #050505;
  --blue-mid:      #2b6cb0;
  --blue-light:    #4299e1;
  --blue-bright:   #63b3ed;
  --blue-glow:     rgba(49, 130, 206, 0.45);
  --white:         #ffffff;
  --white-90:      rgba(255,255,255,0.9);
  --white-70:      rgba(255,255,255,0.7);
  --white-50:      rgba(255,255,255,0.5);
  --white-30:      rgba(255,255,255,0.3);
  --white-15:      rgba(255,255,255,0.15);
  --white-08:      rgba(255,255,255,0.08);
  --gold:          #c9a84c;
  --gold-light:    #e8cc82;
  --green:         #22c55e;

  --font: 'Poppins', system-ui, sans-serif;

  --nav-height:   72px;
  --section-pad:  clamp(80px, 10vw, 130px);
  --inner-width:  1180px;
  --radius-card:  20px;
  --radius-btn:   50px;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:   0.35s var(--ease);

  --shadow-card:  0 8px 40px rgba(0,0,36,0.5);
  --shadow-glow:  0 0 60px rgba(49,89,188,0.35);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--blue-dark);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── PARTICLE CANVAS ──────────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ── SCROLLBAR ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--blue-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--blue-primary), var(--blue-light));
  border-radius: 3px;
}

/* ── LAYOUT HELPERS ───────────────────────────────────────────── */
.section-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: var(--section-pad) 24px;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 130, 206, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(49, 130, 206, 0.2);
}

.section-eyebrow::before {
  display: none;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title.left-aligned { text-align: left; }

.section-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white-70);
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
  line-height: 1.9;
}

.highlight-text {
  background: linear-gradient(90deg, var(--blue-light) 0%, var(--blue-bright) 50%, #a0c4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── SECTION DIVIDER ──────────────────────────────────────────── */
.section-divider {
  position: relative;
  height: 2px;
  overflow: hidden;
  z-index: 2;
}

.divider-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--blue-primary) 20%,
    var(--blue-bright) 50%,
    var(--blue-primary) 80%,
    transparent 100%);
  animation: scanline 3s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes scanline {
  0%, 100% { background-position: -100% 0; opacity: 0.4; }
  50%       { background-position: 200% 0;  opacity: 1;   }
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--blue-primary) 0%, #2047a0 100%);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 18px 38px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 30px rgba(49, 89, 188, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.15);
  white-space: nowrap;
  text-transform: uppercase;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 130%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 16px 60px rgba(49, 89, 188, 0.75),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary.btn-large {
  font-size: 1rem;
  padding: 22px 52px;
  letter-spacing: 0.03em;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

/* ── NAVBAR ───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 7, 44, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06),
    0 4px 30px rgba(0,0,44,0.5);
}

.nav-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-method {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--white-50);
  text-transform: uppercase;
}

.logo-mapa {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #fff 60%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-70);
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--green); opacity: 1; }
  50%       { box-shadow: 0 0 18px var(--green); opacity: 0.6; }
}

.nav-cta {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255,255,255,0.14);
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(49,89,188,0.45);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(49,89,188,0.65);
}

.nav-cta:hover::before { opacity: 1; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  text-align: left;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right top;
  opacity: 0.40;
  filter: grayscale(0.2);
  transform: scale(1.05);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--blue-dark) 0%, rgba(5,5,5,0.85) 50%, transparent 100%),
    linear-gradient(180deg, transparent 0%, transparent 70%, var(--blue-dark) 100%);
  z-index: 1;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(49,89,188,0.25) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: orb-drift-1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,114,212,0.2) 0%, transparent 70%);
  bottom: -150px; right: -150px;
  animation: orb-drift-2 15s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(107,154,255,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-drift-3 8s ease-in-out infinite;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(80px, 60px) scale(1.1); }
  66%       { transform: translate(-40px, 100px) scale(0.95); }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-80px, -60px) scale(1.15); }
}

@keyframes orb-drift-3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.3); opacity: 1;   }
}

/* Grid lines overlay */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(49,89,188,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,89,188,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--inner-width);
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-media {
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 28px;
  background: rgba(49, 130, 206, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(49, 130, 206, 0.2);
  animation: fadeInDown 0.8s var(--ease) both;
}

.eyebrow-line {
  display: none;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.9s var(--ease) 0.2s both;
}

.hero-title em {
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(90deg, var(--blue-light) 0%, var(--blue-bright) 50%, #a0c4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--white-70);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.9;
  animation: fadeInUp 0.9s var(--ease) 0.4s both;
}

.hero-subtitle strong { color: var(--white); font-weight: 600; }

/* ── VIDEO PLAYER ──────────────────────────────────────────────── */
.video-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 24px;
  animation: fadeInUp 1s var(--ease) 0.6s both;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #050505;
  box-shadow:
    0 0 0 1px rgba(49,89,188,0.3),
    0 40px 100px rgba(0, 0, 44, 0.9),
    0 0 100px rgba(49,89,188,0.25);
}

/* Glowing border animation */
.video-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-card) + 2px);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--blue-primary) 60deg,
    var(--blue-bright) 120deg,
    transparent 180deg,
    transparent 360deg
  );
  z-index: -1;
  animation: rotate-border 4s linear infinite;
  opacity: 0.5;
}

@keyframes rotate-border {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(49,89,188,0.2) 0%, transparent 70%);
  animation: orb-drift-3 6s ease-in-out infinite;
}

.play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring);
  z-index: 2;
}

.play-btn:hover { transform: scale(1.08); }

.play-icon svg {
  width: 88px; height: 88px;
  filter: drop-shadow(0 0 40px rgba(49,89,188,0.9));
  transition: var(--transition);
}

.play-btn:hover .play-icon svg {
  filter: drop-shadow(0 0 60px rgba(107,154,255,1));
}

/* Ripple effect on play button */
.play-icon {
  position: relative;
}

.play-icon::before,
.play-icon::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid rgba(49,89,188,0.3);
  animation: ripple 2.5s ease-out infinite;
}

.play-icon::after {
  animation-delay: 1.25s;
  border-color: rgba(107,154,255,0.2);
}

@keyframes ripple {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.play-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--white-50);
  text-transform: uppercase;
}

.video-duration-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius-card);
  background: #000;
  object-fit: contain;
}

.video-caption {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--white-30);
  margin-top: 16px;
  font-style: italic;
}

/* ── HERO CTA ──────────────────────────────────────────────────── */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 1s var(--ease) 0.8s both;
}

.cta-disclaimer {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--white-30);
  letter-spacing: 0.06em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--white-30);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 2s both;
}

.scroll-arrow svg {
  width: 20px; height: 20px;
  color: var(--white-30);
  animation: bounce 2s ease-in-out infinite;
}

/* ── TRUST BAR ─────────────────────────────────────────────────── */
.trust-bar {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg,
    rgba(49,89,188,0.08),
    rgba(49,89,188,0.16) 50%,
    rgba(49,89,188,0.08));
  border-top:    1px solid rgba(49,89,188,0.25);
  border-bottom: 1px solid rgba(49,89,188,0.25);
  padding: 44px 24px;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(49,89,188,0.08), transparent);
  animation: trust-shine 4s ease-in-out infinite;
}

@keyframes trust-shine {
  0%   { left: -100%; }
  100% { left: 200%; }
}

.trust-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 52px;
}

.trust-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.trust-plus {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue-bright);
  line-height: 1;
  display: inline;
}

.trust-money { color: var(--blue-bright); }

.trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-50);
  letter-spacing: 0.05em;
  margin-top: 8px;
  text-align: center;
}

.trust-divider {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
  flex-shrink: 0;
}

/* ── PROBLEM SECTION ───────────────────────────────────────────── */
.problem {
  position: relative;
  background: var(--blue-dark);
  z-index: 2;
}

.problem .section-inner { text-align: center; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 56px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.problem-column {
  padding: 44px 40px;
}

.problem-wrong {
  background: rgba(180, 30, 30, 0.05);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.problem-right {
  background: rgba(49, 89, 188, 0.07);
}

.problem-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.col-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.wrong-icon { background: rgba(220,60,60,0.18); color: #e07070; }
.right-icon { background: rgba(49,89,188,0.28);  color: var(--blue-bright); }

.problem-col-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.01em;
}

.problem-list {
  list-style: none;
  text-align: left;
}

.problem-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white-70);
  line-height: 1.6;
  transition: color var(--transition);
}

.problem-list li:last-child { border-bottom: none; }

.problem-list li:hover { color: var(--white-90); }

.problem-wrong .problem-list li::before {
  content: '✗ ';
  color: #e07070;
  font-weight: 700;
}

.problem-right .problem-list li::before {
  content: '✓ ';
  color: var(--blue-bright);
  font-weight: 700;
}

.problem-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  background: var(--blue-dark);
  border-left:  1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  min-width: 72px;
}

.vs-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white-30);
  background: var(--blue-dark);
  z-index: 2;
}

.problem-insight {
  background: linear-gradient(135deg, rgba(49,89,188,0.1), rgba(49,89,188,0.03));
  border: 1px solid rgba(49,89,188,0.2);
  border-radius: var(--radius-card);
  padding: 32px 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  transition: border-color var(--transition);
}

.problem-insight:hover { border-color: rgba(49,89,188,0.4); }

.insight-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }

.problem-insight p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white-70);
  line-height: 1.85;
}

.problem-insight strong { color: var(--white); font-weight: 600; }

/* ── METHOD SECTION ────────────────────────────────────────────── */
.method {
  position: relative;
  background: linear-gradient(180deg, var(--blue-dark) 0%, #050e3a 50%, var(--blue-dark) 100%);
  overflow: hidden;
  z-index: 2;
}

.method .section-inner { text-align: center; }

.method-bg-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-primary), var(--blue-bright), var(--blue-primary), transparent);
  animation: scanline 4s ease-in-out infinite;
}

/* Floating shapes background */
.method::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(49,89,188,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 30s linear infinite;
}

.method::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(49,89,188,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 50s linear infinite reverse;
}

@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 72px;
  text-align: left;
}

.pillar-card {
  position: relative;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.03) 0%,
    rgba(49,89,188,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: 44px 40px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  cursor: default;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(49,89,188,0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  border-radius: var(--radius-card);
}

.pillar-card:hover {
  border-color: rgba(49,89,188,0.45);
  box-shadow:
    var(--shadow-glow),
    inset 0 0 40px rgba(49,89,188,0.06);
}

.pillar-card:hover::before { opacity: 1; }

/* Animated top border */
.pillar-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-primary), var(--blue-bright), var(--blue-primary));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.pillar-card:hover::after {
  transform: scaleX(1);
  animation: shimmer 2s linear infinite;
}

.pillar-letter {
  position: absolute;
  top: -30px; right: 16px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(49, 89, 188, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
  letter-spacing: -0.05em;
}

.pillar-card:hover .pillar-letter {
  color: rgba(49, 89, 188, 0.12);
  transform: scale(1.05) translateY(-4px);
}

.pillar-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 12px;
}

.pillar-title {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.pillar-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-70);
  line-height: 1.85;
  margin-bottom: 24px;
}

.pillar-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-points li {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--white-50);
  padding-left: 20px;
  position: relative;
  transition: color var(--transition);
}

.pillar-card:hover .pillar-points li { color: var(--white-70); }

.pillar-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-primary);
  transition: background var(--transition), transform var(--transition);
}

.pillar-card:hover .pillar-points li::before {
  background: var(--blue-bright);
  transform: translateY(-50%) scale(1.3);
}

.pillar-number {
  position: absolute;
  bottom: 20px; right: 24px;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.08em;
}

.method-quote {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.method-quote .quote-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49,89,188,0.5));
}

.method-quote .quote-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(49,89,188,0.5));
}

.method-quote blockquote {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-70);
  text-align: center;
  line-height: 1.8;
  max-width: 700px;
  flex-shrink: 0;
}

/* ── AUTHORITY SECTION ─────────────────────────────────────────── */
.authority {
  position: relative;
  background: var(--blue-dark);
  overflow: hidden;
  z-index: 2;
}

.authority-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(49,89,188,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.authority-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.authority-img-wrapper {
  position: relative;
  display: inline-block;
}

.authority-img {
  width: 100%;
  border-radius: var(--radius-card);
  display: block;
  position: relative;
  z-index: 2;
  filter: brightness(1.03) contrast(1.05);
  box-shadow: var(--shadow-card);
  transition: transform 0.6s var(--ease);
}

.authority-img-wrapper:hover .authority-img {
  transform: scale(1.02);
}

.authority-img-frame {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(49,89,188,0.35);
  border-radius: calc(var(--radius-card) + 8px);
  z-index: 1;
  transition: border-color var(--transition);
}

.authority-img-wrapper:hover .authority-img-frame {
  border-color: rgba(107,154,255,0.5);
}

/* Animated corner accents */
.authority-img-frame::before,
.authority-img-frame::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--blue-primary);
  border-style: solid;
  transition: var(--transition);
}

.authority-img-frame::before {
  top: -2px; left: -2px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}

.authority-img-frame::after {
  bottom: -2px; right: -2px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

.authority-img-wrapper:hover .authority-img-frame::before,
.authority-img-wrapper:hover .authority-img-frame::after {
  width: 32px; height: 32px;
  border-color: var(--blue-bright);
}

.authority-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid));
  border-radius: 14px;
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  z-index: 3;
  box-shadow: 0 8px 40px rgba(49,89,188,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  animation: float-badge 4s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.badge-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.badge-method {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
}

.authority-magnum {
  margin-top: 40px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.authority-magnum span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white-30);
  font-weight: 600;
}

.authority-magnum strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-50);
}

.authority-bio {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white-70);
  line-height: 1.95;
  margin-bottom: 20px;
}

.authority-bio strong { color: var(--white); font-weight: 600; }
.authority-bio em { font-style: italic; color: var(--white-90); }

.authority-bio-lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}

.authority-callout {
  padding: 22px 26px;
  border-radius: 14px;
  margin: 26px 0;
  font-size: 0.98rem;
  line-height: 1.85;
  position: relative;
  overflow: hidden;
}

.authority-callout.callout-pain {
  background: linear-gradient(135deg, rgba(224, 112, 112, 0.06), rgba(224, 112, 112, 0.02));
  border-left: 4px solid #e07070;
  color: var(--white-80);
}

.authority-callout.callout-solution {
  background: linear-gradient(135deg, rgba(49, 89, 188, 0.1), rgba(49, 89, 188, 0.03));
  border-left: 4px solid var(--blue-bright);
  color: var(--white-90);
}

.authority-callout p {
  margin: 0;
}


.authority-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--blue-bright);
  border-radius: 14px;
  transition: var(--transition);
  cursor: default;
}

.credential-item:hover {
  border-color: rgba(49,89,188,0.35);
  background: rgba(49,89,188,0.07);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(49,89,188,0.2);
}

.cred-icon { font-size: 1.4rem; flex-shrink: 0; }

.cred-text { display: flex; flex-direction: column; gap: 4px; }

.cred-text strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.cred-text span {
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--white-30);
}

/* ── SOCIAL PROOF ──────────────────────────────────────────────── */
.social-proof {
  background: linear-gradient(180deg, var(--blue-dark), #050e3a, var(--blue-dark));
  position: relative;
  z-index: 2;
}

.social-proof .section-inner { text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: 36px;
  text-align: left;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(49,89,188,0.08);
  line-height: 1;
  font-family: var(--font);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(49,89,188,0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), 0 20px 60px rgba(0,0,44,0.5);
}

.testimonial-featured {
  background: linear-gradient(135deg, rgba(49,89,188,0.1), rgba(49,89,188,0.03));
  border-color: rgba(49,89,188,0.25);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-70);
  line-height: 1.85;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
}

.author-info { display: flex; flex-direction: column; gap: 3px; }

.author-info strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.author-info span {
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--white-30);
}

/* ── CTA FINAL ─────────────────────────────────────────────────── */
.cta-final {
  position: relative;
  overflow: hidden;
  background: var(--blue-dark);
  z-index: 2;
}

.cta-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(49,89,188,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(49,89,188,0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-breathe 6s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 1.2; }
}

/* Animated dashes border */
.cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-primary), var(--blue-bright), var(--blue-primary), transparent);
  background-size: 200% 100%;
  animation: scanline 5s ease-in-out infinite;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(49, 130, 206, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(49, 130, 206, 0.2);
  margin-bottom: 24px;
  justify-content: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.9;
}

.cta-desc strong { color: var(--white); font-weight: 600; }

.cta-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: left;
}

.cta-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(49,89,188,0.06);
  border: 1px solid rgba(49,89,188,0.14);
  border-radius: 14px;
  transition: var(--transition);
}

.cta-benefit-item:hover {
  border-color: rgba(49,89,188,0.3);
  background: rgba(49,89,188,0.12);
  transform: translateX(4px);
}

.benefit-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(49,89,188,0.3);
  color: var(--blue-bright);
  font-weight: 900;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-benefit-item span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--white-70);
  line-height: 1.6;
}

.cta-action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.cta-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--white-30);
}

.urgency-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: glow-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.cta-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 540px;
  margin: 0 auto;
  padding: 24px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  text-align: left;
}

.guarantee-icon { font-size: 1.5rem; flex-shrink: 0; }

.cta-guarantee p {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--white-30);
  line-height: 1.75;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer {
  background: #00051e;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--white-30);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 8px;
}

.footer-author {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--white-30);
}

.footer-author strong { color: var(--white-50); }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-nav a {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--white-30);
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(-4px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(255,255,255,0.18);
}

.footer-magnum strong { color: rgba(255,255,255,0.3); }

/* ── WHATSAPP FLOAT ────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 99;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 30px rgba(37, 211, 102, 0.45),
    0 0 0 0 rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
  pointer-events: none;
  animation: wa-ping 3s ease-out infinite;
}

@keyframes wa-ping {
  0%, 60%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
  30%            { box-shadow: 0 6px 30px rgba(37,211,102,0.45), 0 0 0 20px rgba(37,211,102,0); }
}

.whatsapp-float svg {
  width: 28px; height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 44px rgba(37, 211, 102, 0.65);
}

/* ── ANIMATIONS ────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0);     }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0);  }
  50%       { transform: translateY(8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Slide-in from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide-in from right */
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .authority-inner {
    grid-template-columns: 340px 1fr;
    gap: 56px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav-badge { display: none; }
  .nav-cta { font-size: 0.74rem; padding: 8px 16px; }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-vs { display: none; }
  .problem-wrong { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .pillars-grid { grid-template-columns: 1fr; }

  .authority-inner {
    grid-template-columns: 1fr;
  }

  .authority-image-col {
    max-width: 340px;
    margin: 0 auto;
  }

  .authority-bio-lead {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .authority-callout {
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 0.92rem;
    line-height: 1.75;
    border-radius: 12px;
  }

  .authority-credentials { grid-template-columns: 1fr; }

  .trust-item { padding: 16px 28px; }
  .trust-divider { display: none; }

  .cta-benefits { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; }
  .footer-nav { align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .method-quote { flex-direction: column; gap: 16px; }
  .method-quote .quote-line { width: 60px; height: 1px; background: rgba(49,89,188,0.4); }

  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }

  .method::before, .method::after { display: none; }

  .calendly-section {
    padding: 60px 16px;
  }

  .calendly-left {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .trust-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-divider { display: none; }
  .hero-inner { padding: 40px 16px; }
  .btn-primary { font-size: 0.85rem; padding: 15px 28px; }
  .btn-primary.btn-large { font-size: 0.95rem; padding: 18px 32px; }
  .section-inner { padding-top: 72px; padding-bottom: 72px; }
}

/* ── CALENDLY SECTION (AGENDAMENTO) ──────────────────────────────── */
.calendly-section {
  position: relative;
  background: var(--blue-dark);
  padding: 80px 24px;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.calendly-container {
  background: rgba(20, 30, 60, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  display: flex;
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  color: var(--white);
}

.calendly-left {
  width: 35%;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  background: rgba(0, 0, 0, 0.2);
}

.calendly-back-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  cursor: pointer;
  color: var(--white-70);
  transition: all 0.2s;
}
.calendly-back-btn:hover { background: rgba(255,255,255,0.05); color: var(--white); }

.calendly-eyebrow {
  font-size: 0.9rem;
  color: var(--white-50);
  margin-bottom: 8px;
  font-weight: 600;
}

.calendly-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.calendly-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-70);
  font-weight: 500;
}

.calendly-right {
  width: 65%;
  padding: 32px 48px;
  background: transparent;
}

.calendly-right h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-90);
  margin-bottom: 8px;
}

.calendly-form input[type="text"],
.calendly-form input[type="email"],
.calendly-form input[type="tel"],
.calendly-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  background: rgba(0,0,0,0.2);
}

.calendly-form input:focus,
.calendly-form textarea:focus {
  border-color: var(--blue-bright);
  background: rgba(0,0,0,0.4);
}

.btn-add-guest {
  background: none;
  border: 1px solid var(--blue-bright);
  color: var(--blue-bright);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  margin-bottom: 24px;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn-add-guest:hover {
  background: rgba(107,154,255,0.1);
}

.phone-input {
  display: flex;
}

.phone-input .flag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  padding: 12px 16px;
  border-radius: 6px 0 0 6px;
  font-size: 1rem;
  color: var(--white-70);
}

.phone-input input {
  border-radius: 0 6px 6px 0 !important;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  color: var(--white-70);
  cursor: pointer;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.radio-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-bright);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--white-50);
  margin-bottom: 24px;
  line-height: 1.5;
  text-align: left;
}

.calendly-submit {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid));
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  box-shadow: 0 2px 20px rgba(49,89,188,0.45);
}

.calendly-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(49,89,188,0.65);
}

@media (max-width: 768px) {
  .calendly-container {
    flex-direction: column;
  }
  .calendly-left, .calendly-right {
    width: 100%;
  }
  .calendly-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .calendly-right {
    padding: 24px;
  }
}

.logo-img { max-height: 50px; width: auto; object-fit: contain; }
