:root {
  --green: #00ca42;
  --green-dark: #00a235;
  --purple: #5e3bee;
  --bg: #f7f8fb;
  --text: #1f2430;
  --muted: #5a6072;
  --card: #ffffff;
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 24px;
  margin: 0 auto;
}

.hero {
  color: #fff;
  padding: 32px 0 96px;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

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

.brand img {
  height: 64px;
}

#menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 99px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.nav .brand {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  width: 120px;
}

body.scrolled .nav .brand {
  opacity: 1;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-1px);
  background: var(--green-dark);
}

.btn.secondary {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 10px 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
  align-items: center;
  justify-items: start;
  min-height: 70vh;
}

.hero-copy {
  max-width: 640px;
  justify-self: start;
}

.hero-logo {
  text-align: center;
}

.hero-logo img {
  max-width: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.25));
}

.hero-copy h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 12px 0;
}

.hero-copy .lead {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 12px 0 24px;
  font-size: 18px;
}

.text-green {
  color: var(--green);
  font-weight: 700;
}

.hero-copy .subnote {
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  margin: 0;
}

.dna-title {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(30px, 3.5vw, 36px);
  margin-bottom: 12px;
}

.hero-copy .eyebrow {
  color: #a4f5c7;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-form input[type="email"] {
  flex: 0 1 auto;
  max-width: 400px;
  min-width: 220px;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.35);
  color: #fff;
}

.cta-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

.section {
  padding: 96px 0;
}

.section.light {
  background: #fff;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head h2 {
  margin: 6px 0 10px;
  font-size: clamp(28px, 3vw, 36px);
}

.section-head .section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cards.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards.five {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.cards.stretch .card {
  height: 100%;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 202, 66, 0.12);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.card h3 {
  margin: 16px 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.bullet-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.bullet-list li {
  margin-bottom: 8px;
}

.journey-curve-wrap {
  position: relative;
  padding: 32px 0 12px;
}

.journey-canvas {
  position: relative;
  overflow: visible;
  padding: 60px 0 80px;
  display: block;
  width: 100%;
}

.journey-canvas::-webkit-scrollbar {
  height: 6px;
}

.journey-canvas::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
}

.journey-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
}

/* SVG marker groups */
.journey-svg .journey-marker circle {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.journey-svg .journey-marker text {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  pointer-events: none;
}

.journey-svg .journey-marker foreignObject {
  overflow: visible;
  pointer-events: none;
}

.journey-svg .journey-marker foreignObject div {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.journey-svg .journey-label {
  text-align: center;
  line-height: 1.4;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.journey-svg .journey-label .label-title {
  margin: 0 0 4px 0;
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
  display: block;
}

.journey-svg .journey-label .label-sub {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  word-wrap: break-word;
  hyphens: auto;
  display: block;
  line-height: 1.5;
}

.journey-svg .journey-label .anchor-title {
  color: var(--text);
}

.journey-svg .journey-label .anchor-sub {
  color: var(--muted);
  opacity: 0.95;
}

/* HTML Labels sobre o SVG */
.journey-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.journey-label-item {
  position: absolute;
  width: 180px;
  text-align: center;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  transform: translateX(-50%);
}

.journey-label-item.label-above {
  bottom: auto;
}

.journey-label-item.label-below {
  top: auto;
}

.journey-label-item .label-title {
  margin: 0 0 4px 0;
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}

.journey-label-item.label-above .label-title {
  margin-bottom: 4px;
}

.journey-label-item.label-below .label-title {
  margin-bottom: 4px;
}

.journey-label-item .label-sub {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.journey-label-item.label-above {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-label-item.label-above .label-title {
  order: 1;
}

.journey-label-item.label-above .label-sub {
  order: 2;
}

.journey-label-item.label-below {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.journey-label-item.label-below .label-title {
  order: 2;
}

.journey-label-item.label-below .label-sub {
  order: 1;
}

.journey-label-item.anchor .label-title {
  color: var(--text);
}

.journey-label-item.anchor .label-sub {
  color: var(--muted);
  opacity: 0.95;
}

.journey-label {
  max-width: 170px;
  color: var(--muted);
  line-height: 1.4;
  padding: 0 6px;
}

.journey-label .label-title {
  margin: 0;
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}

.journey-label .label-sub {
  margin: 0;
  font-size: 13px;
}

.journey-vertical {
  display: none;
  position: relative;
  padding-left: 26px;
}

.journey-vertical-line {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 8px;
  width: 2px;
  background: rgba(0, 202, 66, 0.2);
  border-radius: 999px;
}

.journey-vertical-steps {
  display: grid;
  gap: 14px;
}

.journey-v-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.journey-v-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 202, 66, 0.7);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green);
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.journey-v-step.anchor .journey-v-dot {
  width: 30px;
  height: 30px;
  border-width: 1px;
  background: #fff;
}

.journey-v-text .label-title {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
}

.journey-v-text .label-sub {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.anchor-title {
  color: var(--text);
}

.anchor-sub {
  color: var(--muted);
  opacity: 0.95;
}

@media (max-width: 768px) {
  .journey-canvas {
    display: none;
  }
  .journey-vertical {
    display: block;
  }
}

@media (max-width: 768px) {
  .journey-canvas {
    display: none;
  }
  .journey-vertical {
    display: block;
  }
}

.brand-card {
  text-align: center;
}

.brand-logo {
  max-height: 72px;
  margin: 0 auto 14px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.split-media {
  display: flex;
  justify-content: flex-start;
  max-width: 560px;
}

.split-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 520px;
  border-radius: 58% 42% 62% 38% / 50% 60% 40% 50%;
  box-shadow: var(--shadow);
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
  color: var(--muted);
}

.bullets li {
  margin-bottom: 10px;
}

.dna-text {
  color: var(--muted);
  margin: 14px 0 20px;
}

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

.avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.gradient {
  background: linear-gradient(135deg, #1f1f2b, #2c2952);
  color: #fff;
}

.gradient .card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.gradient .card p {
  color: rgba(255,255,255,0.82);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  align-items: center;
}

.logo-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.cta {
  background: var(--green);
  color: #fff;
}

.cta-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: center;
}

.cta .cta-form input {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.08);
}

.cta .cta-form input::placeholder {
  color: rgba(0,0,0,0.5);
}

.cta .btn.primary {
  background: #000;
  color: #fff;
}

.cta .btn.primary:hover {
  background: #1a1a1a;
}

.footer {
  background: #0f1116;
  color: rgba(255,255,255,0.82);
  padding: 38px 0 28px;
}

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

.footer-brand img {
  height: 56px;
  margin-bottom: 8px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a,
.footer-social a {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}

.footer-contact p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

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

.footer-note {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* Modal de escolha */
.choice-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 24px;
}

.choice-modal.active {
  opacity: 1;
  visibility: visible;
}

.choice-modal-content {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 56px 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.choice-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,0.6);
  transition: all 0.2s ease;
  z-index: 10;
  padding: 0;
}

.choice-modal-close:hover {
  background: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.8);
  transform: rotate(90deg);
}

.choice-modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

.choice-modal-close svg {
  width: 18px;
  height: 18px;
}

.choice-modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(34, 197, 94, 0.5));
  opacity: 0.6;
}

.choice-modal.active .choice-modal-content {
  transform: scale(1) translateY(0);
}

.choice-modal-logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choice-modal-logo img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
  opacity: 0.95;
}

.choice-modal-tagline {
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
  margin: 0 0 20px;
}

.choice-modal-tagline .text-green {
  color: var(--green);
}

.choice-modal-content h3 {
  font-size: 30px;
  margin: 0 0 40px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.choice-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.choice-btn {
  background: rgba(255,255,255,0.8);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 26px 36px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.choice-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.08), transparent);
  transition: left 0.5s ease;
}

.choice-btn:hover::before {
  left: 100%;
}

.choice-btn:hover {
  border-color: var(--green);
  background: rgba(255,255,255,0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2), 0 0 0 1px rgba(34, 197, 94, 0.1);
}

.choice-btn:active {
  transform: translateY(-1px);
}

.choice-btn strong {
  font-size: 19px;
  color: var(--text);
  font-weight: 700;
  display: block;
  position: relative;
  z-index: 1;
}

.choice-btn span {
  font-size: 15px;
  color: rgba(0,0,0,0.65);
  font-weight: 400;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .choice-modal-content {
    padding: 40px 28px;
    border-radius: 20px;
  }
  .choice-modal-logo img {
    height: 52px;
  }
  .choice-modal-tagline {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .choice-modal-content h3 {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .choice-btn {
    padding: 22px 28px;
  }
  .choice-btn strong {
    font-size: 17px;
  }
  .choice-btn span {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    padding: 90px 24px 32px;
    transform: translateY(-100%);
    transition: transform 0.2s ease;
    flex-direction: column;
    gap: 18px;
  }
  #menu-toggle:checked ~ .nav-links {
    transform: translateY(0);
  }
  .menu-btn {
    display: flex;
  }
  .brand img {
    height: 48px;
  }
  .hero-logo img {
    max-width: 200px;
  }
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .hero {
    padding-bottom: 72px;
  }
  .cta-form {
    flex-direction: column;
  }
  .cta-form input,
  .cta-form .btn {
    width: 100%;
  }
  .footer-grid {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float i {
    font-size: 50px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #fff;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  font-size: 32px;
}
