/* ==========================================================================
   RONNY AI — LANDING PAGE
   Design System "Wemov Tech Premium"
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500&family=Outfit:wght@400;500;600;700&display=swap');

/* ==========================================================================
   1. CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================================================== */
:root {
  /* Primárias (Wemov) */
  --navy:           #001a5c;
  --blue:           #002F98;
  --blue-mid:       #0070C0;
  --blue-light:     #4DA3E0;

  /* Superfícies */
  --white:          #FFFFFF;
  --off-white:      #F8F9FC;
  --gray-light:     #F1F3F8;
  --gray-border:    #E2E6EF;

  /* Texto */
  --text-primary:   #0F1729;
  --text-secondary: #4A5068;
  --text-muted:     #8891A5;

  /* Gradientes */
  --gradient-hero:  linear-gradient(135deg, #001a5c 0%, #002F98 50%, #0070C0 100%);
  --gradient-card:  linear-gradient(180deg, #F8F9FC 0%, #FFFFFF 100%);
  --gradient-glow:  radial-gradient(ellipse at 50% 0%, rgba(0,112,192,0.08) 0%, transparent 70%);

  /* Efeitos */
  --glow-blue:      0 0 60px rgba(0,112,192,0.12);
  --shadow-card:    0 1px 3px rgba(15,23,41,0.04), 0 4px 12px rgba(15,23,41,0.03);
  --shadow-hover:   0 2px 8px rgba(15,23,41,0.06), 0 8px 24px rgba(15,23,41,0.05);

  /* Layout */
  --container-max:  1200px;
  --section-gap:    140px;
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-pill:    24px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  line-height: 1.15;
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h3 {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
}

.overline {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--blue-mid);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

section {
  padding: 100px 0;
  position: relative;
}

@media (min-width: 768px) {
  section { padding: var(--section-gap) 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ==========================================================================
   5. COMPONENTS — BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--gray-border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
}

/* White variants (for dark backgrounds) */
.btn-primary--white {
  background: var(--white);
  color: var(--navy);
}

.btn-primary--white:hover {
  background: var(--off-white);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.btn-secondary--white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-secondary--white:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ==========================================================================
   6. COMPONENTS — BADGE / PILL
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,112,192,0.08);
  color: var(--blue-mid);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

/* ==========================================================================
   7. COMPONENTS — CARDS
   ========================================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--blue-light);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Icon box inside cards */
.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,112,192,0.06);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue-mid);
  stroke-width: 1.8;
  fill: none;
}

/* ==========================================================================
   8. ANIMATIONS — SCROLL-TRIGGERED
   ========================================================================== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .animate-in:nth-child(1) { transition-delay: 0s; }
.stagger > .animate-in:nth-child(2) { transition-delay: 0.1s; }
.stagger > .animate-in:nth-child(3) { transition-delay: 0.2s; }
.stagger > .animate-in:nth-child(4) { transition-delay: 0.3s; }
.stagger > .animate-in:nth-child(5) { transition-delay: 0.4s; }
.stagger > .animate-in:nth-child(6) { transition-delay: 0.5s; }
.stagger > .animate-in:nth-child(7) { transition-delay: 0.6s; }
.stagger > .animate-in:nth-child(8) { transition-delay: 0.7s; }

/* ==========================================================================
   9. NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, rgba(0, 17, 58, 0.95) 0%, rgba(0, 26, 92, 0.95) 50%, rgba(0, 47, 152, 0.95) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-border);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.navbar__logo {
  font-family: "Century Gothic", "Apple Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar__logo {
  color: var(--navy);
}

.navbar__logo-wrapper {
  position: relative;
  height: 28px;
  width: 28px;
  display: inline-block;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.navbar__logo-img--white {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.navbar__logo-img--blue {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.navbar.scrolled .navbar__logo-img--white {
  opacity: 0;
}

.navbar.scrolled .navbar__logo-img--blue {
  opacity: 1;
}

.navbar__logo span {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar__logo span {
  color: var(--blue-mid);
}

.navbar__cta .btn {
  padding: 10px 24px;
  font-size: 14px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar__cta .btn:hover {
  background: var(--gray-light);
  color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .navbar__cta .btn {
  background: var(--navy);
  color: var(--white);
}

.navbar.scrolled .navbar__cta .btn:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   10. HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Background image overlay with opacity, grid and horizontal gradient */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 35%, rgba(255, 255, 255, 0) 80%),
    repeating-linear-gradient(90deg, rgba(0,112,192,0.03) 0, rgba(0,112,192,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(0,112,192,0.03) 0, rgba(0,112,192,0.03) 1px, transparent 1px, transparent 40px),
    url('assets/hero-warehouse.png') no-repeat center center;
  background-size: auto, auto, auto, cover;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

/* Primary glow — large top-center orb */
.hero::after {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(0,47,152,0.07) 0%, rgba(0,112,192,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Floating gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(0,112,192,0.08);
  top: 10%;
  left: -5%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero__orb--2 {
  width: 350px;
  height: 350px;
  background: rgba(77,163,224,0.06);
  top: 30%;
  right: -8%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero__orb--3 {
  width: 250px;
  height: 250px;
  background: rgba(0,26,92,0.05);
  bottom: 5%;
  left: 20%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-25px, 20px) scale(1.03); }
  66% { transform: translate(20px, -10px) scale(0.96); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -25px) scale(1.08); }
}

/* Diagonal light reflection overlay */
.hero__light {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.4) 45%,
    rgba(255,255,255,0.1) 50%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
  animation: lightSweep 8s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes lightSweep {
  0%, 100% { transform: translateX(-10%); opacity: 0.3; }
  50% { transform: translateX(10%); opacity: 0.6; }
}

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

/* Split layout */
.hero__split {
  display: flex;
  align-items: center;
  gap: 48px;
}

@media (min-width: 1024px) {
  .hero__split {
    gap: 64px;
  }
}

/* Left: Copy */
.hero__copy {
  flex: 1;
  min-width: 0;
  text-align: left;
}

/* Right: Visual */
.hero__visual {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-self: flex-start;
  margin-top: -30px;
}

.hero__badge {
  margin-bottom: 24px;
}

.hero__title {
  margin: 0 0 20px;
}

.hero__desc {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

.hero__proof span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero__proof .separator {
  color: var(--gray-border);
  margin: 0 2px;
}

.hero__proof svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue-mid);
  stroke-width: 2;
  fill: none;
}

/* Hero mockup with 3D perspective and floating micro-animation */
.hero__mockup-wrapper {
  perspective: 1200px;
  position: relative;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__mockup {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,112,192,0.15);
  background: var(--off-white);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(1deg);
  transition: transform 0.6s ease;
  animation: cyberGlow 6s ease-in-out infinite;
}

@keyframes cyberGlow {
  0%, 100% {
    box-shadow:
      0 0 40px rgba(0,112,192,0.1),
      0 25px 50px -12px rgba(0,26,92,0.12),
      0 0 0 1px rgba(255,255,255,0.8) inset;
  }
  50% {
    box-shadow:
      0 0 60px rgba(0,112,192,0.22),
      0 25px 50px -12px rgba(0,26,92,0.22),
      0 0 0 1px rgba(0,112,192,0.2) inset;
  }
}

.hero__mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

/* Diagonal reflection on mockup */
.hero__mockup::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255,255,255,0.3) 45%,
    rgba(255,255,255,0.05) 50%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 10;
}

.hero__mockup-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__mockup-wms {
  flex: 1;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__mockup-wms .wms-bar {
  height: 8px;
  background: var(--gray-border);
  border-radius: 4px;
}

.hero__mockup-wms .wms-bar:nth-child(1) { width: 60%; }
.hero__mockup-wms .wms-bar:nth-child(2) { width: 80%; }
.hero__mockup-wms .wms-bar:nth-child(3) { width: 45%; }
.hero__mockup-wms .wms-bar:nth-child(4) { width: 70%; }

.hero__mockup-wms .wms-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.hero__mockup-wms .wms-block {
  flex: 1;
  height: 60px;
  background: var(--gray-border);
  border-radius: 6px;
}

.hero__mockup-chat {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  height: 390px;
  position: relative;
  overflow: hidden;
}

.hero__mockup-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.hero__mockup-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  border: 1px solid var(--gray-border);
  flex-shrink: 0;
}

.hero__mockup-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__mockup-chat-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.hero__mockup-chat-status {
  font-size: 11px;
  color: var(--text-muted);
}

.hero__mockup-chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  height: 260px;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero__mockup-chat-messages::-webkit-scrollbar {
  display: none;
}

.hero__mockup-msg {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 85%;
  animation: chatFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__mockup-msg--user {
  background: var(--navy);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.hero__mockup-msg--ronny {
  background: var(--off-white);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--gray-border);
}

/* Simulated chat input footer */
.hero__mockup-chat-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-border);
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.simulated-input {
  flex: 1;
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: left;
  position: relative;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}

/* Cursor typing effect on the simulated input */
.simulated-input.typing::after {
  content: '|';
  margin-left: 2px;
  color: var(--blue-mid);
  animation: cursorBlink 0.8s infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.simulated-send-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.simulated-send-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

@media (max-width: 1023px) {
  .hero__split {
    flex-direction: column;
    text-align: center;
  }
  .hero__copy {
    text-align: center;
  }
  .hero__desc {
    max-width: 620px;
    margin: 0 auto 32px;
  }
  .hero__ctas {
    justify-content: center;
  }
  .hero__proof {
    justify-content: center;
  }
  .hero__visual {
    max-width: 520px;
    margin: 24px auto 0;
    justify-content: center;
    align-self: auto;
  }
  .hero__mockup {
    transform: none;
  }
  .hero__mockup:hover {
    transform: none;
  }
}

/* Hero image background */
.hero__image {
  max-width: 960px;
  margin: 48px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  perspective: 1200px;
}

.hero__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  transform: rotateX(2deg);
  transition: transform 0.6s ease;
  box-shadow:
    0 25px 50px -12px rgba(0,26,92,0.2),
    0 0 0 1px rgba(0,112,192,0.1);
}

.hero__image img:hover {
  transform: rotateX(0deg);
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(255,255,255,0.8) 100%
  );
  pointer-events: none;
}

/* ==========================================================================
   11. PROBLEMA SECTION
   ========================================================================== */
.problema {
  background: var(--off-white);
}

.problema__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .problema__content {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

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

.problema__text .section-desc {
  text-align: left;
}

.problema__text .overline {
  text-align: left;
}

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

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.pain-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--blue-light);
}

.pain-card__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D94545;
  font-size: 14px;
  margin-top: 1px;
}

.pain-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: #D94545;
  stroke-width: 2.2;
  fill: none;
}

.pain-card p {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ==========================================================================
   11.5 JORNADA DA CAIXA — 3D Scroll-Linked Section
   ========================================================================== */
.jornada {
  position: relative;
  background: var(--off-white);
  height: 400vh;
}

.jornada__viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  overflow: hidden;
}

/* Video area (full screen background) */
.jornada__box-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.jornada__video {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 0;
  object-fit: cover;
}

/* Text track (full screen viewport wrapper) */
.jornada__text-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Phase text blocks (Premium Glassmorphic Cards) */
.jornada__phase {
  position: absolute;
  top: 50%;
  width: 460px;
  max-width: calc(100% - 48px);
  transform: translateY(-50%);
  opacity: 0;
  transition: none;
  background: rgba(255, 255, 255, 0.75); /* glassmorphism light card */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 
    0 30px 60px rgba(0, 26, 92, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  pointer-events: auto;
}

/* Alternating positions for phases (Recebimento: Right, Armazenagem: Left...) */
.jornada__phase[data-phase="0"],
.jornada__phase[data-phase="2"] {
  right: 8%;
  left: auto;
}

.jornada__phase[data-phase="1"],
.jornada__phase[data-phase="3"] {
  left: 8%;
  right: auto;
}

.jornada__phase .overline {
  text-align: left;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 3px;
}

.jornada__phase h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-align: left;
}

.jornada__phase p {
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: left;
}
/* Technological pointer lines for HUD indicators */
.jornada__callout {
  position: absolute;
  top: 40px;
  width: 150px;
  height: 80px;
  pointer-events: none;
  z-index: 10;
}

/* Left callouts (Phase 0 and 2 pointing left) */
.jornada__phase[data-phase="0"] .jornada__callout,
.jornada__phase[data-phase="2"] .jornada__callout {
  right: 100%;
  margin-right: -15px;
}

/* Right callouts (Phase 1 and 3 pointing right) */
.jornada__phase[data-phase="1"] .jornada__callout,
.jornada__phase[data-phase="3"] .jornada__callout {
  left: 100%;
  margin-left: -15px;
}

.jornada__callout-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.jornada__callout-path {
  fill: none;
  stroke: var(--blue-mid);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 6 3;
  animation: techDashFlow 1s linear infinite;
  filter: drop-shadow(0 0 2px var(--blue-mid));
}

@keyframes techDashFlow {
  to {
    stroke-dashoffset: -9;
  }
}

.jornada__callout-dot {
  fill: var(--blue-mid);
}

.jornada__callout-pulse {
  fill: var(--blue-mid);
}

/* Closing message */
.jornada__closing {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 32px 48px;
  background: rgba(255, 255, 255, 0.75); /* glass backdrop */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-xl);
  box-shadow: 
    0 20px 40px rgba(0, 26, 92, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  opacity: 0;
  z-index: 5;
  width: 90%;
  max-width: 680px;
  pointer-events: auto;
}

.jornada__closing h2 {
  font-size: clamp(20px, 2vw, 28px);
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.jornada__closing p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--blue-mid);
  font-weight: 600;
}

/* Scan effect line */
.jornada__scan-effect {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

/* Section intro header */
.jornada__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 60px;
  text-align: center;
  z-index: 4;
}

/* Fallback for non-WebGL */
.jornada__fallback {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.jornada__fallback img {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
}

/* Progress indicator */
.jornada__progress {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 5;
}

.jornada__progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-border);
  transition: all 0.3s ease;
}

.jornada__progress-dot.active {
  background: var(--blue-mid);
  box-shadow: 0 0 8px rgba(0, 112, 192, 0.4);
  transform: scale(1.3);
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1023px) {
  .jornada__box-area {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .jornada__video {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }

  .jornada__text-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .jornada__phase {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    max-width: none !important;
    transform: translateY(-50%) !important;
    padding: 30px 24px;
    text-align: center;
  }

  .jornada__phase .overline {
    text-align: center;
  }

  .jornada__phase h2 {
    text-align: center;
    font-size: clamp(20px, 4vw, 26px);
  }

  .jornada__phase p {
    max-width: 100%;
    text-align: center;
  }

  .jornada__hud,
  .jornada__callout {
    display: none !important;
  }
  .jornada__progress {
    left: 16px;
  }

  .jornada__closing {
    bottom: 40px;
    padding: 24px 20px;
    width: calc(100% - 40px);
  }
}

@media (max-width: 767px) {
  .jornada {
    height: 350vh;
  }

  .jornada__phase h2 {
    font-size: clamp(20px, 5vw, 26px);
  }
}

/* ==========================================================================
   12. ABOUT / CONHEÇA O RONNY
   ========================================================================== */
.conheca {
  background: var(--white);
}

.conheca__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .conheca__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   13. CAPACIDADES / 3 PILARES
   ========================================================================== */
.capacidades {
  background: var(--off-white);
}

.pilares {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pilares {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pilar-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.25s ease;
}

.pilar-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--blue-light);
}

.pilar-card h3 {
  margin-bottom: 4px;
}

.pilar-card__subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pilar-card__examples {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pilar-card__example {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-primary);
  padding: 10px 14px;
  background: var(--gray-light);
  border-radius: 6px;
  line-height: 1.4;
  display: flex;
  gap: 8px;
}

.pilar-card__example .arrow {
  color: var(--blue-mid);
  flex-shrink: 0;
}

.pilar-card__scope {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--gray-border);
}

.pilar-card__scope strong {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   14. COMO FUNCIONA
   ========================================================================== */
.como-funciona {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Connector line for desktop */
@media (min-width: 768px) {
  .steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--gray-border), var(--blue-light), var(--gray-border));
  }
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-mid);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--blue-light);
  border-radius: 50%;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.step .icon-box {
  margin: 0 auto 16px;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================================
   15. DEMO / CHAT SIMULADO
   ========================================================================== */
.demo {
  background: var(--off-white);
}

.chat-window {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glow-blue);
}

.chat-window__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-border);
  background: var(--white);
}

.chat-window__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  border: 1px solid var(--gray-border);
  flex-shrink: 0;
}

.chat-window__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-window__info h4 {
  font-size: 14px;
  font-weight: 600;
}

.chat-window__info span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-window__info .online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34C759;
  display: inline-block;
}

.chat-messages {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.chat-message {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
  animation: chatFadeIn 0.4s ease-out;
}

.chat-message--user {
  background: var(--navy);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-message--ronny {
  background: var(--off-white);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--gray-border);
}

.chat-message--ronny ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat-message--ronny ul li {
  padding-left: 4px;
  font-size: 13px;
}

.chat-message--ronny .risk-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(217,69,69,0.1);
  color: #D94545;
}

.chat-message--ronny strong {
  color: var(--text-primary);
}

/* Typing indicator */
.chat-typing {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
  align-self: flex-start;
  background: var(--off-white);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--gray-border);
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1.4s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

@keyframes chatFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 32px;
  font-style: italic;
}

/* ==========================================================================
   16. ÁREAS COMPLETAS
   ========================================================================== */
.areas {
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-card {
  background: var(--off-white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.25s ease;
}

.area-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--blue-light);
  background: var(--white);
}

.area-card .icon-box {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.area-card .icon-box svg {
  width: 20px;
  height: 20px;
}

.area-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.area-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ==========================================================================
   17. CONFIANÇA / SEGURANÇA
   ========================================================================== */
.confianca {
  background: var(--gradient-hero);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.confianca::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}

.confianca .container {
  position: relative;
  z-index: 1;
}

.confianca .overline {
  color: var(--blue-light);
}

.confianca .section-title {
  color: var(--white);
}

.confianca .section-desc {
  color: rgba(255,255,255,0.7);
}

.trust-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .trust-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-block {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.trust-block:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.trust-block .icon-box {
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.trust-block .icon-box svg {
  stroke: var(--white);
}

.trust-block h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.trust-block p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================================================
   18. ROADMAP
   ========================================================================== */
.roadmap {
  background: var(--off-white);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-mid), var(--blue-light), var(--gray-border));
}

.timeline__item {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  position: relative;
}

.timeline__marker {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-mid);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--blue-mid);
  margin-top: 6px;
}

.timeline__item:nth-child(2) .timeline__dot {
  background: var(--blue-light);
  box-shadow: 0 0 0 2px var(--blue-light);
}

.timeline__item:nth-child(3) .timeline__dot {
  background: var(--gray-border);
  box-shadow: 0 0 0 2px var(--gray-border);
}

.timeline__content {
  flex: 1;
}

.timeline__label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-mid);
  margin-bottom: 8px;
}

.timeline__content h3 {
  margin-bottom: 8px;
}

.timeline__content p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ==========================================================================
   19. CTA FINAL
   ========================================================================== */
.cta-final {
  background: var(--gradient-hero);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-final__desc {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-final__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-final__footer {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   20. FAQ
   ========================================================================== */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--blue-mid);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-question__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  stroke-width: 2;
  fill: none;
}

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

.faq-item.active .faq-question {
  color: var(--blue-mid);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer__inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ==========================================================================
   21. FOOTER
   ========================================================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 48px 0 32px;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__brand {
  font-family: "Century Gothic", "Apple Gothic", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.footer__brand span {
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ==========================================================================
   22. FOCUS STATES (Acessibilidade)
   ========================================================================== */
:focus-visible {
  outline: 2px solid var(--blue-mid);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
}

/* ==========================================================================
   23. SELECTION STYLE
   ========================================================================== */
::selection {
  background: rgba(0,112,192,0.15);
  color: var(--text-primary);
}

/* ==========================================================================
   24. RESPONSIVE REFINEMENTS
   ========================================================================== */
@media (max-width: 767px) {
  section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero__mockup {
    padding: 12px;
  }

  .hero__orb {
    display: none;
  }

  .hero__light {
    display: none;
  }

  .chat-messages {
    padding: 16px;
  }

  .chat-message {
    max-width: 92%;
    font-size: 13px;
  }

  .trust-block {
    padding: 24px;
  }

  .steps {
    gap: 32px;
  }

  .timeline::before {
    left: 19px;
  }

  .timeline__item {
    gap: 24px;
    padding: 24px 0;
  }

  .timeline__marker {
    width: 40px;
  }

  .pilar-card {
    padding: 24px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-final__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-final__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   25. ORGANIC DECORATIVE ELEMENTS
   ========================================================================== */

/* Section transition glow */
.section-glow {
  position: absolute;
  width: 100%;
  height: 200px;
  top: -100px;
  left: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,112,192,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating decorative dots on sections */
.conheca,
.como-funciona {
  position: relative;
}

.conheca::after,
.como-funciona::after {
  content: '';
  position: absolute;
  top: 60px;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,112,192,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Subtle gradient border on confianca section */
.confianca::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,163,224,0.3), transparent);
  z-index: 1;
}

/* CTA final enhanced glow */
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(77,163,224,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Enhanced badge with subtle glow */
.badge {
  position: relative;
  border: 1px solid rgba(0,112,192,0.12);
}

.badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,112,192,0.1), transparent, rgba(77,163,224,0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.badge:hover::before {
  opacity: 1;
}
