* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #272727;
  --white: #ffffff;
  --ink: #1A1710;
  --black: #000000;
  --ink-muted: #687a6a;
  --accent: #46dc2c;
  --accent-light: #4afa33;
  --accent-black: #45a021;
  --border: rgba(255,255,255,0.1);
  --shadow: 0 2px 20px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 60px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  background:
    fixed linear-gradient(transparent, #070707 70%),
    fixed repeating-linear-gradient(#2b2b2b, #2b2b2b 1px, transparent 1px, transparent 40px),
    fixed repeating-linear-gradient(to right, #2b2b2b, #2b2b2b 1px, transparent 1px, transparent 40px)
    #070707;
  min-height: 100vh;
}

/* ==============================
   NAV
   ============================== */
nav {
  width: 100%;
  padding: 0.75rem 5%;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: var(--accent-light);
}

.btns {
  display: flex;
  flex-shrink: 0;
}

.btn {
  padding: 0.5rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  background-color: var(--white);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav menu */
.mobile-menu {
  position: fixed;
  top: 57px;
  left: 0;
  width: 100%;
  z-index: 99;
  display: none;
  flex-direction: column;
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--accent-light); }

.mobile-menu .btn {
  background-color: var(--black);
  width: fit-content;
  margin-top: 0.6rem;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  color: var(--accent);
}

/* ==============================
   SVG ANIMATION
   ============================== */
svg path {
  fill: transparent;
  stroke: rgb(43, 255, 0);
  stroke-width: 1px;
  stroke-dasharray: 470;
  stroke-dashoffset: 470;
  animation: TextAnimation 3s ease-in-out 1 forwards;
}

@keyframes TextAnimation {
  0%  { stroke-dashoffset: 470; }
  100% { fill: rgb(0, 255, 30); stroke-dashoffset: 0; }
}

svg {
  animation: ScaleIn 3s linear forwards;
}

@keyframes ScaleIn {
  0%   { transform: scale(0.8); }
  100% { transform: scale(1); }
}

/* ==============================
   HERO
   ============================== */
.hero {
  padding: 60px 5% 8px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(0,0,0);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 120px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.6s ease both;
}

.hero-badge span {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 6vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

/* SVG responsivo no hero */
.hero-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  overflow: visible;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  font-family: 'Outfit' sans-serif;
  color: var(--white);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--white);
  color: black;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 16px rgba(16,25,26,0.2);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--accent-light);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover { color: var(--white); }
.btn-secondary svg { transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(3px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==============================
   GRADIENT TEXT HEADING
   ============================== */
.gradient-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  margin: 3rem auto 1.5rem;
  padding: 0 5%;
  text-align: center;
  background: linear-gradient(45deg, rgb(77, 255, 0), #888888);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ==============================
   CARDS
   ============================== */
.card-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  padding: 0 5% 3rem;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.card {
  padding: 1.5em;
  width: 100%;
  max-width: 360px;
  min-height: 360px;
  background: rgb(14,14,14);
  text-align: center;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  background: linear-gradient(135deg, #00ff08, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.75em;
}

.card p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  background: linear-gradient(135deg, #ffffff, #787878);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Outfit', sans-serif;
}

.card::after, .card::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), transparent, rgb(50,251,0));
  top: 50%; left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: spin 7s linear infinite;
}

.card::before {
  filter: blur(1.5rem);
  opacity: 0.5;
}

.card-container-two {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  padding: 0 5% 3rem;
}

.card-two{
  padding: 1.5em;
  width: 100%;
  max-width: 100%;
  min-height: 360px;
  background: rgb(14,14,14);
  text-align: center;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-two a {
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-decoration: none;
  font-weight: 300;
  background: linear-gradient(135deg, #ffffff, #787878);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Outfit', sans-serif;
}

@keyframes spin {
  from { --angle: 0deg; }
  to   { --angle: 360deg; }
}

/* ==============================
   CAROUSEL / LOGOS
   ============================== */
.wrapper {
  width: 90%;
  max-width: 1536px;
  margin: 4rem auto 0;
  position: relative;
  height: 100px;
  overflow: hidden;
  mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
}

.track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.item {
  width: 160px;
  height: 100px;
  border-radius: 6px;
  flex-shrink: 0;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

/* ==============================
   TIMELINE
   ============================== */
.page-wrapper {
  z-index: 0;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}

.padding-vertical-xlarge {
  padding-top: 40px;
  padding-bottom: 60px;
}

.timeline-main_heading-wrapper {
  color: #fff;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.margin-bottom-medium  { margin-bottom: 32px; }
.margin-bottom-xlarge  { margin-bottom: 56px; }

.timeline_component { position: relative; }

.timeline_item {
  z-index: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr 140px 1fr;
  grid-auto-columns: 1fr;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  position: relative;
}

.timeline_left {
  text-align: right;
  justify-content: flex-end;
  align-items: stretch;
  padding-right: 1rem;
}

.timeline_right {
  padding-left: 1rem;
}

.timeline_centre {
  justify-content: center;
  display: flex;
}

.timeline_date-text {
  background: linear-gradient(135deg, #00ff08, #007600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  position: sticky;
  top: 50vh;
}

.timeline_text {
  background: linear-gradient(135deg, #ffffff, #787878);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 500;
  line-height: 1.4;
}

.timeline_circle {
  background-color: #37ff00;
  border-radius: 100%;
  width: 15px; min-width: 15px; max-width: 15px;
  height: 15px; min-height: 15px; max-height: 15px;
  position: sticky;
  top: 50vh;
  box-shadow: 0 0 0 8px #0a0a0a;
  flex-shrink: 0;
}

.timeline_progress {
  z-index: -2;
  background-color: #414141;
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
}

.timeline_progress-bar {
  z-index: -1;
  background: linear-gradient(to bottom, #ffffff, #0c5100);
  width: 3px;
  height: 0%;
  position: absolute;
  top: 0;
  left: 50%;
}

.section-timeline {
  z-index: -3;
  position: relative;
}

.link-wrapper {
  color: rgb(140,140,140);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
  margin-top: 0.5rem;
}

.link-wrapper:hover { color: rgb(9,255,0); }

/* ==============================
   FOOTER
   ============================== */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 5% 2rem;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
  justify-content: space-between;
}

.footer-brand .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.nav-logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 9rem;

}

.footer-links li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-links li a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

/* ==============================
   RESPONSIVE BREAKPOINTS
   ============================== */

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btns      { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 40px 5% 8px; }

  .card { max-width: 100%; }
  .card-container { flex-direction: column; align-items: center; }

  .timeline_item {
    grid-template-columns: 80px 1fr;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .timeline_left {
    text-align: left;
    grid-area: 1 / 2 / 2 / 3;
    padding-right: 0;
    padding-left: 0.5rem;
  }

  .timeline_centre {
    justify-content: flex-start;
    grid-area: 1 / 1 / 3 / 2;
  }

  .timeline_right {
    grid-area: 2 / 2 / 3 / 3;
    padding-left: 0.5rem;
    padding-right: 0;
  }

  .timeline_progress { left: 7px; }
  .timeline_progress-bar { left: 7px; }

  .timeline_date-text {
    margin-bottom: 16px;
    position: static;
    font-size: 28px;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Mobile: ≤ 560px */
@media (max-width: 560px) {
  .hero { padding: 30px 5% 8px; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  .wrapper {
    height: 70px;
    margin-top: 2rem;
  }

  .item { width: 110px; height: 70px; }

  .gradient-text { margin: 2rem auto 1rem; }

  .timeline_item {
    grid-template-columns: 40px 1fr;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .timeline_date-text { font-size: 22px; }
  .timeline_text { font-size: 15px; }

  .padding-vertical-xlarge {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  
}

/* FADE ANIMATION */

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (min-width: 901px) {
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WHATSAPP */

.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 24px;
  background: var(--black);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .whatsapp-float {
    display: flex;
  }
}

/*  DIRECIONAMENTO DOS MENUS */

#services {
  scroll-margin-top: 90px;
}

#como-funciona {
  scroll-margin-top: 90px;
}


/* ── CTA SECTION ── */


.cta-section {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 860px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 40px;
    }
 
    /* glow background */
.cta-section::before {
    content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,229,160,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 80% 100%, rgba(0,229,160,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
 
    /* top accent line */
    .cta-section::after {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 160px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      border-radius: 2px;
    }
 
    .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 0.1s;
    }
 
    .cta-eyebrow span {
      display: inline-block;
      width: 6px; height: 6px;
      background: var(--accent);
      border-radius: 50%;
    }
 
    .cta-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 0.2s;
    }
 
    .cta-title em {
      font-style: normal;
      color: var(--accent);
    }
 
    .cta-sub {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.6;
      max-width: 520px;
      margin: 0 auto 48px;
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 0.3s;
      font-family: 'Outfit', sans-serif;
    }
 
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--black);
      color: var(--accent);
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      padding: 16px 36px;
      border-radius: 100px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 32px rgba(0,229,160,0.25);
      opacity: 0;
      animation: fadeUp 0.6s ease forwards 0.4s;
    }
 
    .cta-btn:hover {
      color: var(--accent);
      background: var(--black);
      transform: translateY(-2px);
      box-shadow: 0 0 48px rgba(0, 229, 27, 0.35);
    }
 
    .cta-btn svg {
      width: 18px; height: 18px;
      flex-shrink: 0;
    }
 
    /* decorative dots grid */
    .dots {
      position: absolute;
      right: -20px; bottom: -20px;
      width: 160px; height: 160px;
      background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity: 0.5;
      pointer-events: none;
    }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    @media (max-width: 600px) {
      .cta-section { padding: 52px 28px; }
    }

