/* ─── Reset & Tokens ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal:         #2f97a1;
  --blue:         #2c4ffc;
  --border:       #b7e8ea;
  --bg-light:     #f0fbfb;
  --overlay:      rgba(183, 232, 234, 0.4);
  --text:         #111;
  --white:        #ffffff;
  --radius-card:  16px;
  --radius-btn:   30px;
  --font:         'Poppins', sans-serif;
  --section-pad-x: 40px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 46px;
  height: 98px;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
  background: var(--teal);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo:hover {
  opacity: 0.9;
}

.navbar-logo img {
  height: 46px;
  object-fit: contain;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  transition: opacity 0.2s;
}

.navbar.scrolled .navbar-link { color: var(--white); }
.navbar-link:hover { opacity: 0.7; }

.btn-entrar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
  border-radius: var(--radius-btn);
  background: var(--teal);
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.navbar.scrolled .btn-entrar { border-color: var(--white); }
.btn-entrar:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 760px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  background: var(--white);
  overflow: hidden;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg video {
  object-position: center top;
}

.hero-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 18vh, 260px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 61.3%;
  max-width: 883px;
  padding: 68px 56px 68px 6.8%;
  z-index: 1;
}

.hero-video-toggle {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(20px, 8vh, 72px);
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-video-toggle:hover {
  opacity: 0.9;
  transform: scale(1.04);
}

.hero-video-toggle:focus-visible {
  outline: 3px solid #264a53;
  outline-offset: 2px;
}

.hero-video-toggle-pause {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-video-toggle-pause span {
  width: 6px;
  height: 20px;
  border-radius: 5px;
  background: #264a53;
}

.hero-video-toggle-play {
  display: none;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid #264a53;
}

.hero-video-toggle.is-paused .hero-video-toggle-pause {
  display: none;
}

.hero-video-toggle.is-paused .hero-video-toggle-play {
  display: block;
}

.hero-content {
  position: relative;
  width: min(626px, 50vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
  margin: 0;
}

.hero-subtitle {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 500;
  width: 100%;
  line-height: 1.6;
  color: var(--text);
  margin-top: clamp(20px, 2vw, 36px);
  margin-bottom: clamp(28px, 3.5vw, 52px);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 48px;
  border-radius: var(--radius-btn);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,79,252,0.35);
}

.btn-hero {
  width: 250px;
  padding: 0;
}

/* ─── Section base ───────────────────────────────────────── */
section { width: 100%; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.hero-overlay,
.pricing-hero-copy {
  background: rgba(183, 232, 234, 0.4);
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}

/* ─── Pricing Page ───────────────────────────────────────── */
.pricing-page {
  background: #f4f4f4;
}

.navbar-pricing {
  position: relative;
  background: var(--teal);
  box-shadow: none;
}

.pricing-main {
  padding: 50px 0 72px;
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  margin-bottom: 46px;
}

.pricing-hero-copy {
  width: 100%;
  min-width: 876px;
  max-width: 876px;
  padding: 68px 56px 68px 6.8%;
  margin-left: calc(
    -1 * var(--section-pad-x) - (100vw - min(1200px, 100vw)) / 2
  );
  min-height: 401px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-hero-copy h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  font-weight: 800;
  margin: 0 0 26px;
}

.pricing-hero-copy p {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.45;
  font-weight: 500;
  max-width: 710px;
}

.pricing-hero-media {
  display: flex;
  justify-content: center;
}

.pricing-hero-media img {
  width: min(100%, 392px);
  height: auto;
  display: block;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  margin-bottom: 45px;
}

.pricing-card {
  position: relative;
  background: linear-gradient(to bottom, var(--white), var(--bg-light));
  border: 1px solid var(--border);
  border-radius: 16px;
  min-height: 505px;
  padding: 34px 15px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

.pricing-card h2 span {
  display: block;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}

.pricing-divider {
  width: 100%;
  max-width: 320px;
  border-top: 1px solid var(--border);
}

.pricing-card-row {
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.pricing-card-row label {
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}

.pricing-select {
  width: 161px;
  height: 71px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 24px;
  line-height: 1;
  padding: 0 18px;
}

.pricing-price {
  margin: 24px 0 26px;
  text-align: center;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.pricing-card-btn {
  width: 100%;
  max-width: 320px;
  height: 60px;
  margin-top: auto;
  padding: 0;
}

.pricing-card-featured {
  margin-top: 29px;
  overflow: visible;
}

.pricing-badge {
  position: absolute;
  left: 50%;
  top: -71px;
  transform: translateX(-50%);
  width: 268px;
  height: 71px;
  border-radius: 16px 16px 0 0;
  background: var(--teal);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-support {
  margin-top: 58px;
  min-height: 192px;
}

.pricing-support-card {
  position: relative;
  margin-top: 65px;
  min-height: 127px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-light);
  padding: 0 40px 0 236px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.pricing-support-mascot {
  position: absolute;
  left: 43px;
  top: -65px;
  width: 198px;
  height: 191px;
  overflow: hidden;
  pointer-events: none;
}

.pricing-support-mascot img {
  position: absolute;
  left: -30.44%;
  top: -17.28%;
  width: 160.88%;
  height: 233.36%;
  max-width: none;
}

.pricing-support-card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}

.pricing-support-card p a {
  color: var(--blue);
  text-decoration: none;
}

.pricing-support-card p a:hover {
  text-decoration: underline;
}

.section-title {
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

/* ─── Mission ────────────────────────────────────────────── */
.section-mission {
  padding: 100px 0 80px;
}

.mission-lead {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 72px;
  line-height: 1.5;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.card-media {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}
.card-img,
.card-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-vid {
  opacity: 0;
}
.card-media.playing .card-img {
  opacity: 0;
}
.card-media.playing .card-vid {
  opacity: 1;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.card-text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  color: #000;
}

/* ─── Como Funciona — Parallax Carousel ─────────────────── */
.section-como-funciona {
  position: relative;
}

.como-sticky-wrapper {
  height: auto;
  position: relative;
}

.como-sticky {
  position: relative;
  top: auto;
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.como-header {
  flex-shrink: 0;
  padding: 0 0 32px;
  text-align: center;
  z-index: 10;
}

.como-slides {
  position: relative;
  width: 100%;
  height: 614px; /* card 550px + padding vertical 64px */
  flex-shrink: 0;
  min-height: 0;
}

.como-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px 40px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.como-slide.active {
  opacity: 1;
  pointer-events: all;
}

.como-card {
  max-width: 1200px;
  width: 100%;
  background: linear-gradient(to bottom, var(--white), var(--bg-light));
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  display: grid;
  grid-template-columns: 35% 65%;
  height: 550px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(47,151,161,0.1);
}

.como-card-text {
  padding: 60px 56px;
  display: flex;
  align-items: center;
}

.como-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.como-card-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-top: 4px;
  flex-shrink: 0;
}

.cdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c7de40;
  flex-shrink: 0;
}

.cdot-active {
  width: 24px;
  height: 24px;
  background: #2c4ffc;
  position: relative;
}

.cdot-active::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c7de40;
}

.como-card-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.como-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.como-card-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #000;
  max-width: 240px;
}

.como-card-img {
  position: relative;
  overflow: hidden;
}

.como-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.8s ease;
}

.como-slide.active .como-card-img img {
  transform: scale(1);
}

.como-dots {
  display: none !important;
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.como-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}

.como-dot.active {
  background: var(--teal);
  transform: scale(1.3);
}

/* ─── Vamos Começar ──────────────────────────────────────── */
.section-comecar {
  padding: 100px 0;
}

.comecar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comecar-card {
  background: linear-gradient(to bottom, var(--white), var(--bg-light));
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 48px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.comecar-card:hover {
  transform: translateY(-4px);
}

.comecar-card-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

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

.comecar-card-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.comecar-card-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ─── Aplicação — Parallax Carousel ─────────────────────── */
.section-aplicacao {
  background: var(--white);
}

.aplic-sticky-wrapper {
  height: auto;
  position: relative;
}

.aplic-sticky {
  position: relative;
  top: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.aplic-header {
  flex-shrink: 0;
  padding: 0 0 32px;
  text-align: center;
  z-index: 10;
}

.aplic-slides {
  position: relative;
  width: 100%;
  height: 614px;
  flex-shrink: 0;
  min-height: 0;
}

.aplic-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px 40px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.aplic-slide.active {
  opacity: 1;
  pointer-events: all;
}

.aplic-progress {
  display: none;
}

.aplic-screenshot-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-aplicacao .como-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.section-aplicacao .como-card-img img {
  object-fit: contain;
  transform: none;
}

.section-aplicacao .aplic-slide.active .como-card-img img {
  transform: none;
}

/* ─── Porque leitura é a base ───────────────────────────── */
.section-porque {
  padding: 100px 0;
}

.porque-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.porque-img {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.porque-img img,
.porque-img video {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.porque-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.porque-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* ─── Pilares de Pesquisa ────────────────────────────────── */
.section-pilares {
  padding: 100px 0;
  background: var(--white);
}

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

.pilares-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid #B7E8EA;
  border-radius: var(--radius-card);
  padding: 40px 32px 0;
}

.pilares-col-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  text-align: center;
}

.pilares-col-header img,
.pilares-col-header video {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.pilares-col-header h3 {
  font-size: 24px;
  font-weight: 700;
}

.pilares-list {
  list-style: none;
  border-top: 1px solid #B7E8EA;
}

.pilares-list li {
  font-size: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #B7E8EA;
  color: #333;
  text-align: center;
}

.pilares-list li:last-child {
  border-bottom: none;
}

/* ─── Artigos Importantes ────────────────────────────────── */
.section-artigos {
  padding: 100px 0 160px;
}

.artigo-card {
  background: linear-gradient(to bottom, var(--white), var(--bg-light));
  border: 1px solid var(--blue);
  border-radius: var(--radius-card);
  box-shadow: 0 0 10px rgba(44,79,252,0.15);
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s;
}

.artigo-card:hover {}

.artigo-header {
  padding: 28px 40px;
  cursor: pointer;
}

.artigo-header-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.artigo-header-text p {
  font-size: 14px;
  font-weight: 700;
  color: #555;
}

.artigo-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.artigo-card.open .artigo-body {
  max-height: 1200px;
}

.artigo-card.open .artigo-fechar {
  display: block;
}

.artigo-body-inner {
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.artigo-fechar {
  display: none;
  width: 100%;
  height: 69px;
  background: var(--blue);
  border: none;
  border-radius: 0;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

.artigo-fechar:hover {
  background: #1a3ae0;
}

.artigo-body-inner p {
  font-size: 13px;
  line-height: 1.85;
  color: #333;
}

.artigo-fonte {
  margin-top: 12px;
  font-size: 12px;
  color: var(--blue);
}

.artigo-fonte strong {
  color: var(--text);
}

/* ─── CTA ────────────────────────────────────────────────── */
.section-cta {
  position: relative;
  z-index: 0;
  height: 1300px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.section-cta-bg {
  position: absolute;
  top: 99px;
  left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.cta-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.cta-slide.active { opacity: 1; }
.cta-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-card {
  position: relative;
  z-index: 1;
  top: -100px;
  width: min(883px, 90vw);
  height: 472px;
  background: rgba(183, 232, 234, 0.4);
  border: 1px solid #b7e8ea;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 40px;
  text-align: center;
}

.cta-card h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 72px;
  color: var(--text);
  margin: 0;
}

.cta-card p {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 500;
  max-width: 626px;
  line-height: 1.6;
  color: var(--text);
  margin: 20px 0 36px;
}

.cta-btns {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btns .btn-primary {
  width: 250px;
  padding: 0;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  background: var(--teal);
  color: var(--white);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top,
.footer-bottom {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.footer-logo img {
  height: 40px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  text-align: left;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-col ul a:hover { opacity: 1; }

.footer-bottom {
  padding-top: 36px;
  align-items: flex-start;
}

.footer-scolados-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.75;
  margin: 0;
  max-width: 600px;
}

/* ─── Animations ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition:
    opacity   0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-title {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity   0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-line {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}
.hero-line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity   0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
body.hero-animate .hero-line-inner {
  opacity: 1;
  transform: translateY(0);
}
body.hero-animate .hero-line-inner:nth-child(1) { transition-delay: 0.05s; }
body.hero-animate .hero-line-inner:nth-child(2) { transition-delay: 0.18s; }

.hero-sub-anim {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
body.hero-animate .hero-sub-anim { opacity: 1; transform: translateY(0); }
body.hero-animate .hero-sub-anim:nth-of-type(1) { transition-delay: 0.32s; }
body.hero-animate .hero-sub-anim:nth-of-type(2) { transition-delay: 0.46s; }

.img-reveal {
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: clip-path;
}
.img-reveal.visible {
  clip-path: inset(0 0 0% 0);
}
.img-reveal img,
.img-reveal video {
  transform: scale(1.1);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.img-reveal.visible img,
.img-reveal.visible video {
  transform: scale(1);
}

.hero-bg {
  will-change: transform;
}

.reveal-para {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-para.visible { opacity: 1; transform: translateY(0); }

/* ─── Tall Desktop Tweaks ───────────────────────────────── */
@media (min-width: 1025px) and (min-height: 980px) {
  .hero {
    height: 820px;
    min-height: 720px;
  }

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

  .section-mission,
  .section-comecar,
  .section-porque,
  .section-pilares {
    padding: 72px 0;
  }

  .section-artigos {
    padding: 72px 0 120px;
  }

  .mission-lead {
    margin-bottom: 56px;
  }

  .como-sticky-wrapper,
  .aplic-sticky-wrapper {
    height: auto;
  }

  .como-sticky,
  .aplic-sticky {
    padding-top: 28px;
  }

  .como-header,
  .aplic-header {
    padding-bottom: 24px;
  }

  .section-cta {
    height: 1060px;
    padding-top: 56px;
  }

  .section-cta-bg {
    top: 72px;
  }

  .cta-card {
    top: -72px;
  }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .como-card { grid-template-columns: 1fr; height: auto; }
  .como-card-img { height: 260px; order: -1; }
  .como-card-text { padding: 40px 36px; }
  .como-slides, .aplic-slides { height: auto; flex: 1; }
  .comecar-grid { grid-template-columns: 1fr; }
  .pilares-grid { grid-template-columns: 1fr; }
  .artigo-body-inner { grid-template-columns: 1fr; }
  .porque-layout { grid-template-columns: 1fr; }

  .pricing-main { padding: 32px 0 60px; }
  .pricing-hero { grid-template-columns: 1fr; gap: 10px; margin-bottom: 28px; }
  .pricing-hero-copy {
    margin-left: 0;
    min-width: 0;
    border-radius: 16px;
    min-height: auto;
    padding: 52px 36px 40px;
  }
  .pricing-hero-media img { width: min(100%, 360px); }
  .pricing-plans { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .pricing-card-featured { margin-top: 0; }
  .pricing-badge {
    position: static;
    transform: none;
    width: 100%;
    height: 56px;
    border-radius: 16px 16px 0 0;
    margin: -34px 0 18px;
  }
  .pricing-support-card {
    margin-top: 52px;
    min-height: 124px;
    padding: 0 28px 0 188px;
  }
  .pricing-support-mascot {
    left: 20px;
    width: 150px;
    height: 150px;
    top: -52px;
  }
  .pricing-support-card p { font-size: 18px; }
}

@media (max-width: 768px) {
  .hero-overlay { width: 100%; border-radius: 0; top: 50%; padding: 68px 24px; }
  .hero-content { width: 90vw; }
  .hero-title { white-space: normal; }
  .hero-video-toggle { right: 16px; bottom: 16px; }

  .pricing-plans { grid-template-columns: 1fr; }
  .pricing-card-row label { font-size: 24px; }
  .pricing-select {
    width: 132px;
    height: 58px;
    font-size: 20px;
  }
  .pricing-support-card {
    margin-top: 0;
    padding: 28px 22px 24px;
    display: block;
    text-align: left;
  }
  .pricing-support {
    min-height: 0;
  }
  .pricing-support-mascot {
    position: relative;
    left: 0;
    top: 0;
    width: 130px;
    height: 130px;
    margin: 0 0 10px;
  }
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 20px; height: 72px; }
  .navbar-right { gap: 16px; }
  .btn-entrar { width: 100px; height: 48px; font-size: 16px; }
  .hero-title { font-size: 32px; }
  .como-card-text { padding: 32px 28px; }

  .pricing-main { padding-top: 20px; }
  .pricing-hero-copy { padding: 32px 22px 28px; }
  .pricing-hero-copy h1 { margin-bottom: 18px; }
  .pricing-card {
    min-height: 0;
    padding: 28px 12px 12px;
  }
  .pricing-card h2 { font-size: 32px; }
  .pricing-card h2 span {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .pricing-price {
    font-size: 40px;
    margin: 20px 0;
  }
  .pricing-card-btn { height: 56px; }
}

@media (max-width: 768px) {
  .pricing-page .navbar {
    height: 98px;
    padding: 0 25px;
  }

  .pricing-page .navbar-logo img {
    height: 30px;
  }

  .pricing-page .navbar-right {
    gap: 0;
  }

  .pricing-page .navbar-link {
    display: none;
  }

  .pricing-page .btn-entrar {
    width: 120px;
    height: 60px;
    font-size: 18px;
  }

  .pricing-page .section-inner {
    padding: 0 25px;
  }

  .pricing-page .pricing-main {
    padding: 29px 0 0;
  }

  .pricing-page .pricing-hero {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 20px;
  }

  .pricing-page .pricing-hero-copy {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 435px;
    margin-left: 0;
    border-radius: 30px;
    padding: 41px 25px 35px;
    align-items: center;
    text-align: center;
  }

  .pricing-page .pricing-hero-copy h1 {
    width: 275px;
    margin: 0 0 24px;
    font-size: 36px;
    line-height: 42px;
  }

  .pricing-page .pricing-hero-copy p {
    width: 275px;
    max-width: 275px;
    font-size: 20px;
    line-height: 1.45;
  }

  .pricing-page .pricing-hero-media {
    display: none;
  }

  .pricing-page .pricing-plans {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 82px;
  }

  .pricing-page .pricing-card {
    min-height: 505px;
    padding: 34px 15px 11px;
  }

  .pricing-page .pricing-card h2 {
    font-size: 36px;
  }

  .pricing-page .pricing-card h2 span {
    font-size: 24px;
  }

  .pricing-page .pricing-card-row label {
    font-size: 24px;
  }

  .pricing-page .pricing-select {
    width: 161px;
    height: 71px;
    font-size: 24px;
  }

  .pricing-page .pricing-price {
    font-size: 36px;
    line-height: 42px;
    margin: 20px 0 24px;
  }

  .pricing-page .pricing-card-btn {
    height: 60px;
  }

  .pricing-page .pricing-card-featured {
    margin-top: 0;
  }

  .pricing-page .pricing-badge {
    position: static;
    transform: none;
    width: 268px;
    height: 71px;
    border-radius: 16px 16px 0 0;
    margin: 0 auto;
  }

  .pricing-page .pricing-support {
    margin-top: 0;
    min-height: 0;
    padding-bottom: 72px;
  }

  .pricing-page .pricing-support-card {
    margin-top: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pricing-page .pricing-support-card p {
    width: 243px;
    font-size: 20px;
    line-height: 1.35;
  }

  .pricing-page .pricing-support-card p strong {
    display: block;
    margin-bottom: 2px;
  }

  .pricing-page .pricing-support-card p a {
    display: block;
  }

  .pricing-page .pricing-support-mascot {
    position: relative;
    left: 0;
    top: 0;
    width: 198px;
    height: 191px;
    margin: 26px auto 0;
  }

  .pricing-page .footer {
    padding: 0;
    border-top: 2px solid var(--blue);
  }

  .pricing-page .footer-inner {
    max-width: none;
  }

  .pricing-page .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 25px 32px;
  }

  .pricing-page .footer-logo img {
    height: 46px;
  }

  .pricing-page .footer-tagline {
    width: 278px;
    margin: 14px 0 28px;
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
  }

  .pricing-page .footer-links {
    width: 100%;
    max-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .pricing-page .footer-col h4 {
    display: none;
  }

  .pricing-page .footer-col ul {
    gap: 0;
  }

  .pricing-page .footer-col ul a {
    font-size: 13px;
    line-height: 36px;
  }

  .pricing-page .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 26px 25px 34px;
  }

  .pricing-page .footer-scolados img {
    height: 46px;
  }

  .pricing-page .footer-desc {
    max-width: 275px;
    text-align: left;
    font-size: 13px;
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .landing-page .navbar {
    height: 98px;
    padding: 0 25px;
    background: transparent;
    box-shadow: none;
  }

  .landing-page .navbar.scrolled {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .landing-page .navbar-link {
    display: none;
  }

  .landing-page .navbar-logo img {
    height: 30px;
  }

  .landing-page .btn-entrar {
    width: 120px;
    height: 60px;
    font-size: 18px;
  }

  .landing-page .section-inner {
    padding: 0 25px;
  }

  .landing-page .hero {
    height: 920px;
    min-height: 920px;
    background: var(--white);
  }

  .landing-page .hero-bg {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    height: 504px;
    inset: auto;
    background: transparent;
  }

  .landing-page .hero-bg::after {
    display: none;
  }

  .landing-page .hero-bg video {
    object-fit: cover;
    object-position: center top;
  }

  .landing-page .hero-overlay {
    width: 325px;
    max-width: 325px;
    height: 527px;
    left: 50%;
    top: 345px;
    transform: translateX(-50%);
    border-radius: 30px;
    padding: 51px 25px 35px;
  }

  .landing-page .hero-content {
    width: 100%;
    align-items: center;
  }

  .landing-page .hero-title {
    font-size: 36px;
    line-height: 42px;
    white-space: normal;
  }

  .landing-page .hero-subtitle {
    width: 275px;
    font-size: 20px;
    line-height: 1.45;
    margin-top: 26px;
  }

  .landing-page .btn-hero {
    width: 250px;
    margin-top: 24px;
  }

  .landing-page .hero-video-toggle {
    display: none;
  }

  .landing-page .section-mission {
    padding: 49px 0 72px;
  }

  .landing-page .mission-lead {
    max-width: 275px;
    margin: 0 auto 50px;
    font-size: 24px;
    line-height: 31px;
  }

  .landing-page .cards-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 0 2px 6px;
    scroll-snap-type: x mandatory;
  }

  .landing-page .cards-grid .card {
    min-width: 272px;
    width: 272px;
    padding: 40px 30px 24px;
    scroll-snap-align: center;
    flex: 0 0 auto;
  }

  .landing-page .cards-grid .card-title {
    font-size: 20px;
    line-height: 24px;
  }

  .landing-page .cards-grid .card-text {
    font-size: 16px;
    line-height: 1.45;
  }

  .landing-page .section-como-funciona {
    padding: 36px 0 0;
  }

  .landing-page .como-sticky-wrapper {
    height: auto;
  }

  .landing-page .como-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    justify-content: flex-start;
  }

  .landing-page .como-header {
    padding-bottom: 26px;
  }

  .landing-page .section-como-funciona .section-title {
    font-size: 36px;
    line-height: 42px;
  }

  .landing-page .como-slides {
    height: auto;
  }

  .landing-page .como-slide {
    position: static;
    inset: auto;
    display: none;
    opacity: 1;
    pointer-events: all;
    padding: 0 25px;
  }

  .landing-page .como-slide.active {
    display: block;
  }

  .landing-page .como-card {
    width: 325px;
    max-width: 325px;
    margin: 0 auto;
    height: auto;
    grid-template-columns: 1fr;
    box-shadow: none;
  }

  .landing-page .como-card-img {
    height: 260px;
    order: -1;
  }

  .landing-page .como-card-text {
    padding: 20px 30px 28px;
  }

  .landing-page .como-card-inner {
    gap: 0;
    width: 100%;
    justify-content: center;
  }

  .landing-page .como-card-dots {
    display: none;
  }

  .landing-page .como-card-title {
    font-size: 24px;
    line-height: 31px;
    text-align: center;
  }

  .landing-page .como-card-desc {
    max-width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 1.45;
  }

  .landing-page .section-aplicacao {
    display: none;
  }

  .landing-page .section-comecar {
    padding: 58px 0 41px;
  }

  .landing-page .section-comecar .section-title,
  .landing-page .section-porque .section-title,
  .landing-page .section-pilares .section-title,
  .landing-page .section-artigos .section-title {
    font-size: 36px;
    line-height: 42px;
    width: 275px;
    margin: 0 auto 42px;
  }

  .landing-page .comecar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .landing-page .comecar-card {
    width: 325px;
    min-height: 626px;
    padding: 47px 39px;
    gap: 37px;
  }

  .landing-page .comecar-card-img {
    width: 147px;
    height: 147px;
  }

  .landing-page .comecar-card-text h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .landing-page .comecar-card-text p {
    font-size: 16px;
    line-height: 1.45;
  }

  .landing-page .comecar-card .btn-primary {
    width: 247px;
    padding: 0;
  }

  .landing-page .section-porque {
    padding: 0 0 56px;
  }

  .landing-page .porque-layout {
    display: block;
  }

  .landing-page .porque-img {
    display: none;
  }

  .landing-page .porque-text {
    gap: 0;
    max-width: 325px;
    margin: 0 auto;
  }

  .landing-page .porque-text p {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .landing-page .section-pilares {
    padding: 0 0 73px;
  }

  .landing-page .pilares-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .landing-page .pilares-col {
    width: 325px;
    padding: 19px 30px;
  }

  .landing-page .pilares-col-header {
    margin-bottom: 4px;
    gap: 3px;
  }

  .landing-page .pilares-col-header img,
  .landing-page .pilares-col-header video {
    width: 140px;
    height: 140px;
  }

  .landing-page .pilares-col-header h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .landing-page .pilares-list {
    border-top: none;
  }

  .landing-page .pilares-list li {
    border: none;
    padding: 6px 0;
    font-size: 16px;
    line-height: 1.4;
  }

  .landing-page .section-artigos {
    padding: 0 0 40px;
  }

  .landing-page .section-artigos .section-inner {
    padding: 0 25px;
  }

  .landing-page .artigo-card {
    width: 325px;
    margin: 0 auto 20px;
  }

  .landing-page .artigo-header {
    padding: 24px 24px;
  }

  .landing-page .artigo-header-text h3 {
    font-size: 16px;
    line-height: 1.35;
  }

  .landing-page .artigo-header-text p {
    font-size: 13px;
    line-height: 1.35;
  }

  .landing-page #artigo3 .artigo-body {
    max-height: 1600px;
  }

  .landing-page #artigo3 .artigo-fechar {
    display: block;
  }

  .landing-page .artigo-body-inner {
    padding: 0 24px 28px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .landing-page .artigo-body-inner p {
    font-size: 13px;
    line-height: 1.5;
  }

  .landing-page .section-cta {
    height: 476px;
    padding-top: 0;
    align-items: stretch;
  }

  .landing-page .section-cta-bg {
    top: 0;
  }

  .landing-page .section-cta-bg .cta-slide {
    display: none;
    opacity: 0;
  }

  .landing-page .section-cta-bg .cta-slide:nth-child(2) {
    display: block;
    opacity: 1;
  }

  .landing-page .cta-card {
    display: none;
  }

  .landing-page .footer {
    padding: 0;
    border-top: 2px solid var(--blue);
  }

  .landing-page .footer-inner {
    max-width: none;
  }

  .landing-page .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 25px 32px;
  }

  .landing-page .footer-logo img {
    height: 46px;
  }

  .landing-page .footer-tagline {
    width: 278px;
    margin: 14px 0 28px;
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
  }

  .landing-page .footer-links {
    width: 100%;
    max-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .landing-page .footer-col h4 {
    display: none;
  }

  .landing-page .footer-col ul {
    gap: 0;
  }

  .landing-page .footer-col ul a {
    font-size: 13px;
    line-height: 36px;
  }

  .landing-page .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 26px 25px 34px;
  }

  .landing-page .footer-scolados img {
    height: 46px;
  }

  .landing-page .footer-desc {
    max-width: 275px;
    text-align: left;
    font-size: 13px;
    line-height: 1.4;
  }
}
