/* ============================================================
   TRIAVA PARTNERS — Static Site Styles
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --primary: #0B2F6A;
  --accent: #17A673;
  --accent-dark: #12825A;
  --accent-light: #25D099;
  --text: #0F172A;
  --bg: #F5F7FA;
  --white: #FFFFFF;
  --muted: #94A3B8;
  --border: #E2E8F0;
  --font: 'Manrope', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

ul,
ol {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container--narrow {
  max-width: 860px;
}

.container--medium {
  max-width: 1000px;
}

/* ---------- Scroll Progress Bar ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.5s, padding 0.5s, box-shadow 0.5s;
  padding: 24px 0;
  animation: load-fade-up 0.6s ease-out 0.2s both;
}

#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 16px 0;
}

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

.nav-logo img {
  height: 60px;
  width: auto;
  transition: filter 0.3s, transform 0.3s;
}

.nav-logo img.white {
  filter: brightness(0) invert(1);
}

#navbar.scrolled .nav-logo img.white {
  filter: none;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav-links a {
  transition: color 0.2s;
  color: rgba(255, 255, 255, 0.8);
}

#navbar.scrolled .nav-links a {
  color: rgba(11, 47, 106, 0.8);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}

#navbar.scrolled .lang-switcher {
  color: var(--primary);
}

.lang-switcher span {
  opacity: 0.6;
}

.lang-switcher a {
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.lang-switcher a:hover {
  opacity: 1;
  color: var(--accent);
}

.lang-switcher a.active {
  opacity: 1;
  color: var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 2px;
}

#navbar.scrolled .lang-switcher a.active {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}

.nav-cta {
  display: none;
  padding: 10px 24px;
  background: var(--accent-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.2s;
}

.nav-cta:hover {
  background: #12906A;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(23, 166, 115, 0.25);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}

#navbar.scrolled .hamburger span {
  background: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 201;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .hamburger {
    display: none;
  }
}

/* ---------- Hero ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 138px; /* 108px navbar + 30px gap */
  padding-bottom: 30px; /* 30px gap from bottom */
  animation: load-bg 0.6s ease-out forwards;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('/images/hero-bg.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 47, 106, 0.88);
}

.hero-triangle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-triangle--top {
  top: 140px;
  right: 10%;
  opacity: 0.06;
  animation: float 6s ease-in-out infinite;
}

.hero-triangle--bottom {
  bottom: 60px;
  left: 5%;
  opacity: 0.04;
  transform: scale(1.5) rotate(45deg);
  animation: float 6s ease-in-out 1s infinite;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 10;
  padding-top: 0;
}

.hero-tag {
  display: inline-block;
  color: var(--accent-light);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: load-fade-up 0.7s ease-out 0.5s both;
}

.hero-headline {
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 900px;
  color: var(--white);
}

.hero-headline-line1 {
  animation: load-fade-up 0.7s ease-out 0.7s both;
  display: block;
}

.hero-headline-accent {
  color: var(--accent-light);
  display: block;
  margin-top: 4px;
  animation: load-fade-up 0.7s ease-out 0.95s both;
}

.hero-subtitle {
  font-weight: 500;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin-bottom: 48px;
  animation: load-fade-up 0.7s ease-out 1.2s both;
}

.hero-cta-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: load-fade-up 0.7s ease-out 1.45s both;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--accent-dark);
  color: var(--white);
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-accent:hover {
  background: #12906A;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(23, 166, 115, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-4px);
}

.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  animation: load-fade-up 0.8s ease-out 1.8s both;
}

/* ---- Hero mobile overrides ---- */
@media (max-width: 767px) {
  #hero {
    min-height: auto;
    height: auto;
    justify-content: flex-start;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-bottom {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 30px 24px 0;
  }

  .hero-mouse {
    display: none;
  }
}

.hero-anti {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
}

.hero-anti .red {
  color: #DC2626;
}

.hero-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  opacity: 0.5;
}

.hero-mouse-dot {
  width: 4px;
  height: 6px;
  background: var(--accent);
  border-radius: 9999px;
  animation: mouse-bounce 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Explainer ---------- */
#explainer {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

@media (min-width: 768px) {
  #explainer {
    padding: 112px 0;
  }
}

.explainer-tag {
  text-align: center;
  margin-bottom: 64px;
}

.tag-label {
  display: block;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.explainer-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .explainer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.explainer-col {
  padding: 0;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .explainer-col {
    padding: 0 40px;
    padding-bottom: 0;
    border-right: 1px solid rgba(226, 232, 240, 0.6);
  }

  .explainer-col:first-child {
    padding-left: 0;
  }

  .explainer-col:last-child {
    padding-right: 0;
    border-right: none;
  }
}

.explainer-col+.explainer-col {
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding-top: 48px;
}

@media (min-width: 768px) {
  .explainer-col+.explainer-col {
    border-top: none;
    padding-top: 0;
  }
}

.explainer-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.3s, background 0.3s;
}

.icon-explainer {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-check {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.explainer-icon--primary {
  background: rgba(11, 47, 106, 0.08);
  color: var(--primary);
}

.explainer-icon--accent {
  background: rgba(23, 166, 115, 0.1);
  color: var(--accent);
}

.explainer-sublabel {
  display: block;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.explainer-col h2 {
  font-weight: 700;
  font-size: 20px;
  color: var(--primary);
  line-height: 1.3;
}

.explainer-list {
  margin-top: 0;
}

.explainer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.explainer-list li .check {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.explainer-list li span:last-child {
  color: rgba(15, 23, 42, 0.8);
  font-weight: 500;
  line-height: 1.4;
}

.explainer-col p {
  color: rgba(15, 23, 42, 0.8);
  font-weight: 500;
  line-height: 1.7;
}

/* ---------- Section helpers ---------- */
.section-pad {
  padding: 96px 0;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 128px 0;
  }
}

.section-tag {
  display: block;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
}

.badge--primary {
  background: rgba(11, 47, 106, 0.05);
  color: var(--primary);
}

.badge--accent {
  background: rgba(23, 166, 115, 0.1);
  color: var(--accent-dark);
}

.badge--white {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
}

/* ---------- Problem ---------- */
#diagnostico {
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.problem-grid {
  display: grid;
  gap: 64px;
}

@media (min-width: 1024px) {
  .problem-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 96px;
    align-items: start;
  }
}

.problem-headline {
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 8px;
}

.problem-subheadline {
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 32px;
}

.problem-desc {
  color: rgba(15, 23, 42, 0.8);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.pains-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 480px) {
  .pains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pain-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid #FEE2E2;
  border-radius: 8px;
}

.pain-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FEF2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-icon-svg {
  width: 12px;
  height: 12px;
  stroke: #EF4444;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.pain-chip span:last-child {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  line-height: 1.3;
}

.problem-right {
  position: relative;
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .problem-right {
    margin-top: 0;
  }
}

.problem-right-shadow {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 100%;
  height: 100%;
  background: rgba(226, 232, 240, 0.4);
  border-radius: 8px;
  z-index: 0;
}

.problem-card {
  background: var(--primary);
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-top: 4px solid var(--accent);
  padding: 32px;
  position: relative;
  z-index: 1;
  height: auto;
  align-self: start;
  transition: transform 0.5s;
}

@media (min-width: 768px) {
  .problem-card {
    padding: 48px;
  }
}

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

.problem-card h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.problem-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
}

.problem-quote {
  border-left: 4px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin-top: 32px;
}

.problem-quote p {
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .problem-right {
    height: auto;
  }

  .problem-right-shadow {
    display: none;
  }

  .problem-card {
    height: auto;
  }

  .problem-card p {
    margin-bottom: 32px;
  }
}


/* ---------- Positioning ---------- */
#posicionamento {
  background: var(--white);
  text-align: center;
}

.positioning-headline {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 80px;
}

.positioning-headline.mt4 {
  margin-top: 8px;
}

.cards-grid {
  display: grid;
  gap: 32px;
  text-align: left;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .card {
    padding: 40px;
  }
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(23, 166, 115, 0.1);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 24px;
}

.card h3 {
  font-weight: 800;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}

.card p {
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.7;
  font-weight: 500;
}

/* ---------- Methodology ---------- */
#metodologia {
  background: var(--bg);
}

.methodology-head {
  margin-bottom: 56px;
}

.methodology-headline {
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 52px);
  color: var(--primary);
  margin-top: 8px;
}

.methodology-grid-top {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

@media (min-width: 480px) {
  .methodology-grid-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .methodology-grid-top {
    grid-template-columns: repeat(3, 1fr);
  }
}

.methodology-grid-bottom {
  display: grid;
  gap: 24px;
}

@media (min-width: 480px) {
  .methodology-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .methodology-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66.66%;
    margin: 0 auto;
  }
}

.method-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .method-card {
    padding: 40px;
  }
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.method-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.method-number {
  font-weight: 800;
  font-size: clamp(48px, 5vw, 64px);
  color: rgba(23, 166, 115, 0.1);
  line-height: 1;
  transition: color 0.3s;
}

.method-card:hover .method-number {
  color: rgba(23, 166, 115, 0.2);
}

.method-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(23, 166, 115, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.method-card:hover .method-icon-wrap {
  background: rgba(23, 166, 115, 0.2);
}

.method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.method-icon-svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 0.3s;
}

.method-card:hover .method-icon-svg {
  transform: scale(1.1);
}

.method-card h3 {
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.method-card h4 {
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.method-card p {
  color: rgba(15, 23, 42, 0.8);
  font-weight: 500;
  line-height: 1.7;
  font-size: 15px;
  margin-top: auto;
}

/* ---------- Thesis ---------- */
#tese {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.thesis-tri {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
}

.thesis-tri--tl {
  top: 80px;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.thesis-tri--br {
  bottom: 80px;
  right: 15%;
  animation: float 6s ease-in-out 2s infinite;
}

.thesis-head {
  text-align: center;
  margin-bottom: 80px;
}

.thesis-headline {
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 52px);
  color: var(--white);
  margin-top: 8px;
}

.thesis-models {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .thesis-models {
    flex-direction: row;
    gap: 0;
  }
}

.thesis-model {
  flex: 1;
  border: 2px solid rgba(23, 166, 115, 0.4);
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .thesis-model {
    padding: 40px;
  }
}

.thesis-model--primary {
  flex: 1.3;
  background: linear-gradient(145deg, #0D3880 0%, #0B2F6A 60%, #071F4A 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .thesis-model--primary {
    padding: 48px;
  }
}

.thesis-model--primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
}

.thesis-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 24px;
}

.thesis-badge--outline {
  background: rgba(23, 166, 115, 0.15);
  color: var(--accent);
}

.thesis-badge--solid {
  background: var(--accent);
  color: var(--white);
}

.thesis-model-number {
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 16px;
}

.thesis-model--default .thesis-model-number {
  color: rgba(23, 166, 115, 0.2);
}

.thesis-model--primary .thesis-model-number {
  color: rgba(255, 255, 255, 0.1);
}

.thesis-model h3 {
  font-weight: 800;
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 16px;
}

.thesis-model p {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.7;
  font-size: 16px;
}

.thesis-separator {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .thesis-separator {
    display: flex;
  }
}

.thesis-sep-line {
  width: 1px;
  height: 48px;
  background: rgba(23, 166, 115, 0.3);
}

.thesis-sep-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(23, 166, 115, 0.2);
  border: 1px solid rgba(23, 166, 115, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}

.thesis-sep-arrow svg {
  color: var(--accent);
}

.thesis-mobile-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0;
}

@media (min-width: 768px) {
  .thesis-mobile-sep {
    display: none;
  }
}

.thesis-mobile-sep-line {
  height: 1px;
  width: 64px;
  background: rgba(23, 166, 115, 0.3);
}

.thesis-tagline {
  text-align: center;
  margin-top: 64px;
}

.thesis-tagline p {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
}

/* ---------- Qualification ---------- */
#qualificacao {
  background: var(--bg);
}

.qual-grid {
  display: grid;
  gap: 64px;
}

@media (min-width: 1024px) {
  .qual-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 96px;
    align-items: center;
  }
}

.qual-headline {
  font-weight: 800;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 24px;
  margin-top: 16px;
}

.qual-desc {
  color: rgba(15, 23, 42, 0.8);
  font-size: 20px;
  max-width: 480px;
  line-height: 1.7;
}

.qual-criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.criteria-card {
  background: var(--white);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}

.criteria-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.criteria-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.criteria-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(23, 166, 115, 0.12);
  color: var(--accent);
}

.icon-check {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.criteria-card h4 {
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  line-height: 1.2;
}

/* ---------- Alignment ---------- */
#alinhamento {
  background: #081E46;
  position: relative;
  overflow: hidden;
}

.alignment-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.alignment-head h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.alignment-head p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 500;
}

.alignment-blocks {
  display: grid;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .alignment-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}

.alignment-block {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .alignment-block {
    padding: 40px;
  }
}

.alignment-block:hover {
  background: rgba(255, 255, 255, 0.1);
}

.alignment-block-label {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(23, 166, 115, 0.15);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 24px;
}

.alignment-block p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
}

/* ---------- WhyTriava ---------- */
#porquetriava {
  background: var(--white);
}

.why-head {
  text-align: center;
  margin-bottom: 64px;
}

.why-headline {
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 48px);
  color: var(--primary);
  margin-top: 8px;
}

.why-table-wrap {
  display: none;
  overflow-x: auto;
}

@media (min-width: 768px) {
  .why-table-wrap {
    display: block;
  }
}

.why-table {
  width: 100%;
  border-collapse: collapse;
}

.why-table th {
  padding: 16px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.why-table thead th:first-child {
  text-align: left;
}

.why-table thead th.col-bg {
  background: var(--bg);
  color: var(--primary);
}

.why-table thead th.col-empty {
  background: var(--bg);
  color: var(--muted);
}

.why-table thead th.col-triava {
  background: var(--accent);
  color: var(--white);
  border-radius: 8px 8px 0 0;
}

.why-table tbody tr {
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: background 0.2s;
}

.why-table tbody tr:hover {
  background: rgba(245, 247, 250, 0.5);
}

.why-table tbody tr:nth-child(even) {
  background: rgba(245, 247, 250, 0.3);
}

.why-table tbody tr:nth-child(even):hover {
  background: rgba(245, 247, 250, 0.6);
}

.why-table td {
  padding: 16px 24px;
  font-size: 14px;
  text-align: center;
}

.why-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--primary);
}

.why-table td.col-others {
  color: rgba(15, 23, 42, 0.6);
  font-weight: 500;
}

.why-table td.col-triava-val {
  color: var(--accent);
  font-weight: 700;
  border-left: 1px solid rgba(23, 166, 115, 0.2);
  border-right: 1px solid rgba(23, 166, 115, 0.2);
  background: rgba(23, 166, 115, 0.05);
}

.why-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.why-note-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.why-note p {
  color: #64748B;
  font-size: 14px;
  font-weight: 500;
}

.why-mobile {
  display: block;
}

@media (min-width: 768px) {
  .why-mobile {
    display: none;
  }
}

.why-mobile-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.why-mobile-card-head {
  background: var(--bg);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.why-mobile-card-head span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.why-mobile-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.why-mobile-row:last-child {
  border-bottom: none;
}

.why-mobile-row.triava-row {
  background: rgba(23, 166, 115, 0.05);
}

.why-mobile-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  width: 96px;
  flex-shrink: 0;
  padding-top: 2px;
}

.why-mobile-col-label.triava {
  color: var(--accent-dark);
}

.why-mobile-col-label.other {
  color: #64748B;
}

/* Darker than --muted for contrast */
.why-mobile-row span:last-child {
  font-size: 14px;
}

.why-mobile-row.triava-row span:last-child {
  color: var(--accent-dark);
  font-weight: 700;
}

.why-mobile-row:not(.triava-row) span:last-child {
  color: rgba(15, 23, 42, 0.7);
}

/* ---------- Partners ---------- */
#parceiros {
  background: var(--bg);
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.partners-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .partner-card {
    padding: 40px;
  }
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-photo {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.partner-card:hover .partner-photo {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.partner-card h3 {
  font-weight: 800;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 4px;
}

.partner-role {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.partner-role-icon {
  color: var(--accent);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-role-icon-svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.partner-role span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.partner-card p {
  color: rgba(15, 23, 42, 0.8);
  line-height: 1.7;
  font-weight: 500;
}

.trio-narrative {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trio-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.trio-avatars img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trio-narrative h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.3;
}

.trio-narrative p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.8);
  margin-bottom: 16px;
  text-align: left;
}

@media (min-width: 768px) {
  .trio-narrative p {
    text-align: center;
    font-size: 18px;
  }
}

.trio-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding: 16px;
  background: rgba(11, 47, 106, 0.04);
  border-radius: 8px;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}

@media (min-width: 768px) {
  .trio-stats {
    flex-direction: row;
    gap: 24px;
    padding: 16px 32px;
    font-size: 15px;
  }

  .trio-stats span:not(:last-child)::after {
    content: '|';
    margin-left: 24px;
    color: rgba(11, 47, 106, 0.2);
  }
}

.partner-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}

.partner-linkedin:hover {
  background: rgba(11, 47, 106, 0.05);
  border-color: rgba(11, 47, 106, 0.2);
}

.partner-linkedin svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.partner-linkedin-svg {
  width: 100%;
  height: 100%;
}


/* ---------- Stats ---------- */
#numeros {
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('/images/stats-bg.jpg');
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 22, 51, 0.90);
}

.stats-inner {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 32px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(23, 166, 115, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.stat-icon-svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.stat-number {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--font);
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- Footer / CTA ---------- */
#contato {
  background: var(--primary);
  padding-top: 128px;
  padding-bottom: 40px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-spin-tri {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.02;
  pointer-events: none;
  animation: spin 40s linear infinite;
}

.footer-inner {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-label {
  display: block;
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cta-headline {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.15;
}

.cta-accent {
  font-weight: 500;
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--accent-light);
  margin-bottom: 64px;
}

.cta-email-wrap {
  margin-bottom: 80px;
}

.cta-email {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(23, 166, 115, 0.3);
  text-underline-offset: 12px;
  text-decoration-thickness: 4px;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .cta-email {
    text-decoration-thickness: 8px;
  }
}

.cta-email:hover {
  color: var(--accent-light);
}

.cta-locations {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 96px;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-bar {
    flex-direction: row;
  }
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.3s, filter 0.3s;
  -webkit-filter: brightness(0) invert(1);
}

.footer-logo:hover img {
  opacity: 1;
  filter: none;
  -webkit-filter: none;
}

.footer-legal {
  display: flex;
  gap: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.footer-legal a {
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-lang-switcher {
  display: flex;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}

.footer-lang-switcher a {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-lang-switcher a:hover {
  opacity: 1;
}

.footer-lang-switcher a.active {
  opacity: 1;
  color: var(--accent-light);
}

.footer-copyright {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

/* ---------- Cookie Banner ---------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 47, 106, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  display: none;
}

#cookie-banner.show {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-text {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}

.cookie-text a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-accept {
  background: var(--accent-dark);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: #12906A;
}

/* ---------- Legal / Prose ---------- */
.legal-page {
  min-height: 100vh;
  background: var(--bg);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 128px 24px 96px;
}

.legal-back {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  transition: text-decoration 0.2s;
}

.legal-back:hover {
  text-decoration: underline;
}

.prose-policy {
  color: var(--text);
  font-family: var(--font);
  line-height: 1.75;
  font-size: 16px;
}

.prose-policy h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.15;
}

.prose-policy .updated {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 40px;
  display: block;
}

.prose-policy h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 8px;
  border-top: 2px solid var(--border);
}

.prose-policy h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}

.prose-policy p {
  margin-bottom: 16px;
  color: #334155;
}

.prose-policy ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.prose-policy ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: #334155;
}

.prose-policy ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.prose-policy a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-policy a:hover {
  color: var(--primary);
}

.prose-policy strong {
  color: var(--primary);
  font-weight: 700;
}

.prose-policy code {
  font-family: var(--font);
  font-size: 0.85em;
  background: #EEF2FF;
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ---------- Animations ---------- */
@keyframes load-bg {
  from {
    background-color: #000000;
  }

  to {
    background-color: #0B2F6A;
  }
}

@keyframes load-fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes mouse-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-clip-reveal {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.animate-clip-reveal.is-visible {
  clip-path: inset(0 0% 0 0);
  opacity: 1;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-mouse-bounce {
  animation: mouse-bounce 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Utilities ---------- */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-10 {
  margin-bottom: 40px;
}

.mb-16 {
  margin-bottom: 64px;
}

.mt-16 {
  margin-top: 64px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}