:root {
  --primary-red: #da251c;
  --primary-blue: #002395;
  --white: #ffffff;
  --text-grey: #e0e0e0;
  --text-main: #333333;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Nunito', sans-serif;
  /* Agora usando Nunito para títulos para um visual mais amigável */
  --font-accent: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* Air above section headings */
}

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

body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.btn,
.brand-name {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

p,
li {
  margin-bottom: 1rem;
}

small,
.microcopy {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .logo {
    gap: 0.5rem;
    /* Minimized for desktop */
  }

  .logo-img {
    height: 60px;
    /* Aligns with 1.8rem brand + 0.3rem gap + 0.85rem tagline (approx 60px) */
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .logo-tagline {
    font-size: 0.85rem;
  }
}

.logo:hover {
  opacity: 0.9;
}

/* Removed old creative hover effects to maintain minimal feel */
.logo:hover .logo-img {
  transform: none;
  filter: none;
}

.logo:hover .brand-name {
  color: var(--white);
}

.logo:hover .logo-tagline {
  transform: none;
}

.nav-links {
  display: none;
  /* Hidden by default on mobile */
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    /* Only show on desktop */
  }
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-blue);
  /* Blue for visibility on white blob */
  font-family: var(--font-heading);
  /* Agora usando Nunito */
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  opacity: 0.7;
}

.btn-start {
  text-decoration: none;
  background: var(--primary-blue);
  color: var(--white);
  font-family: var(--font-heading);
  /* Agora usando Nunito */
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: transform 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-start:hover {
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* Stacked on mobile */
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 8rem;
}

@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    min-height: 850px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary-red);
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 70%;
  background: var(--white);
  border-radius: 0 0 0 100%;
  z-index: 1;
}

.blue-wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.blue-wave-svg {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 60%;
}

/* Desktop: Hide Mobile humanization */
.hero-human-connection {
  display: none !important;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* Centered on mobile */
  width: 100%;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Shifting weight slightly to the text side */
    align-items: center;
    text-align: left;
    /* Zoom removed to maintain strict alignment with the logo container */
  }
}

.hero-content {
  position: relative;
  padding-top: 5rem;
  /* Restored standard padding */
}

/* Decorative Background Text */
.background-text {
  position: absolute;
  top: -100px;
  left: -20px;
  z-index: -1;
  pointer-events: none;
}

.bg-txt-speak {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.05);
  /* Very faint white */
  line-height: 0.9;
  letter-spacing: -2px;
}

.bg-txt-parlez {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 6rem;
  color: rgba(0, 0, 0, 0.08);
  /* Darker overlay for the lower section */
  line-height: 0.9;
  letter-spacing: -2px;
  margin-top: 300px;
  /* Push it down to the blue section */
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .bg-txt-parlez {
    margin-left: 400px;
    /* Deslocado para a direita conforme solicitado */
  }
}

.hero-tagline {
  font-weight: 800;
  color: #ffeb3b;
  /* Accent yellow */
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  /* Reduced from 2.8rem for better mobile fit */
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
    max-width: 650px;
    margin-bottom: 2rem;
  }
}

.hero-title .highlight {
  position: relative;
  z-index: 1;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(255, 235, 59, 0.4);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 3rem;
  color: var(--white);
  /* Fix: white text for visibility on blue */
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-size: 1.15rem;
}

.hero-benefits i {
  color: #4CAF50;
  width: 22px;
  height: 22px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  /* Stack buttons on mobile */
  gap: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    width: auto;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
    gap: 1.5rem;
  }
}

.btn {
  padding: 1rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-animated-border {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  background: transparent;
  border-radius: 50px;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* The Animated Gradient Layer */
.btn-animated-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  /* Growth space for border */
  z-index: -2;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-blue), #ffeb3b, var(--primary-red));
  background-size: 300% 100%;
  animation: animate-border-light 4s linear infinite;
  border-radius: 52px;
}

/* The Inner Solid Mask Layer */
.btn-animated-border::after {
  content: "";
  position: absolute;
  inset: 1px;
  /* Inner stroke thickness */
  background: #000c29;
  /* Dark premium core */
  border-radius: 50px;
  z-index: -1;
  transition: background 0.3s ease;
}

@keyframes animate-border-light {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 150% 0%;
  }
}

.btn-animated-border:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-animated-border:hover::after {
  background: #001342;
}

.btn-neon-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.8rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  background: transparent;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: visible;
  line-height: 1;
  text-align: center;
}

/* Background Animated Neon Gradient Layer */
.btn-neon-glow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #00F5FF, #7B61FF, #00F5FF);
  background-size: 200% 100%;
  border-radius: 52px;
  z-index: -2;
  animation: neon-glow-horizontal 4s linear infinite;
  filter: blur(2px);
  opacity: 0.8;
}

/* Inner Dark Mask */
.btn-neon-glow::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: #214dbc;
  /* Azul mais vibrante e claro conforme solicitado */
  border-radius: 50px;
  z-index: -1;
  transition: background 0.3s ease;
}

@keyframes neon-glow-horizontal {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

.btn-neon-glow:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 20px rgba(0, 194, 255, 0.4), 0 0 30px rgba(13, 44, 139, 0.3);
  color: #fff;
}

.btn-neon-glow:hover::after {
  background: #0033b8;
  /* Azul um pouco mais profundo no hover para feedback */
}

.btn-neon-glow:hover::before {
  animation-duration: 2s;
  /* Faster light move on hover */
  opacity: 1;
  filter: blur(4px);
}

.btn-neon-glow:hover::after {
  background: #00123d;
  /* Subtle highlight on hover */
}

.btn-neon-glow:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-blue {
  background-color: #007bff;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-blue:hover,
.btn-glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Floating Shapes System - Optimized for Readability */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  /* Above background, below text content (z-index 10) */
  overflow: hidden;
}

.f-shape {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  /* Stronger shadow for solid blocks */
  animation: floatPremium 8s infinite ease-in-out;
  transform-style: preserve-3d;
}

/* Gradients & Solid Colors (No transparency/blur) */
.f-blue {
  background: linear-gradient(135deg, #1E5BFF, #0D2C8B);
}

.f-red {
  background: linear-gradient(135deg, #FF3B3B, #E21B1B);
}

.f-white {
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Placements & Sizes - Balanced Ratio (2 Blue, 1 Red, 2 White) - Strictly Edges */
.s1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: -15px;
  --rot: 15deg;
}

/* Blue - Top Left Corner */
.s2 {
  width: 45px;
  height: 45px;
  top: 35%;
  left: 1%;
  --rot: -12deg;
  animation-delay: -2s;
}

/* White - Mid Left Edge */
.s3 {
  width: 85px;
  height: 85px;
  bottom: 8%;
  left: -20px;
  --rot: 20deg;
  animation-delay: -4s;
}

/* Blue - Bottom Left Corner */
.s4 {
  width: 65px;
  height: 65px;
  top: 15%;
  right: 2%;
  --rot: -15deg;
  animation-delay: -1s;
}

/* Red - Top Right near image */
.s5 {
  width: 50px;
  height: 50px;
  bottom: 5%;
  right: 4%;
  --rot: 25deg;
  animation-delay: -3.5s;
}

/* White - Bottom Right Corner */

@keyframes floatPremium {

  0%,
  100% {
    transform: translateY(0) rotate(var(--rot, 0deg)) scale(1);
  }

  50% {
    transform: translateY(-15px) rotate(calc(var(--rot, 0deg) + 2deg)) scale(1.02);
  }

  /* Reduced drift to stay at edges */
}

/* Responsive - Mobile First */
@media (max-width: 1024px) {

  .s2,
  .s4 {
    display: none;
  }

  /* keep 1 blue, 1 white, 1 blue on left/right edges for mobile clarity */
  .f-shape {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.6;
  }
}

/* Parallax Hardware Acceleration Hints */
.f-shape {
  will-change: transform;
}

/* Image Wrapper */
.hero-image-wrapper {
  position: relative;
  /* Relative on mobile below text */
  width: 100%;
  margin-top: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    justify-content: flex-end;
  }
}

.hero-image {
  height: 60vh;
  /* Shorter for mobile stacking */
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
  display: block;
}

@media (min-width: 1024px) {
  .hero-image {
    height: 96vh;
    margin-bottom: -2px;
    margin-right: 20px;
    /* Deslocado para a esquerda conforme solicitado */
  }
}

/* General Section Styles */
.section {
  padding: 60px 0;
  /* Base mobile padding */
}

@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }
}

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 32px;
  /* Set to H2 size */
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: var(--text-main);
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
  }
}

.accent-text {
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* --- PROOF + DIFFERENTIATION SECTION (CREATIVE FOLD) --- */
.proof-diff-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 80px 0;
}

.proof-diff-section .floating-shapes {
  opacity: 0.4;
  /* Softer background presence */
}

.proof-diff-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 5;
}

@media (min-width: 1024px) {
  .proof-diff-container {
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
  }
}

/* Proof Card - Outside the Box Alignment */
.proof-visual-wrapper {
  position: relative;
}

.proof-main-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 35, 149, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 2;
  transform: rotate(-1deg);
  /* Creative tilt */
}

.proof-title-small {
  color: var(--primary-red);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.proof-big-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.proof-desc {
  font-size: 1.2rem;
  color: var(--text-main);
  opacity: 0.8;
  line-height: 1.6;
}

/* Floating Secondary Proof */
.secondary-proof-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--primary-red);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(218, 37, 28, 0.3);
  transform: rotate(5deg);
  z-index: 3;
}

.secondary-proof-badge p {
  margin: 0;
  font-weight: 800;
  line-height: 1.2;
}

/* Differentiation Info */
.diff-info-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight-red {
  color: var(--primary-red);
}

.diff-interactive-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.diff-item-premium {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8faff;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.diff-item-premium:hover {
  background: var(--white);
  border-color: rgba(0, 35, 149, 0.1);
  box-shadow: 0 10px 30px rgba(0, 35, 149, 0.05);
  transform: translateX(10px);
}

.diff-icon-box {
  width: 55px;
  height: 55px;
  background: var(--white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
  color: var(--primary-red);
  transition: all 0.4s ease;
}

.diff-item-premium:hover .diff-icon-box {
  background: var(--primary-red);
  color: var(--white);
}

.diff-text-group h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.2rem;
}

.diff-text-group p {
  font-size: 0.95rem;
  color: var(--text-main);
  opacity: 0.7;
  margin: 0;
}

/* ==========================================================
   HOW IT WORKS — Curved Timeline  v3 (Prototype-Faithful)
   Canvas: 1200 × 600px  |  S-curve  |  grey dots
   ========================================================== */
.how-it-works-section {
  background: #ffffff;
  padding: 80px 0 100px;
  overflow: hidden;
}

/* Header - Left Aligned High Fidelity */
/* --- JOURNEY SECTION REFINED (High-Fidelity) --- */
.journey-flex-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6rem;
}

.how-it-works-header {
  flex: 0 0 380px;
  text-align: left;
  margin-bottom: 0;
}

.journey-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.how-it-works-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 950;
  color: var(--primary-blue);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 2rem;
}

.how-it-works-header p {
  font-size: 1.35rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

/* ---- Canvas Section ---- */

.header-cta-wrapper {
  margin-top: 10px;
}

/* Class Experience Section (Modern & Creative) */
.class-experience-section {
  position: relative;
  padding: 6rem 0;
  background: #ffffff;
  overflow: hidden;
}

.experience-content {
  display: flex;
  align-items: center;
  gap: 6rem;
  position: relative;
  z-index: 10;
}

.exp-text {
  flex: 1;
  max-width: 550px;
}

.exp-text h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 950;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -3px;
}

.exp-subtitle {
  font-size: 1.4rem;
  color: #6b7280;
  margin-bottom: 3.5rem;
  line-height: 1.5;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: #f8faff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 35, 149, 0.05);
}

.feature-item:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 10px 30px rgba(0, 35, 149, 0.08);
  border-color: rgba(0, 35, 149, 0.1);
}

.feature-item i {
  color: var(--primary-red);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.feature-item span {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 0.85rem;
  line-height: 1.3;
}

.highlight-band {
  background: rgba(218, 37, 28, 0.04);
  padding: 1rem 1.5rem;
  border-left: 5px solid var(--primary-red);
  border-radius: 4px 20px 20px 4px;
  margin-bottom: 4rem;
  font-weight: 800;
  color: var(--primary-red);
  font-size: 1.1rem;
}

.exp-actions {
  margin-top: 2rem;
}

.exp-visual {
  flex: 1.3;
  position: relative;
}

.visual-stack {
  position: relative;
  width: 100%;
}

.teams-interface-wrapper {
  position: relative;
  background: #fff;
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0 50px 100px rgba(0, 35, 149, 0.12);
  z-index: 5;
  transition: transform 0.5s ease;
}

.teams-interface-wrapper img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* Floating Elements for Team Interface */
.floating-ui-bubble {
  position: absolute;
  z-index: 10;
  background: white;
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  animation: pillFloat 6s ease-in-out infinite;
}

.floating-ui-bubble.chat {
  top: 10%;
  right: -5%;
  max-width: 220px;
}

.floating-ui-bubble.reaction {
  bottom: 15%;
  left: -8%;
  background: var(--primary-blue);
  color: white;
  animation-delay: -2s;
}

.floating-ui-bubble .avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.floating-ui-bubble .avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bubble-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
}

.floating-ui-bubble.reaction span {
  font-weight: 800;
  font-size: 0.9rem;
}

.teams-call-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  gap: 15px;
  z-index: 15;
}

.control-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
}

.control-btn.hangup {
  background: var(--primary-red);
}

.control-btn i {
  width: 16px;
  height: 16px;
}

/* Glass Info Card (Floating Outside) */
.glass-info-card {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 260px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1.5rem;
  border-radius: 24px;
  display: flex;
  gap: 1rem;
  z-index: 12;
  box-shadow: 0 20px 40px rgba(0, 35, 149, 0.08);
  animation: pillFloat 7s linear infinite alternate-reverse;
}

.glass-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-red);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.glass-text {
  display: flex;
  flex-direction: column;
}

.glass-text strong {
  color: var(--primary-blue);
  font-size: 1rem;
}

.glass-text span {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.3;
}

.decorative-blur-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 35, 149, 0.05) 0%, transparent 70%);
  z-index: 1;
}

@keyframes pillFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .class-experience-section {
    padding: 6rem 0;
  }

  .experience-content {
    flex-direction: column;
    gap: 4rem;
    text-align: center;
  }

  .exp-text {
    max-width: 100%;
  }

  .exp-text h2 {
    font-size: 2.8rem;
    letter-spacing: -2px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .highlight-band {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .floating-ui-bubble.chat {
    right: 0;
    top: 0;
    transform: scale(0.8);
  }

  .floating-ui-bubble.reaction {
    left: 0;
    bottom: 10%;
    transform: scale(0.8);
  }

  .glass-info-card {
    display: none;
  }
}

.btn-journey-header {
  padding: 1.4rem 3rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 100px;
  /* Ultra-rounded high-fidelity style */
  background: var(--primary-red);
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(232, 64, 64, 0.25);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-journey-header:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(232, 64, 64, 0.35);
  background: #d43b3b;
}

/* ---- Canvas: aspect matches viewBox 1200×400 ---- */
.journey-canvas-wrapper {
  flex: 1;
  position: relative;
  min-width: 0;
}

.journey-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 400;
  overflow: visible;
}

/* SVG fills the canvas perfectly */
.journey-curve-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.journey-curve-line {
  stroke-dasharray: 1200;
  /* Adjusted for 800-viewBox length */
  stroke-dashoffset: 1200;
  animation: drawCurve 3.5s ease-out forwards;
}

@keyframes drawCurve {
  to {
    stroke-dashoffset: 0;
  }
}

/* ---- DOT nodes (just the circle, absolutely on the line) ---- */
.jnode {
  position: absolute;
  z-index: 20;
  transform: translate(-50%, -50%);
}

/* P1(250,420) in 1200×600 viewBox */
.jnode-1 {
  left: 20.83%;
  top: 70%;
}

/* P2(600,290) */
.jnode-2 {
  left: 50%;
  top: 48.33%;
}

/* P3(960,170) */
.jnode-3 {
  left: 80%;
  top: 28.33%;
}

.jnode-dot-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.jnode-ring {
  width: 38px;
  height: 38px;
  background: #eaecf1;
  /* grey like the prototype */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.jnode-ring:hover {
  transform: scale(1.3);
}

.jnode-center {
  width: 11px;
  height: 11px;
  background: var(--primary-red);
  border-radius: 50%;
}

/* ---- CONTENT blocks (number + text, positioned per step) ---- */
/* Refined Step Content Styling */
.jnode-num {
  display: none;
}

.jnode-content {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 30;
  /* Important to be above the curve */
}

.jnode-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

.jnode-content p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0 auto;
}

/* Positioning based on viewBox 1000x400 dots: (200, 340), (550, 120), (900, 100) */
/* Staggered Vertical Pattern: Below - Above - Below */

.jnode-step-1 {
  left: 20%;
  top: 85%;
  transform: translate(-50%, 25px);
}

.jnode-step-2 {
  left: 55%;
  top: 30%;
  transform: translate(-50%, -150px);
  /* PUSHED ABOVE THE DOT */
}

.jnode-step-3 {
  left: 90%;
  top: 25%;
  transform: translate(-50%, 40px);
  /* Centered Below */
  text-align: center;
}

/* Redefining Dasharray for 1000-viewBox curve */
.journey-curve-line {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: journeyFlow 6s ease-in-out infinite;
}

@keyframes journeyFlow {
  0% {
    stroke-dashoffset: 1500;
  }

  45% {
    stroke-dashoffset: 0;
  }

  55% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -1500;
  }
}

/* Pulsating Nodes for Looping Feel */
.journey-canvas circle:nth-of-type(odd) {
  animation: nodePulse 3s infinite ease-in-out;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes nodePulse {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.3);
    filter: brightness(1.2);
  }
}

/* ---- Responsive mobile ---- */
@media (max-width: 1023px) {
  .journey-flex-container {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
  }

  .how-it-works-header {
    flex: none;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0 1rem;
    text-align: center;
  }  .journey-canvas {
    height: auto;
    display: flex !important;
    flex-direction: column;
    gap: 5rem;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  /* Vertical line removed for cleaner mobile look */
  .journey-canvas::before {
    display: none !important;
  }
  .journey-curve-svg {
    display: none;
  }

  .jnode-content {
    position: static;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    width: 100%;
    transform: none !important;
    left: auto !important;
    top: auto !important;
  }

  .jnode-num {
    display: block;
    font-size: 80px;
    font-weight: 800;
    color: #f0f2f5;
    line-height: 1;
    margin-bottom: -15px;
    opacity: 0.6;
    z-index: 1;
  }

  .jnode-text {
    position: relative;
    z-index: 2;
  }

  .jnode-text h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .jnode-text p {
    font-size: 0.95rem;
    color: rgba(60, 60, 60, 0.8);
    max-width: 280px;
  }
}

/* Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.problem-card {
  background: #fdfdfd;
  padding: 3rem 2rem;
  border-radius: 20px;
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
}

.problem-card:hover {
  transform: translateY(-10px);
}

.problem-card i {
  color: var(--primary-red);
  margin-bottom: 1.5rem;
  width: 40px;
  height: 40px;
}

.problem-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

/* Solution Section */
.solution-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .solution-content {
    flex-direction: row;
    text-align: left;
    gap: 5rem;
  }
}

.solution-text {
  flex: 1;
}

.solution-image {
  flex: 0.8;
}

.rounded-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.solution-list {
  list-style: none;
  margin-top: 2rem;
}

.solution-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.solution-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 900;
}

/* ==========================================================
   PRICING EXPERIENCE — Creative & High-Fidelity
   ========================================================== */
.pricing-experience-section {
  position: relative;
  padding: 6rem 0;
  /* Reduced as requested */
  background: #ffffff;
  overflow: hidden;
}

.pricing-header-v2 {
  text-align: center;
  margin-bottom: 4rem;
  /* Reduced gap */
  position: relative;
  z-index: 10;
}

.pricing-tag {
  display: inline-block;
  font-weight: 850;
  font-size: 0.8rem;
  color: var(--primary-red);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pricing-header-v2 h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  /* Reduced from 3.5rem to fix 'zoom' look */
  font-weight: 950;
  color: var(--primary-blue);
  margin-bottom: 1.2rem;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

@media (max-width: 768px) {
  .pricing-header-v2 h2 {
    font-size: 2rem;
  }
}

.pricing-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  /* Reduced from 3rem */
  max-width: 1000px;
  /* Reduced from 1100px */
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media (min-width: 991px) {
  .pricing-grid-v2 {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.pricing-card-v2 {
  position: relative;
  border-radius: 30px;
  /* Reduced roundness for more modern look */
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
  border: 1px solid rgba(0, 35, 149, 0.06);
  box-shadow: 0 20px 50px rgba(0, 35, 149, 0.04);
}

.pricing-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 35, 149, 0.08);
}

.card-inner-v2 {
  padding: 2.5rem 2.5rem;
  /* Reduced from 4rem 3rem to fix zoom */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-label {
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--primary-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.6;
}

.plan-title {
  font-size: 1.75rem;
  /* Reduced from 2.2rem */
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

/* VIP PLAN SPECIFIC */
.vip-plan {
  background: var(--primary-blue);
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 60px rgba(0, 35, 149, 0.15);
}

.vip-badge-ribbon {
  position: absolute;
  top: 25px;
  right: -45px;
  background: var(--primary-red);
  color: white;
  padding: 6px 50px;
  transform: rotate(45deg);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.plan-title-vip {
  font-size: 1.75rem;
  /* Reduced from 2.5rem */
  font-weight: 950;
  color: white;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.plan-label-vip {
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--primary-red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

/* Features */
.plan-features-v2 {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.f-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  /* Reduced from 1.05rem */
  opacity: 0.85;
}

.f-item i {
  color: var(--primary-red);
  width: 18px;
  height: 18px;
}

.vip-plan .f-item {
  color: white;
  opacity: 0.9;
}

.vip-plan .f-item i {
  color: var(--primary-red);
}

/* Price */
.plan-price-v2 {
  margin-top: auto;
  margin-bottom: 2rem;
}

.price-prefix {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6b7280;
  display: block;
  margin-bottom: 3px;
}

.white-opacity {
  opacity: 0.6;
  color: white;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--primary-blue);
}

.price-amount .currency {
  font-size: 1.2rem;
  font-weight: 800;
}

.price-amount .value {
  font-size: 2.75rem;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.price-amount-vip {
  display: flex;
  align-items: baseline;
  color: white;
}

.currency-vip {
  font-size: 1.2rem;
  font-weight: 800;
  margin-right: 4px;
}

.price-amount-vip .value {
  font-size: 2.75rem;
  /* Reduced scale fix */
  font-weight: 950;
  letter-spacing: -1.5px;
  color: white;
}

.unit-vip {
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.8;
  margin-left: 6px;
}

/* Button Upgrades */
.btn-outline-premium {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.2rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.95rem;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-premium:hover {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.02);
}

/* --- PREMIUM MARKETIVA FOOTER --- */
.footer {
  position: relative;
  background-color: var(--primary-blue);
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 2rem;
  overflow: hidden;
}

.footer-curve {
  width: 100%;
  height: 80px;
  background: #ffffff;
  /* Cor da seção final-cta para transição perfeita */
}

.footer-curve svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-content-wrapper {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
  }
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.footer-logo-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 58px;
  /* Aumentado sutilmente para melhor presença */
  width: auto;
  display: block;
}

.footer-logo-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  height: auto;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 2.22rem;
  /* Reescalonado para preencher a nova altura */
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1.2px;
  line-height: 0.8;
  margin: 0 0 -4px 0;
}

.footer-brand-title .dot {
  color: #ff3e8d;
}

.footer-tagline {
  font-size: 0.85rem;
  /* Ajuste proporcional para a nova escala */
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}

.footer-legal-copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 2rem;
}

.footer-social-circles {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ffffff !important;
}

.instagram-svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.social-circle:hover {
  background: #ffffff;
  color: var(--primary-red);
  transform: translateY(-3px);
}

/* --- TESTIMONIALS PREMIUM BENTO GRID (CREATIVE OUTSIDE THE BOX) --- */
.how-it-works-section {
  position: relative;
  padding: 6rem 0;
  background: #ffffff;
}

.testimonials-orbit-section {
  position: relative;
  padding: 6rem 0;
  background: #ffffff;
  overflow: hidden;
}

.orbit-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  /* Maximum visibility for contents */
}

.bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(200px);
  /* Extreme global softness */
  opacity: 0.08;
  /* Misty and subtle */
  animation: bloomPulse 15s infinite alternate ease-in-out;
}

.b-blue {
  width: 600px;
  height: 600px;
  background: #4d8aff;
  /* Pastel Sky Blue */
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.b-red {
  width: 500px;
  height: 500px;
  background: #fecaca;
  /* Very soft pastel red */
  bottom: 0%;
  right: -5%;
  animation-delay: -5s;
}

.b-white {
  width: 550px;
  height: 550px;
  background: white;
  bottom: -15%;
  left: 30%;
  opacity: 0.15;
  animation-delay: -10s;
}

/* Pricing Section Specific Bluish Blooms (Left Aligned - Softened) */
.b-p-blue {
  width: 750px;
  height: 750px;
  background: #4d8aff;
  /* Softer bluish tone */
  left: -10%;
  top: 0%;
  filter: blur(200px);
  /* extreme softness */
  opacity: 0.1;
  /* Balanced subtle opacity */
  animation: bloomPulse 14s infinite alternate ease-in-out;
}

.b-p-sky {
  width: 600px;
  height: 600px;
  background: #bbdefe;
  /* Very soft pastel blue */
  left: -5%;
  bottom: -10%;
  filter: blur(180px);
  opacity: 0.08;
  animation: bloomPulse 18s infinite alternate-reverse ease-in-out;
}

/* Mentor Section Specific Aura (The Halo Effect - Softened) */
.b-halo-mentor {
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, #ffffff 0%, #bbdefe 60%, transparent 85%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(220px);
  /* Extreme blur for maximum softness */
  opacity: 0.12;
  /* Very subtle light pressure */
  z-index: 1;
  pointer-events: none;
  animation: haloGlow 18s infinite alternate ease-in-out;
}

@keyframes haloGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.08;
  }

  100% {
    transform: translate(-48%, -52%) scale(1.05);
    opacity: 0.14;
  }
}

@keyframes bloomPulse {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 30px) scale(1.1);
  }

  100% {
    transform: translate(-30px, -50px) scale(0.9);
  }
}

.orbit-container {
  position: relative;
  z-index: 5;
  text-align: center;
}

.orbit-header {
  margin-bottom: 6rem;
}

.orbit-header h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary-blue);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

/* Shared highlight color */

.orbit-header p {
  color: #6b7280;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.orbit-wrapper {
  position: relative;
  max-width: 900px;
  height: 650px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base Central Card */
.orbit-card-main {
  background: #ffffff;
  padding: 4rem 3.5rem;
  border-radius: 60px;
  box-shadow: 0 40px 100px rgba(0, 35, 149, 0.08);
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.orbit-card-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 2rem;
}

.orbit-card-stars i,
.orbit-card-stars svg {
  color: #fbbf24 !important;
  fill: #fbbf24 !important;
  stroke: #fbbf24 !important;
  width: 20px;
  height: 20px;
}

.orbit-quote-text {
  font-size: 1.4rem;
  font-style: italic;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  transition: opacity 0.3s ease;
  /* For smooth JS swap */
}

.orbit-profile-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.orbit-profile-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f3f4f6;
  transition: opacity 0.3s ease;
}

.orbit-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-profile-details {
  text-align: left;
}

.orbit-profile-details h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.2rem;
}

.orbit-profile-details p {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.orbit-status {
  font-size: 0.75rem;
  color: var(--primary-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.orbit-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.orbit-pagination .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.orbit-pagination .dot.active {
  background: var(--primary-red);
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(232, 64, 64, 0.3);
}

/* Floating Orbit Avatars - Interactive & Animated */
.floating-avatar {
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 15;
  /* Higher than background but can be below card */
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatOrbitIdle 6s ease-in-out infinite;
  /* Continuous floating effect */
}

.floating-avatar:hover {
  transform: scale(1.2) rotate(8deg);
  z-index: 50;
  /* Bring to very front on hover */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Navigation Arrows */
.orbit-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 35, 149, 0.05);
  box-shadow: 0 10px 25px rgba(0, 35, 149, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.orbit-nav-arrow:hover {
  background: var(--primary-red);
  color: #fff;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 15px 35px rgba(232, 64, 64, 0.3);
}

.orbit-nav-arrow.prev {
  left: 20px;
  /* Moved closer from -80px */
}

.orbit-nav-arrow.next {
  right: 20px;
  /* Moved closer from -80px */
}

@media (max-width: 1200px) {
  .orbit-nav-arrow.prev {
    left: 10px;
  }

  .orbit-nav-arrow.next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .orbit-nav-arrow {
    display: none;
  }

  /* Use dots/swipe on mobile */
}

@keyframes floatOrbitIdle {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  33% {
    transform: translateY(-15px) rotate(3deg);
  }

  66% {
    transform: translateY(5px) rotate(-3deg);
  }
}

/* Staggered animation for more natural look */
.av-1 {
  top: 10%;
  left: 0%;
  animation-delay: 0s;
}

.av-2 {
  top: -5%;
  right: 15%;
  animation-delay: 1s;
}

.av-3 {
  top: 45%;
  left: -12%;
  animation-delay: 2s;
}

.av-4 {
  top: 40%;
  right: -12%;
  animation-delay: 0.5s;
}

.av-5 {
  bottom: 0%;
  left: 10%;
  animation-delay: 1.5s;
}

.av-6 {
  bottom: 5%;
  right: 5%;
  animation-delay: 2.5s;
}

.floating-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-bento-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 60px 120px rgba(0, 35, 149, 0.12);
}

/* Main Highlight Card */
.main-card {
  grid-row: span 2;
}

.bento-quote-icon {
  position: absolute;
  top: -30px;
  right: 50px;
  width: 70px;
  height: 70px;
  background: var(--primary-red);
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 15px 35px rgba(218, 37, 28, 0.3);
}

.testimonial-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.author-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-meta h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.author-meta p {
  font-size: 0.9rem;
  opacity: 0.6;
  font-weight: 600;
}

/* Rating Badge Highlight */
.testimonial-rating-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.testimonial-rating-badge i {
  color: #ffeb3b;
  width: 18px;
  height: 18px;
  fill: #ffeb3b;
}

/* Orbit Stats */
.orbit-footer-stats {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.orbit-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--primary-blue);
}

.orbit-rating .fill-gold {
  color: #fbbf24;
  fill: #fbbf24;
}

.orbit-total {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.orbit-total .big-num {
  font-size: 4rem;
  font-weight: 950;
  color: var(--primary-blue);
  line-height: 1;
  letter-spacing: -2px;
}

.orbit-total .label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 2px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tiny-star {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

@media (max-width: 1023px) {
  .orbit-wrapper {
    height: auto;
    flex-direction: column;
    gap: 3rem;
  }

  .floating-avatar {
    display: none;
  }

  .orbit-card-main {
    padding: 3rem 2rem;
    border-radius: 40px;
  }

  .orbit-header h2 {
    font-size: 2.5rem;
  }

  .orbit-total .big-num {
    font-size: 3rem;
  }
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.footer-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-link {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #ffffff !important;
}

.footer-contact-list i,
.contact-icon-svg {
  width: 18px;
  height: 18px;
  color: #ffffff !important;
  stroke: currentColor;
  margin-top: 3px;
}

.footer-bottom-minimal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  /* Essential for central button positioning */
}

@media (min-width: 1024px) {
  .footer-bottom-minimal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.scroll-top-btn {
  width: 45px;
  height: 45px;
  background: #ffffff;
  /* White background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 35, 149, 0.2);
}

@media (min-width: 1024px) {
  .scroll-top-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.scroll-top-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 35, 149, 0.3);
}

@media (min-width: 1024px) {
  .scroll-top-btn:hover {
    transform: translateX(-50%) scale(1.1);
  }
}

.scroll-top-btn i,
.scroll-top-btn svg {
  color: #000000 !important;
  /* Force Black arrow */
  width: 24px;
  height: 24px;
}

.copyright-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .program-details {
    flex-direction: row;
    padding: 2rem 0;
    margin: 3rem 0;
    gap: 0;
  }
}

.price {
  display: block;
  font-size: 3rem;
  /* Scaled for mobile */
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-blue);
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .price {
    font-size: 4rem;
  }
}

.btn-red {
  background: var(--primary-red);
  color: white;
  border: none;
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  cursor: pointer;
  border-radius: 50px;
  text-decoration: none;
}

/* ==========================================================
   AUTHORITY SECTION V2 — Immersive & Dynamic
   ========================================================== */
.authority-section-v2 {
  position: relative;
  padding: 6rem 0;
  background: white;
  overflow: hidden;
}

.mentor-container-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .mentor-container-v2 {
    flex-direction: row;
    align-items: center;
    gap: 8rem;
  }
}

/* Visual Column */
.mentor-visual-column {
  flex: 1;
  position: relative;
  width: 100%;
}

.image-experience-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  z-index: 5;
}

.mentor-img-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(232, 64, 64, 0.05) 0%, rgba(0, 35, 149, 0.05) 100%);
  box-shadow: 0 40px 100px rgba(0, 35, 149, 0.1);
  border: 1px solid rgba(0, 35, 149, 0.05);
}

.mentor-high-fidelity-img {
  width: 100%;
  display: block;
  /* Orientation restored to original */
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-experience-box:hover .mentor-high-fidelity-img {
  transform: scale(1.05);
}

/* Experience Badge Orbit */
.experience-badge-orbit {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 15px 40px rgba(0, 35, 149, 0.15);
  animation: badgeSpin orbit 10s linear infinite;
}

.orbit-inner-content {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.obs-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
  font-family: var(--font-heading);
}

.obs-unit {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: 1.5px;
}

/* Floating Pills */
.mentor-pill {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary-blue);
  z-index: 15;
  white-space: nowrap;
  animation: floatPill 6s ease-in-out infinite;
}

.mentor-pill i {
  color: var(--primary-red);
  width: 20px;
  height: 20px;
}

.p-top-right {
  top: 15%;
  right: -8%;
  animation-delay: 0s;
}

.p-mid-left {
  top: 50%;
  left: -12%;
  animation-delay: -3s;
}

.p-bot-right {
  bottom: 10%;
  right: -5%;
  animation-delay: -1.5s;
}

@keyframes floatPill {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.mentor-shadow-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(232, 64, 64, 0.03) 0%, transparent 60%);
  z-index: 1;
}

/* Text Column */
.mentor-text-column {
  flex: 1.1;
  max-width: 600px;
}

.mentor-label-v2 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.mentor-label-v2 .line {
  width: 40px;
  height: 4px;
  background: var(--primary-red);
  border-radius: 2px;
}

.mentor-label-v2 span {
  font-weight: 850;
  font-size: 0.95rem;
  color: var(--primary-red);
  letter-spacing: 2px;
}

.mentor-name-v2 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 950;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: -3px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mentor-bio-v2 {
  margin-bottom: 3.5rem;
}

.bio-primary {
  font-size: 1.35rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.bio-secondary {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
}

.mentor-specialties {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-top: 1rem;
}

.spec-badge-v3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  perspective: 1000px;
}

.badge-orbit {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.badge-inner-glass {
  width: 100%;
  height: 100%;
  background: white;
  /* Consistente e limpo */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  z-index: 5;
  border: 4px solid #fff;
  box-shadow: 0 15px 35px rgba(0, 35, 149, 0.12), inset 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

/* Sweep Shine Animation */
.badge-inner-glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: -200%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
}

.spec-badge-v3:hover .badge-inner-glass::after {
  left: 200%;
  transition: left 0.8s ease;
}

.badge-halo {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.3;
  z-index: 1;
}

/* Specific Country Halos/Themes */
.usa .badge-halo {
  border-left-color: #ff3b30;
  border-right-color: #007aff;
}

.uk .badge-halo {
  border-top-color: #007aff;
  border-bottom-color: #ff3b30;
}

.france .badge-halo {
  border-left-color: #007aff;
  border-right-color: #ff3b30;
}

.spec-badge-v3:hover .badge-orbit {
  transform: translateY(-12px) rotateY(15deg) rotateX(8deg);
}

.spec-badge-v3:hover .badge-halo {
  transform: rotate(180deg) scale(1.15);
  opacity: 1;
  border-width: 3px;
}

.badge-label {
  font-weight: 950;
  font-size: 0.85rem;
  color: var(--primary-blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: #fbfbfb;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 35, 149, 0.05);
}

.mentor-cta-v2 {
  margin-top: 1rem;
}

@media (max-width: 1023px) {
  .authority-section-v2 {
    padding: 6rem 0;
  }

  .mentor-name-v2 {
    font-size: 3rem;
  }

  .mentor-pill {
    transform: scale(0.85);
  }

  .p-top-right {
    right: 0;
  }

  .p-mid-left {
    left: 0;
  }

  .p-bot-right {
    right: 0;
  }

  .mentor-specialties {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Testimonial Section */
.testimonial-card {
  background: var(--primary-blue);
  color: white;
  padding: 3rem 1.5rem;
  /* Reduced mobile padding */
  border-radius: 30px;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 4rem;
    border-radius: 40px;
  }
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--primary-blue);
  padding: 10px;
  border-radius: 50%;
}

/* ==========================================================
   THE ELEVATED CTA - Light & Premium SaaS Design
   ========================================================== */
.final-cta-elevated {
  position: relative;
  padding: 8rem 0;
  background: #ffffff;
  overflow: hidden;
}

.cta-soft-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.glow-sphere.s1 {
  width: 400px;
  height: 400px;
  background: var(--primary-red);
  top: -5%;
  left: -5%;
}

.glow-sphere.s2 {
  width: 450px;
  height: 450px;
  bottom: -10%;
  right: -5%;
}

.cta-elevated-card {
  background: #ffffff;
  padding: 3.5rem 3.5rem;
  /* Reduced from 5rem 6rem */
  border-radius: 40px 20px 40px 20px;
  /* Slightly less exaggerated */
  box-shadow: 0 40px 90px rgba(0, 35, 149, 0.06);
  border: 1px solid rgba(0, 35, 149, 0.05);
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 950px;
  /* Slightly more compact */
  margin: 0 auto;
}

.cta-label-accent {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-red);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cta-main-text h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  /* Reduced from 2.8rem */
  font-weight: 950;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.cta-main-text h2 .text-blue-accent {
  color: var(--primary-red);
}

.cta-main-text p {
  color: #6b7280;
  font-size: 1.05rem;
  /* Reduced from 1.25rem */
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Premium Button Action */
.cta-button-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.btn-premium-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 4rem;
  background: var(--primary-blue);
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 100px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 40px rgba(0, 35, 149, 0.3);
}

.btn-premium-cta:hover {
  transform: translateY(-8px) scale(1.02);
  background: var(--primary-red);
  box-shadow: 0 20px 50px rgba(232, 64, 64, 0.4);
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 4px solid var(--primary-blue);
  border-radius: 100px;
  animation: btnPulse 2s infinite;
  opacity: 0;
}

@keyframes btnPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

.btn-premium-cta:hover .pulse-ring {
  border-color: var(--primary-red);
}

.cta-response-tag {
  color: #9ca3af;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-response-tag::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  50% {
    opacity: 0.3;
  }
}

/* Floating Decorative Pills */
.floating-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid rgba(0, 35, 149, 0.1);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 35, 149, 0.08);
  color: var(--primary-blue);
  font-size: 0.95rem;
  font-weight: 800;
  z-index: 4;
  animation: pillFloat 4s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  white-space: nowrap;
}

.floating-pill:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 35, 149, 0.2);
}

.floating-pill svg,
.floating-pill i {
  width: 24px;
  height: 24px;
  stroke-width: 2.5px;
}

@keyframes pillFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.p1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.p2 {
  top: 40%;
  left: -5%;
  animation-delay: 1s;
}

.p3 {
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}

@media (max-width: 1023px) {
  .cta-elevated-card {
    padding: 4rem 2rem;
    border-radius: 40px 10px 40px 10px;
  }

  .cta-main-text h2 {
    font-size: 2.3rem;
  }

  .cta-main-text p {
    font-size: 1.1rem;
  }

  .btn-premium-cta {
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
  }

  .floating-pill {
    display: none;
  }
}

.btn-lg {
  font-size: 1.2rem;
  padding: 1.5rem 3rem;
  margin-top: 2rem;
  display: inline-block;
}

.microcopy {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Removed old max-width media queries - system is now Mobile First */

/* --- PREMIUM ANIMATIONS & EFFECTS --- */

/* 1. Entrance Animations */
.hero-title,
.hero-tagline,
.hero-description,
.hero-benefits li,
.hero-actions,
.hero-image-wrapper {
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-title {
  animation-delay: 0.1s;
}

.hero-tagline {
  animation-delay: 0.3s;
}

.hero-description {
  animation-delay: 0.4s;
}

.hero-benefits li:nth-child(1) {
  animation-delay: 0.6s;
}

.hero-benefits li:nth-child(2) {
  animation-delay: 0.7s;
}

.hero-benefits li:nth-child(3) {
  animation-delay: 0.8s;
}

.hero-actions {
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 2. Floating Elements Animation */
.f-shape {
  animation: floatLoop 5s infinite ease-in-out;
}

@keyframes floatLoop {

  0%,
  100% {
    transform: translateY(0) rotate(15deg);
  }

  50% {
    transform: translateY(-10px) rotate(18deg);
  }
}

.s-l1 {
  animation-delay: 0s;
}

.s-l2 {
  animation-delay: -1.5s;
}

.s-l3 {
  animation-delay: -3s;
}

.s-r1 {
  animation-delay: -0.5s;
}

.s-r2 {
  animation-delay: -2.5s;
}

.s-r3 {
  animation-delay: -4s;
}

/* 3. Button Interaction */
.btn:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
  transition: all 200ms ease;
}

/* 4. Highlight Animation (Marker sweep) */
.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 15px;
  background: rgba(255, 235, 59, 0.5);
  z-index: -1;
  border-radius: 4px;
  animation: sweepHighlight 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 1.2s;
}

@keyframes sweepHighlight {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* 5. Parallax Hardware Acceleration */
.hero-bg,
.hero-image-wrapper {
  will-change: transform;
}

/* --- FLOATING WHATSAPP PREMIUM --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #25D366;
  /* WhatsApp Green */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 25px rgba(33, 77, 188, 0.4),
    0 0 0 0 rgba(0, 245, 255, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsapp-glow-pulse 2s infinite;
}

.whatsapp-float svg {
  width: 38px;
  height: 38px;
  fill: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background: #20BA5A;
  /* Darker WhatsApp Green */
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(32, 186, 90, 0.6);
}

@keyframes whatsapp-glow-pulse {
  0% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Otimização Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

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

/* --- DEVELOPER CREDIT --- */
.developer-credit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}

.developer-logo {
  height: 32px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  /* Pure White */
  transition: all 0.3s ease;
}

.developer-credit:hover {
  color: rgba(255, 255, 255, 0.8);
}

.developer-credit:hover .developer-logo {
  opacity: 1;
  transform: translateY(-2px);
}

/* ==========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================== */
.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

@media (max-width: 767px) {
  h2 {
    font-size: 1.8rem !important;
  }

  .footer {
    background: var(--primary-blue) !important;
  }

  /* Global Mobile Centering */
  .hero-content,
  .diff-info-header,
  .how-it-works-header,
  .exp-text,
  .mentor-text-column,
  .orbit-header,
  .pricing-grid-header,
  .cta-elevated-card,
  .footer-grid,
  .footer-bottom-minimal,
  .copyright-text,
  .proof-visual-wrapper,
  .experience-badge-orbit,
  .mentor-bio-v2,
  .mentor-label-v2 {
    text-align: center !important;
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
  }

  /* Specific internal adjustments */
  .hero-benefits li {
    justify-content: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .footer-contact-list li {
    justify-content: center;
    text-align: center;
  }

  .footer-logo-brand {
    justify-content: center;
    text-align: center;
  }

  /* --- PREMIUM FLOATING CAPSULE HEADER (MOBILE) --- */
  .header {
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none;
  }

  .navbar {
    pointer-events: auto;
    width: 92%;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #012395, #ffffff) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 60px;
    padding: 0.5rem 0.5rem 0.5rem 1.4rem;
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  }

  .logo-text {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar .brand-name {
    color: var(--white) !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px !important;
  }

  .navbar .logo-tagline {
    color: #ffffff !important;
    font-size: 0.55rem !important;
    display: block !important;
    font-weight: 700 !important;
  }

  /* Restore Footer Visibility on Mobile */
  .footer-logo-brand {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }

  .footer-logo-brand .brand-name {
    color: #ffffff !important;
    font-size: 1.5rem !important;
  }

  .footer-logo-brand .logo-tagline {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.7rem !important;
  }

  .footer-logo-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo-img {
    height: 38px !important;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  }

  .logo {
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.6rem !important;
  }

  .logo-text {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .btn-start {
    display: none !important;
  }

  /* --- MOBILE HERO: WHITE AURA REDESIGN --- */
  .hero {
    min-height: auto;
    height: auto;
    padding: 9rem 0 4rem;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
  }

  .hero-bg {
    background: #ffffff !important;
  }

  .hero-bg::before,
  .blue-wave-container {
    display: none !important;
  }

  .orbit-glow-bg {
    display: block !important;
    /* Visible Aura Blooms on Mobile */
  }

  .hero-container {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .background-text {
    display: none !important;
    /* Minimalist clean background */
  }

  .hero-title {
    font-size: 2.2rem !important;
    color: var(--primary-blue) !important;
    margin: 0 auto 1rem;
    max-width: 350px;
    line-height: 1.1;
  }

  .hero-title .highlight {
    color: var(--primary-red) !important;
    background: none !important;
  }

  .hero-title .highlight::after {
    display: none !important;
  }

  .hero-tagline {
    color: var(--primary-red) !important;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }

  /* --- HUMAN CONNECTION FOCAL POINT (MOBILE) --- */
  .hero-human-connection {
    display: block !important;
    position: relative;
    width: 90%;
    margin: 2rem auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border: 4px solid #ffffff;
    background: #ffffff;
    z-index: 50;
    /* Above Aura Blooms */
    animation: floatPremium 6s infinite ease-in-out;
  }

  .human-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 240px;
  }

  .human-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 51;
  }

  .human-badge i {
    width: 16px;
    height: 16px;
    color: var(--primary-red);
  }

  .hero-description {
    display: none !important;
  }

  .hero-benefits {
    align-items: center;
    margin: 0 auto 2rem;
    padding: 0;
  }

  .hero-benefits li {
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 600;
  }

  .hero-benefits i {
    color: var(--primary-red) !important;
  }

  .hero-actions {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-image-wrapper {
    display: none !important;
  }

  /* --- EXTRA FLOATING SHAPES POSITIONING --- */
  .s6 {
    top: 15%;
    right: 5%;
    width: 35px;
    height: 35px;
    --rot: 15deg;
  }

  .s7 {
    bottom: 25%;
    left: 5%;
    width: 45px;
    height: 45px;
    --rot: -20deg;
  }

  .s8 {
    top: 55%;
    right: 3%;
    width: 25px;
    height: 25px;
    --rot: 45deg;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 4rem;
  }
}

@media (min-width: 1024px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: row;
  /* Main logo + Text side by side */
  align-items: center;
  gap: 0.4rem;
  /* Minimized horizontal gap */
  transition: opacity 0.3s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  /* Brand Name + Tagline stacked below it */
  align-items: flex-start;
  gap: 0;
  /* Removed vertical gap for tight alignment */
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-img {
  height: 48px;
  /* Perfectly aligns with 1.5rem brand + 0.2rem gap + 0.7rem tagline */
  width: auto;
  display: block;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: none;
  font-weight: 500;
  opacity: 0.85;
  background: none;
  backdrop-filter: none;
  padding: 0;
  border: none;
  box-shadow: none;
}
/* --- FINAL MOBILE OVERRIDES FOR JOURNEY SECTION --- */
@media (max-width: 1024px) {
  #jornada .journey-flex-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 3rem !important;
  }

  #jornada .how-it-works-header {
    flex: none !important;
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 2rem !important;
    padding: 0 1.5rem !important;
  }

  #jornada .journey-canvas-wrapper {
    width: 100% !important;
    height: auto !important;
    margin-top: 2rem !important;
  }

  #jornada .journey-canvas {
    display: flex !important;
    flex-direction: column !important;
    gap: 6rem !important;
    padding: 3rem 1rem !important;
    height: auto !important;
    position: relative !important;
    overflow: visible !important;
  }

  #jornada .journey-curve-svg {
    display: none !important;
  }

  #jornada .jnode-content {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    transform: none !important;
    margin-bottom: 0 !important;
  }

  #jornada .jnode-num {
    display: block !important;
    font-size: 90px !important;
    font-weight: 900 !important;
    color: #f0f2f5 !important;
    line-height: 0.8 !important;
    margin-bottom: -10px !important;
    opacity: 0.7 !important;
    font-family: Arial, sans-serif !important;
  }

  #jornada .jnode-text h4 {
    font-size: 1.4rem !important;
    color: var(--primary-blue) !important;
    margin-bottom: 0.5rem !important;
  }

  #jornada .jnode-text p {
    font-size: 1rem !important;
    color: #4b5563 !important;
    max-width: 300px !important;
  }
}
