:root {
  --green: #39ff14;
  --green-dim: #1aaa00;
  --green-dark: #0d5500;
  --orange: #ff7a00;
  --pink: #ff3c8e;
  --cyan: #00e5ff;
  --bg: #050508;
  --bg-card: rgba(255, 255, 255, 0.06);
  --border: rgba(57, 255, 20, 0.18);
  --border-glow: rgba(57, 255, 20, 0.5);
  /* Legibilidade — público maduro */
  --text-primary: #f4f4f4;
  --text-secondary: rgba(255, 255, 255, 0.88);
  --text-muted: rgba(255, 255, 255, 0.72);
  --text-label: rgba(255, 255, 255, 0.78);
  --line-body: 1.75;
  --line-relaxed: 1.65;
  --tracking-card-title: 0.045em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  font-size: 1rem;
  line-height: var(--line-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Acessibilidade / SEO técnico */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: #39ff14;
  color: #050508;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.1);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo picture,
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--green) !important;
  color: #050508 !important;
  padding: 9px 22px !important;
  border-radius: 4px !important;
  font-weight: 800 !important;
}

.cd-banner {
  position: relative;
  z-index: 2;
  margin-top: 72px;
  background: linear-gradient(
    90deg,
    rgba(57, 255, 20, 0.08),
    rgba(107, 33, 168, 0.15),
    rgba(57, 255, 20, 0.08)
  );
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cd-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.cd-blocks {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  min-width: 58px;
}

.cd-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
  line-height: 1;
}

.cd-unit {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.cd-sep {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: rgba(57, 255, 20, 0.4);
  margin-bottom: 10px;
}

.cd-cta {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green);
  color: #050508;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.3);
  white-space: nowrap;
}

.cd-cta:hover {
  background: #fff;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px clamp(16px, 3vw, 48px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 78% 45%, rgba(107, 33, 168, 0.38) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 18% 75%, rgba(57, 255, 20, 0.07) 0%, transparent 60%),
    url("../img/fundo-hero.png") center / cover no-repeat,
    #050508;
  z-index: 0;
}

@supports (background-image: image-set(url("x") type("image/webp"))) {
  .hero-bg {
    background:
      radial-gradient(ellipse 75% 55% at 78% 45%, rgba(107, 33, 168, 0.38) 0%, transparent 70%),
      radial-gradient(ellipse 45% 35% at 18% 75%, rgba(57, 255, 20, 0.07) 0%, transparent 60%),
      image-set(
        url("../img/fundo-hero.webp") type("image/webp"),
        url("../img/fundo-hero.png") type("image/png")
      ) center / cover no-repeat,
      #050508;
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.55);
}

.hero-radar-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(96vw, 1280px);
  width: 100%;
  padding: 0;
}

.hero-content > * {
  max-width: 100%;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}

.live-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero-ed {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero-logo {
  display: block;
  width: 80%;
  max-width: 80%;
  height: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 28px rgba(57, 255, 20, 0.25));
}

.hero-date {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.375rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 18px 0 6px;
  max-width: 100%;
}

.hero-date span {
  color: var(--text-muted);
  font-weight: 400;
}

.hero-ch {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  line-height: var(--line-relaxed);
  max-width: 100%;
  padding: 0 0.5rem;
}

.hero-ch strong {
  color: var(--cyan);
}

.hero-hook {
  font-size: clamp(1.125rem, 2vw, 1.4375rem);
  color: var(--text-secondary);
  line-height: var(--line-body);
  max-width: 100%;
  margin: 0 auto 36px;
  padding: 0 0.5rem;
  font-weight: 400;
}

.hero-hook em {
  font-style: normal;
  color: #fff;
  font-weight: 600;
}

.machines {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 20px 0;
  color: var(--cyan);
  font-size: 26px;
  opacity: 0.7;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: #050508;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3125rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 20px 48px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 32px rgba(57, 255, 20, 0.4);
}

.btn-hero:hover {
  background: #fff;
  box-shadow: 0 0 56px rgba(57, 255, 20, 0.65);
  transform: translateY(-3px);
}

.btn-free {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: var(--line-relaxed);
}

.btn-free strong {
  color: var(--green);
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}

.hero-scroll:hover {
  color: var(--green);
}

.hero-scroll-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-item {
  background: var(--bg);
  padding: 28px 16px;
  text-align: center;
}

.proof-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 16px rgba(57, 255, 20, 0.4);
}

.proof-l {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 6px;
  line-height: 1.4;
}

section {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 90px 24px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.stag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 48px;
}

.sh {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 16px;
}

.sh em {
  font-style: normal;
  color: var(--green);
}

.sp {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: var(--line-body);
  max-width: 580px;
  font-weight: 400;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.learn-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}

.learn-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.learn-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.learn-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(57, 255, 20, 0.05);
  position: absolute;
  right: 16px;
  top: 8px;
  line-height: 1;
  pointer-events: none;
}

.learn-ico {
  margin-bottom: 14px;
  display: block;
  line-height: 0;
}

.learn-ico img {
  display: block;
  width: auto;
  height: auto;
  max-height: 56px;
  max-width: 100%;
  border-radius: 15px;
}

.learn-t {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--tracking-card-title);
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.learn-d {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: var(--line-body);
}

.why-section {
  background: linear-gradient(180deg, transparent, rgba(107, 33, 168, 0.1) 50%, transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 32px 26px;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}

.why-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.why-ico {
  display: block;
  margin-bottom: 16px;
  line-height: 0;
}

.why-ico img {
  display: block;
  width: auto;
  height: auto;
  max-height: 64px;
  max-width: 100%;
  border-radius: 15px;
}

.cd-label-icon {
  width: auto;
  height: auto;
  max-height: 22px;
  vertical-align: -4px;
  margin-right: 6px;
  display: inline-block;
  border-radius: 15px;
}

.why-t {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--tracking-card-title);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.why-d {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: var(--line-body);
}

.spk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.spk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.2s;
}

.spk-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.spk-av {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), rgba(57, 255, 20, 0.3));
  border: 2px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.spk-av picture,
.spk-av img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spk-av--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
}

.spk-group-label {
  margin: 40px auto 20px;
  max-width: 920px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.spk-group-label:first-of-type {
  margin-top: 0;
}

.spk-grid--single {
  max-width: 460px;
  margin-bottom: 8px;
}

.spk-card--moderador {
  border-color: rgba(57, 255, 20, 0.22);
}

.spk-n {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--tracking-card-title);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.spk-r {
  font-size: 1rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.spk-b {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: var(--line-body);
}

.agenda-list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ag-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}

.ag-item:hover {
  transform: translateX(4px);
}

.ag-time {
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid var(--border);
  border-right: none;
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.02em;
  text-align: center;
}

.ag-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green-dim);
  padding: 20px 24px;
}

.ag-t {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: var(--tracking-card-title);
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.ag-d {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: var(--line-body);
}

.ag-break .ag-time {
  background: rgba(255, 122, 0, 0.06);
}

.ag-break .ag-body {
  border-left-color: rgba(255, 122, 0, 0.35);
}

.ag-break .ag-t {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
}

.test-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  left: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: rgba(57, 255, 20, 0.1);
  line-height: 1;
  pointer-events: none;
}

.test-txt {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: var(--line-body);
  margin-bottom: 20px;
  padding-top: 8px;
}

.test-auth {
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107, 33, 168, 0.5), rgba(57, 255, 20, 0.2));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.test-n {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
}

.test-r {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}

.video-sec {
  background: linear-gradient(180deg, transparent, rgba(107, 33, 168, 0.1) 45%, transparent);
}

.video-block {
  max-width: 960px;
  margin: 52px auto 0;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}

.video-link:hover {
  color: #fff;
}

.pat-sec {
  background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.03) 40%, transparent);
}

.pat-tier {
  margin-top: 48px;
}

.pat-tier:first-of-type {
  margin-top: 52px;
}

.pat-tier-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.pat-tier-title::before,
.pat-tier-title::after {
  content: "—";
  margin: 0 10px;
  color: rgba(57, 255, 20, 0.35);
}

.pat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pat-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  width: 240px;
  height: 112px;
  box-sizing: border-box;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.pat-logo:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(57, 255, 20, 0.12);
}

/* Área fixa do logo — equilibra formatos largos (Volvo, Trimble) e quadrados */
.pat-logo picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 72px;
  line-height: 0;
}

.pat-logo img {
  display: block;
  max-width: 192px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Cota ouro: 35% maior que prata (área do logo, não só altura) */
.pat-grid--ouro .pat-logo {
  width: 288px;
  height: 136px;
  padding: 22px 28px;
}

.pat-grid--ouro .pat-logo picture {
  width: 232px;
  height: 88px;
}

.pat-grid--ouro .pat-logo img {
  max-width: 232px;
  max-height: 88px;
}

.urgency {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 122, 0, 0.12),
    rgba(255, 60, 142, 0.1),
    rgba(255, 122, 0, 0.12)
  );
  border-top: 1px solid rgba(255, 122, 0, 0.25);
  border-bottom: 1px solid rgba(255, 122, 0, 0.25);
  padding: 18px 24px;
  text-align: center;
}

.urgency-t {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.4375rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.35;
}

.urgency-t em {
  font-style: normal;
  color: var(--orange);
}

.form-sec {
  background: linear-gradient(180deg, transparent, rgba(57, 255, 20, 0.04) 50%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.form-center {
  max-width: 780px;
  margin: 0 auto;
  padding: 90px 24px;
  text-align: center;
}

.form-h {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 10px;
}

.form-h em {
  font-style: normal;
  color: var(--green);
}

.form-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: var(--line-body);
}

.form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: left;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.fg label {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-label);
}

.fg input,
.fg select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  padding: 16px 18px;
  font-size: 1.0625rem;
  color: #fff;
  font-family: "Barlow", sans-serif;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  width: 100%;
  line-height: 1.4;
}

.fg input:focus,
.fg select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.08);
}

.fg input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.fg select option {
  background: #0a0a12;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.f-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}

.f-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--green);
}

.f-check span {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: var(--line-body);
}

.btn-sub {
  width: 100%;
  padding: 20px;
  background: var(--green);
  color: #050508;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3125rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.35);
}

.btn-sub:hover:not(:disabled) {
  background: #fff;
  box-shadow: 0 0 48px rgba(57, 255, 20, 0.55);
  transform: translateY(-2px);
}

.btn-sub:disabled {
  cursor: default;
  opacity: 0.95;
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: var(--line-relaxed);
}

.form-note strong {
  color: var(--green);
}

.form-feedback {
  text-align: center;
  margin-bottom: 12px;
  font-size: 1.0625rem;
  min-height: 1.2em;
  line-height: var(--line-relaxed);
}

.form-feedback.is-error {
  color: #ff6b6b;
}

.sob-strip {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 24px;
  text-align: center;
}

.sob-l {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.sob-logo {
  display: block;
  width: min(92vw, 420px);
  height: auto;
  margin: 0 auto;
}

.sob-y {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-top: 20px;
  letter-spacing: 0.02em;
  line-height: var(--line-relaxed);
}

footer {
  border-top: 1px solid rgba(57, 255, 20, 0.08);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.ft-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ft-tag {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: var(--line-relaxed);
}

.ft-links {
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
}

.ft-links a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ft-links a:hover {
  color: var(--green);
}

/* Página legal */
.legal-page {
  padding: 120px 24px 80px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.legal-page section {
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.legal-page p,
.legal-page li {
  color: #c8c8d0;
  line-height: 1.7;
  font-size: 1.0625rem;
}

.legal-page ul {
  margin: 0.75rem 0 0 1.25rem;
}

.legal-page a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(57, 255, 20, 0.15);
}

.f-check a {
  color: var(--green);
  text-decoration: underline;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > *:not(.hero-logo) {
  animation: fadeInUp 0.65s ease both;
}

.hero-logo {
  animation: fadeInUp 0.65s ease 0.3s both;
}

.hero-content > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-content > *:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.3s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.4s;
}
.hero-content > *:nth-child(5) {
  animation-delay: 0.5s;
}
.hero-content > *:nth-child(6) {
  animation-delay: 0.6s;
}
.hero-content > *:nth-child(7) {
  animation-delay: 0.7s;
}
.hero-content > *:nth-child(8) {
  animation-delay: 0.8s;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav {
    padding: 14px 20px;
  }
  .cd-banner {
    gap: 14px;
  }
  .proof {
    grid-template-columns: repeat(2, 1fr);
  }
  .learn-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .spk-grid {
    grid-template-columns: 1fr 1fr;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .f-row {
    grid-template-columns: 1fr;
  }
  .hero-radar-deco {
    display: none;
  }
  footer {
    justify-content: center;
    text-align: center;
  }
  .ag-item {
    grid-template-columns: 72px 1fr;
  }
  .pat-logo {
    width: 200px;
    height: 100px;
    padding: 16px 18px;
  }

  .pat-logo picture {
    width: 168px;
    height: 64px;
  }

  .pat-logo img {
    max-width: 168px;
    max-height: 64px;
  }

  .pat-grid--ouro .pat-logo {
    width: 240px;
    height: 120px;
    padding: 18px 20px;
  }

  .pat-grid--ouro .pat-logo picture {
    width: 200px;
    height: 78px;
  }

  .pat-grid--ouro .pat-logo img {
    max-width: 200px;
    max-height: 78px;
  }
}

@media (max-width: 500px) {
  .spk-grid {
    grid-template-columns: 1fr;
  }
}
