:root {
  --bg: #03080f;
  --bg-soft: #07111d;
  --bg-card: rgba(8, 20, 35, 0.58);
  --bg-card-strong: rgba(8, 20, 35, 0.78);

  --line: rgba(113, 203, 255, 0.16);
  --line-strong: rgba(113, 203, 255, 0.28);

  --text: #eef7ff;
  --text-soft: #adc8de;
  --text-muted: #7f9cb3;

  --primary: #0f4c8a;
  --primary-2: #1f7fba;
  --primary-3: #42bde7;
  --primary-4: #79dcff;

  --success: #7dffd7;

  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(66, 189, 231, 0.18);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --container: 1220px;
  --header-h: 84px;

  --body-bg:
    radial-gradient(circle at 20% 18%, rgba(31, 127, 186, 0.14), transparent 26%),
    radial-gradient(circle at 82% 26%, rgba(66, 189, 231, 0.12), transparent 24%),
    linear-gradient(180deg, #02070d 0%, #04101a 45%, #03080f 100%);

  --glass-bg: rgba(5, 12, 22, 0.58);
  --glass-bg-strong: rgba(5, 12, 22, 0.82);
  --glass-border: rgba(121, 220, 255, 0.14);
  --glass-border-strong: rgba(121, 220, 255, 0.2);

  --btn-ghost-bg: rgba(255, 255, 255, 0.03);
  --btn-ghost-hover-bg: rgba(255, 255, 255, 0.06);

  --panel-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 20, 35, 0.58);

  --panel-highlight:
    linear-gradient(135deg, rgba(121, 220, 255, 0.12), transparent 35%, transparent 70%, rgba(121, 220, 255, 0.08));

  --noise-opacity: 0.05;
}

body.light-theme {
  --bg: #eef6fb;
  --bg-soft: #dfeef8;
  --bg-card: rgba(255, 255, 255, 0.78);
  --bg-card-strong: rgba(255, 255, 255, 0.92);

  --line: rgba(15, 76, 138, 0.12);
  --line-strong: rgba(15, 76, 138, 0.2);

  --text: #0a1d2f;
  --text-soft: #35526b;
  --text-muted: #627b92;

  --primary: #0f4c8a;
  --primary-2: #1f7fba;
  --primary-3: #42bde7;
  --primary-4: #1798d3;

  --success: #19b88c;

  --shadow-xl: 0 22px 60px rgba(15, 52, 88, 0.12);
  --shadow-glow: 0 0 30px rgba(66, 189, 231, 0.1);

  --body-bg:
    radial-gradient(circle at 18% 16%, rgba(31, 127, 186, 0.12), transparent 24%),
    radial-gradient(circle at 84% 26%, rgba(66, 189, 231, 0.14), transparent 22%),
    linear-gradient(180deg, #f8fcff 0%, #edf6fb 48%, #e6f1f8 100%);

  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-strong: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(15, 76, 138, 0.1);
  --glass-border-strong: rgba(15, 76, 138, 0.16);

  --btn-ghost-bg: rgba(15, 76, 138, 0.03);
  --btn-ghost-hover-bg: rgba(15, 76, 138, 0.06);

  --panel-bg:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 250, 255, 0.82)),
    rgba(255, 255, 255, 0.82);

  --panel-highlight:
    linear-gradient(135deg, rgba(23, 152, 211, 0.08), transparent 35%, transparent 70%, rgba(15, 76, 138, 0.06));

  --noise-opacity: 0.025;
}

/* =======================================================
   RESET / BASE
   ======================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--body-bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =======================================================
   BACKGROUND
   ======================================================= */

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: var(--noise-opacity);
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.5px, transparent 0.5px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  -webkit-filter: blur(70px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  transform: translate3d(0, 0, 0);
}

.orb-1 {
  width: 340px;
  height: 340px;
  top: 8%;
  left: -80px;
  background: rgba(15, 76, 138, 0.24);
}

.orb-2 {
  width: 300px;
  height: 300px;
  top: 22%;
  right: 7%;
  background: rgba(66, 189, 231, 0.14);
}

.orb-3 {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: 12%;
  background: rgba(31, 127, 186, 0.16);
}

/* =======================================================
   HEADER
   ======================================================= */

.landing-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 1500px);
  min-height: var(--header-h);
  padding: 14px 30px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  column-gap: 30px;
  z-index: 100;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.landing-header.scrolled {
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-strong);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  padding-right: 24px;
}

.brand-logo {
  width: 220px;
  max-width: 100%;
  filter: drop-shadow(0 0 18px rgba(66, 189, 231, 0.12));
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  min-width: 0;
  flex-wrap: nowrap;
}

.landing-nav a {
  position: relative;
  padding: 10px 8px;
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}

.landing-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.landing-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
  min-width: 0;
}

/* =======================================================
   BUTTONS
   ======================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 40%, var(--primary-3) 100%);
  box-shadow: 0 12px 34px rgba(18, 108, 170, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(18, 108, 170, 0.42);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  border-color: var(--glass-border);
  background: var(--btn-ghost-bg);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--glass-border-strong);
  background: var(--btn-ghost-hover-bg);
}

.btn-full {
  width: 100%;
}

.landing-actions .btn {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

.landing-actions .btn-primary {
  padding: 0 20px;
}

.theme-toggle-btn {
  min-width: 52px;
  padding: 0 16px;
}

.theme-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
}

.theme-toggle-text {
  font-weight: 700;
}

/* =======================================================
   LANGUAGE SWITCHER
   ======================================================= */

.landing-language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(121, 220, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  flex-shrink: 0;
  white-space: nowrap;
}

.language-btn {
  min-width: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0.48rem 0.68rem;
  background: transparent;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.language-btn:hover {
  transform: translateY(-1px);
  background: rgba(121, 220, 255, 0.12);
}

.language-btn.is-active {
  color: #061421;
  background: linear-gradient(135deg, #79dcff, #42bde7);
  box-shadow: 0 8px 22px rgba(66, 189, 231, 0.28);
}

body.light-theme .landing-language-switcher {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(15, 76, 138, 0.1);
}

body.light-theme .language-btn:hover {
  background: rgba(15, 76, 138, 0.06);
}

body.light-theme .language-btn.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
}

/* =======================================================
   MOBILE MENU
   ======================================================= */

.mobile-toggle {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(121, 220, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: 0.25s ease;
}

body.light-theme .mobile-toggle span {
  background: var(--text);
}

.mobile-menu {
  position: fixed;
  top: calc(var(--header-h) + 28px);
  right: 12px;
  left: 12px;
  z-index: 99;
  padding: 18px;
  border-radius: 24px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 10px;
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  padding: 14px 12px;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 600;
  background: var(--btn-ghost-bg);
  border: 1px solid transparent;
}

.mobile-menu a:hover {
  color: var(--text);
  border-color: rgba(121, 220, 255, 0.12);
}

.landing-language-switcher-mobile {
  justify-content: center;
  width: 100%;
  margin: 0.5rem 0;
}

/* =======================================================
   LAYOUT
   ======================================================= */

main {
  position: relative;
  z-index: 5;
}

.section,
.hero {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 42px 0 84px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 90px;
}

.hero-shell {
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}

.hero-copy {
  max-width: 980px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid rgba(121, 220, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.92rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

body.light-theme .eyebrow {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(15, 76, 138, 0.12);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(125, 255, 215, 0.75);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(125, 255, 215, 0.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(125, 255, 215, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(125, 255, 215, 0);
  }
}

.hero h1 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
  text-transform: uppercase;
  max-width: 950px;
  text-align: center;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #dff6ff 0%, #6edcff 40%, #248acb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(66, 189, 231, 0.16));
}

body.light-theme .hero h1 span {
  background: linear-gradient(90deg, #0f4c8a 0%, #1f7fba 45%, #42bde7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  max-width: 860px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-soft);
  text-align: center;
}

.hero-subtitle strong {
  color: var(--text);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-cta-row.center {
  justify-content: center;
}

.hero-cards-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

/* =======================================================
   CARDS / GLASS
   ======================================================= */

.glass-panel,
.depth-card,
.timeline-item,
.species-card,
.module-card,
.flow-card,
.cta-card,
.showcase-panel {
  position: relative;
  background: var(--panel-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.depth-card {
  border-radius: 28px;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.depth-card::before,
.cta-card::before,
.showcase-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--panel-highlight);
  pointer-events: none;
}

.module-card,
.species-card,
.flow-card,
.timeline-item {
  border-radius: 26px;
  padding: 28px;
  min-height: 220px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.timeline-item {
  height: 100%;
  min-height: 240px;
}

.module-card:hover,
.species-card:hover,
.flow-card:hover,
.timeline-item:hover,
.showcase-panel:hover,
.cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(121, 220, 255, 0.28);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45), 0 0 44px rgba(66, 189, 231, 0.12);
}

body.light-theme .module-card:hover,
body.light-theme .species-card:hover,
body.light-theme .flow-card:hover,
body.light-theme .timeline-item:hover,
body.light-theme .showcase-panel:hover,
body.light-theme .cta-card:hover {
  box-shadow: 0 24px 70px rgba(15, 52, 88, 0.16), 0 0 34px rgba(66, 189, 231, 0.08);
}

.module-card h3,
.species-card h3,
.flow-card h3,
.timeline-item h3 {
  font-family: "Exo 2", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.module-card p,
.species-card p,
.flow-card p,
.timeline-item p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.98rem;
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 127, 186, 0.18), rgba(66, 189, 231, 0.1));
  border: 1px solid var(--glass-border);
  color: var(--primary-4);
  font-size: 1.4rem;
  font-weight: 900;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin-bottom: 20px;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
  box-shadow: 0 12px 28px rgba(31, 127, 186, 0.28);
  flex-shrink: 0;
}

/* =======================================================
   SECTIONS / GRIDS
   ======================================================= */

.section-heading {
  max-width: 850px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-heading p {
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 1.03rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary-4);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.modulos-grid,
.species-grid,
.flow-grid,
.timeline-grid {
  display: grid;
  gap: 18px;
}

.modulos-grid,
.species-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.flow-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.timeline-notes {
  margin-top: 1.75rem;
  padding-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.timeline-notes p {
  margin: 0.2rem 0;
}

.timeline-section,
.timeline-wrapper,
#timeline {
  overflow: visible;
}

/* =======================================================
   SHOWCASE / CTA
   ======================================================= */

.showcase-section {
  padding-top: 24px;
}

.showcase-panel {
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.showcase-panel h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.showcase-panel p {
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 1.02rem;
}

.cta-section {
  padding-top: 20px;
  padding-bottom: 110px;
}

.cta-card {
  text-align: center;
  padding: 46px 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top center, rgba(66, 189, 231, 0.12), transparent 36%),
    var(--panel-bg);
}

.cta-card h2 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  margin-bottom: 16px;
}

.cta-card p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.9;
}

.cta-contact-block {
  flex-direction: column;
  gap: 22px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-contact-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-contact-copy .section-kicker {
  margin-top: 22px;
  margin-bottom: 14px;
}

.cta-contact-copy h3 {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

.cta-contact-copy p {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.cta-contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =======================================================
   PRICING MATRIX
   ======================================================= */

.pm-h2-accent {
  background: linear-gradient(90deg, var(--primary-3) 0%, #b476ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pm-wrap {
  padding: 0;
  overflow: hidden;
}

.pm-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pm-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.pm-label-th {
  text-align: left;
  padding: 28px 24px 20px;
  min-width: 220px;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-soft);
  vertical-align: bottom;
}

.pm-col-th {
  padding: 0 16px 20px;
  text-align: center;
  vertical-align: bottom;
  min-width: 160px;
  position: relative;
}

.pm-col-th::before {
  content: "";
  display: block;
  height: 3px;
  border-radius: 0;
  margin-bottom: 20px;
}

.pm-col-essencial::before {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.pm-col-profissional::before {
  background: linear-gradient(90deg, var(--primary-2), var(--primary-3));
  box-shadow: 0 0 12px rgba(66, 189, 231, 0.3);
}

.pm-col-performance::before {
  background: linear-gradient(90deg, var(--primary-3), var(--primary-4));
}

.pm-col-ultra {
  background: linear-gradient(180deg, rgba(96, 45, 190, 0) 0%, rgba(63, 25, 120, 0) 100%);
}

.pm-col-ultra::before {
  background: linear-gradient(90deg, #7f37ff, #5dcfff);
  box-shadow: 0 0 14px rgba(126, 55, 255, 0.45);
}

.pm-col-name {
  display: block;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 5px;
}

.pm-col-name-pro {
  color: var(--primary-3);
}

.pm-col-name-ultra {
  background: linear-gradient(90deg, #7f37ff, #5dcfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pm-col-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.pm-pop-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(31, 127, 186, 0.18), rgba(66, 189, 231, 0.18));
  border: 1px solid rgba(66, 189, 231, 0.28);
  color: var(--primary-3);
  margin-bottom: 8px;
}

.pm-table td {
  padding: 15px 16px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--text-soft);
  vertical-align: middle;
  line-height: 1.4;
}

.pm-label-td {
  text-align: left !important;
  font-weight: 500;
  color: var(--text) !important;
  font-size: 0.92rem !important;
  padding-left: 24px !important;
}

.pm-label-desc {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 3px;
  line-height: 1.45;
}

.pm-group-row td {
  padding: 10px 24px 7px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.022);
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
}

.pm-ultra-td {
  background: transparent;
}

.pm-td-bold {
  font-weight: 700;
  color: var(--text) !important;
}

.pm-check {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-3);
  line-height: 1;
}

.pm-check-ultra {
  color: #b476ff;
}

.pm-dash {
  color: var(--text-muted);
  opacity: 0.4;
}

.pm-incluso {
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-3);
}

.pm-star {
  font-size: 1.3rem;
  color: #b476ff;
  filter: drop-shadow(0 0 8px rgba(180, 118, 255, 0.65));
}

.pm-cta-row td {
  padding: 22px 16px 26px;
  border-bottom: none;
  border-top: 1px solid var(--glass-border);
}

.pm-cta-row .pm-label-td {
  border-top: 1px solid var(--glass-border);
}

.pm-btn {
  width: 100%;
  min-height: 44px;
  min-width: 120px;
}

.pm-btn-ultra {
  background: linear-gradient(135deg, #7f37ff 0%, #5dcfff 100%) !important;
  box-shadow: 0 14px 30px rgba(126, 55, 255, 0.3), 0 0 20px rgba(93, 207, 255, 0.12) !important;
}

.pm-btn-ultra:hover {
  box-shadow: 0 20px 40px rgba(126, 55, 255, 0.38), 0 0 26px rgba(93, 207, 255, 0.18) !important;
}

.pm-footnotes {
  padding: 18px 24px 24px;
  border-top: 1px solid var(--glass-border);
  display: grid;
  gap: 5px;
}

.pm-footnotes p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pm-footnotes strong {
  color: var(--text-soft);
}

/* Light theme — Pricing */

body.light-theme .pm-col-ultra,
body.light-theme .pm-ultra-td {
  background: transparent;
}

body.light-theme .pm-group-row td {
  background: rgba(15, 76, 138, 0.03);
}

body.light-theme .pm-col-name-pro,
body.light-theme .pm-incluso,
body.light-theme .pm-check {
  color: var(--primary-2);
}

body.light-theme .pm-check-ultra {
  color: #6a35c8;
}

body.light-theme .pm-star {
  color: #7b4df1;
  filter: drop-shadow(0 0 6px rgba(123, 77, 241, 0.3));
}

body.light-theme .pm-btn-ultra {
  background: linear-gradient(135deg, #7b4df1 0%, #38baf0 100%) !important;
}

body.light-theme .pm-h2-accent {
  background: linear-gradient(90deg, var(--primary-2) 0%, #7b4df1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =======================================================
   PRICING MODULES DETAIL
   ======================================================= */

.pricing-modules-section {
  margin-top: 64px;
}

.pricing-modules-heading {
  margin-bottom: 32px !important;
}

.pricing-modules-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.pricing-module-main {
  padding: 32px 28px;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pricing-module-card {
  padding: 24px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-module-card-ultra {
  border-color: rgba(167, 96, 255, 0.22) !important;
  box-shadow: var(--shadow-xl), 0 0 22px rgba(140, 80, 255, 0.1) !important;
}

.pricing-module-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-module-head h3 {
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.pricing-module-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
}

.pricing-module-icon-blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 18px rgba(31, 127, 186, 0.35);
}

.pricing-module-icon-green {
  background: linear-gradient(135deg, #0e9a73, #19d4a0);
  box-shadow: 0 0 18px rgba(25, 184, 140, 0.3);
}

.pricing-module-icon-cyan {
  background: linear-gradient(135deg, var(--primary-2), var(--primary-3));
  box-shadow: 0 0 18px rgba(66, 189, 231, 0.3);
}

.pricing-module-icon-indigo {
  background: linear-gradient(135deg, #2a5fc9, #5b8fff);
  box-shadow: 0 0 18px rgba(91, 143, 255, 0.3);
}

.pricing-module-icon-purple {
  background: linear-gradient(135deg, #7f37ff, #b476ff);
  box-shadow: 0 0 18px rgba(167, 96, 255, 0.35);
}

.pricing-module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.pricing-module-list li {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}

.pricing-module-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-3);
  opacity: 0.6;
}

.pricing-module-list li strong {
  color: var(--text);
  font-weight: 600;
}

.pricing-module-list.compact {
  gap: 8px;
}

.pricing-module-list.compact li {
  font-size: 0.84rem;
}

.pricing-module-card-ultra .pricing-module-list li::before {
  background: #b476ff;
  opacity: 0.7;
}

.pricing-module-footnote {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.pricing-module-footnote p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =======================================================
   FOOTER
   ======================================================= */

.landing-footer {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 0 0 50px;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  width: 220px;
  opacity: 0.9;
}

.landing-footer p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.footer-company {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

body.light-theme .footer-company {
  color: rgba(10, 29, 47, 0.72);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--btn-ghost-bg);
  color: var(--text-soft);
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--text);
  background: var(--btn-ghost-hover-bg);
  border-color: var(--glass-border-strong);
  box-shadow: 0 12px 30px rgba(66, 189, 231, 0.12);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* =======================================================
   ANIMATIONS
   ======================================================= */

.reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0) scale(0.98);
  -webkit-transform: translate3d(0, 40px, 0) scale(0.98);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease,
    -webkit-transform 0.85s ease;
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transform: translate3d(0, 0, 0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.pricing-module-main,
.pricing-module-card,
.pricing-table-wrap,
.depth-card {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* =======================================================
   RESPONSIVE
   ======================================================= */

@media (min-width: 768px) {
  .hero-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1500px) {
  .landing-header {
    width: min(calc(100% - 20px), 1460px);
    column-gap: 20px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .brand {
    padding-right: 12px;
  }

  .brand-logo {
    width: 196px;
  }

  .landing-nav {
    gap: 12px;
  }

  .landing-nav a {
    padding: 8px 5px;
    font-size: 0.88rem;
  }

  .landing-actions {
    gap: 8px;
  }

  .landing-actions .btn {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .language-btn {
    min-width: 31px;
    padding: 0.42rem 0.56rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 1240px) {
  .landing-header {
    width: min(calc(100% - 20px), 1200px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
  }

  .landing-nav,
  .landing-actions,
  .landing-header > .landing-language-switcher {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 1180px) {
  .modulos-grid,
  .species-grid,
  .flow-grid,
  .showcase-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .pricing-modules-layout {
    grid-template-columns: 1fr;
  }

  .pricing-module-main {
    height: auto;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 70px;
  }

  .hero-shell {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }

  .modulos-grid,
  .species-grid,
  .flow-grid,
  .showcase-panel,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .brand-logo {
    width: 190px;
  }

  .timeline-item {
    min-height: auto;
  }

  .pm-wrap {
    border-radius: var(--radius-md);
  }
}

@media (max-width: 640px) {
  .section,
  .hero,
  .landing-footer {
    width: min(calc(100% - 20px), var(--container));
  }

  .landing-header {
    width: min(calc(100% - 20px), 1320px);
    top: 10px;
    border-radius: 20px;
  }

  .brand-logo {
    width: 178px;
  }

  .hero-subtitle,
  .section-heading p,
  .module-card p,
  .species-card p,
  .flow-card p,
  .timeline-item p,
  .cta-card p,
  .showcase-panel p {
    line-height: 1.75;
    font-size: 0.98rem;
  }

  .module-card,
  .species-card,
  .flow-card,
  .timeline-item,
  .showcase-panel,
  .cta-card {
    padding: 22px 18px;
  }

  .pricing-modules-grid {
    grid-template-columns: 1fr;
  }

  .timeline-notes {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .footer-social {
    gap: 10px;
  }

  .footer-social a {
    width: 100%;
    justify-content: center;
  }

  .orb-1,
  .orb-2,
  .orb-3 {
    opacity: 0.34;
  }
}