:root {
  --blue: #5a6b48;
  --blue2: #46543a;
  --blue-glow: rgba(90, 107, 72, 0.18);
  --dark: #f7f2e7;
  --dark2: #f0e9d9;
  --dark3: #e5dcc6;
  --card: #ffffff;
  --ink: #181d14;
  --grey: #5c6155;
  --grey2: #464c3f;
  --accent: #5a6b48;
  --border: rgba(90, 107, 72, 0.09);
  --border2: rgba(90, 107, 72, 0.2);
  --gold: #c8a35f; /* detalhe dourado/champagne — identidade odontológica premium */
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background:
    radial-gradient(
      ellipse 110% 45% at 10% 0%,
      rgba(200, 163, 95, 0.05) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 80% 35% at 90% 100%,
      rgba(200, 163, 95, 0.04) 0%,
      transparent 55%
    ),
    linear-gradient(160deg, #f5efe2 0%, #faf6ec 45%, #f1ead9 100%);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* ── CURSOR ── */
#cursor {
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: background 0.2s;
  will-change: transform;
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition:
    width 0.25s,
    height 0.25s,
    opacity 0.25s;
  opacity: 0.5;
  will-change: transform;
}
#cursor.c-hover {
  background: var(--blue2);
  width: 20px;
  height: 20px;
}
#cursor-ring.c-hover {
  width: 54px;
  height: 54px;
  opacity: 0.2;
}
/* ── CURSOR: esconder em touch/mobile ── */
@media (hover: none), (pointer: coarse) {
  #cursor,
  #cursor-ring {
    display: none !important;
  }
  body {
    cursor: auto !important;
  }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 7vw;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  transition:
    top 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.45s ease,
    backdrop-filter 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.scrolled {
  top: 0.8rem;
  left: 2.5vw;
  right: 2.5vw;
  padding: 0.85rem 1.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 4px 32px rgba(24, 29, 20, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(90, 107, 72, 0.06);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 45px;
  width: auto;
  display: block;
}
/* Logo em texto — Dra. Tallyta Tolotti */
.logo-text {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.logo-text span {
  color: var(--gold);
}
.footer-logo-text {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.3;
  display: block;
}
.footer-logo-text small {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  margin-top: 0.3rem;
  max-width: 240px;
  white-space: normal;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--grey2);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  box-shadow: 0 2px 14px rgba(90, 107, 72, 0.22);
}
.nav-cta:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(90, 107, 72, 0.32);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  padding: 9rem 7vw 6rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: #10140c;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(14, 18, 11, 0.45) 0%,
    rgba(14, 18, 11, 0.3) 35%,
    rgba(14, 18, 11, 0.55) 70%,
    rgba(14, 18, 11, 0.88) 100%
  );
}
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(
      ellipse 60% 70% at 75% 20%,
      rgba(90, 107, 72, 0.07),
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 90% 80%,
      rgba(90, 107, 72, 0.05),
      transparent 60%
    ),
    radial-gradient(
      ellipse 30% 40% at 10% 90%,
      rgba(90, 107, 72, 0.04),
      transparent 60%
    );
  animation: meshShift 8s ease-in-out infinite alternate;
}
@keyframes meshShift {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
    transform: scale(1.04);
  }
}
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(90, 107, 72, 0.07) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  mask-image: radial-gradient(
    ellipse 65% 65% at 15% 50%,
    black,
    transparent 65%
  );
  opacity: 0.5;
  z-index: 2;
}
.hero-left {
  position: relative;
  z-index: 3;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f0e3;
  border-radius: 100px;
  padding: 0.38rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
}
.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  overflow: hidden;
}
.h1-line {
  overflow: hidden;
  display: block;
}
.h1-line-inner {
  display: block;
  transform: translateY(110%);
}

.circle-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  filter: drop-shadow(0 0 6px rgba(90, 107, 72, 0.35));
}
.hero-sub {
  margin-top: 1.8rem;
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-sub strong {
  color: var(--ink);
  font-weight: 500;
}
.hero-btns {
  margin-top: 2.4rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.btn-p {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-p::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-p:hover::before {
  transform: translateX(100%);
}
.btn-p:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 107, 72, 0.25);
}

/* ── HERO TEXT OVERRIDES (video bg) ── */
.hero .h1-line-inner {
  color: #f4eee0;
}
.hero-sub {
  color: rgba(243, 236, 221, 0.78) !important;
}
.hero-sub strong {
  color: #f4eee0 !important;
}
.hero-tag {
  color: rgba(235, 227, 206, 0.88);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

/* ── HERO RIGHT ── */
.hero-right {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(90, 107, 72, 0.12);
  border-radius: 20px;
  padding: 2.8rem;
  box-shadow:
    0 8px 52px rgba(90, 107, 72, 0.11),
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(90, 107, 72, 0.07);
  opacity: 0;
  transform: translateY(30px);
}
.hero-right::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(90, 107, 72, 0.08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-right h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.hr-sub {
  font-size: 0.86rem;
  color: var(--grey2);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.fg label {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--grey2);
}
.fg input,
.fg select {
  background: var(--dark3);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.2s;
  width: 100%;
}
.fg input:focus,
.fg select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(90, 107, 72, 0.08);
}
.fg input.error,
.fg select.error {
  border-color: #ef4444;
}
.err-msg {
  font-size: 0.65rem;
  color: #ef4444;
  display: none;
}
.err-msg.show {
  display: block;
}
.btn-form {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 1.1rem;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-form:hover {
  background: var(--blue2);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(90, 107, 72, 0.2);
}

.fn {
  font-size: 0.67rem;
  color: var(--grey);
  text-align: center;
  margin-top: 0.8rem;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--blue);
  padding: 0.9rem 0;
  overflow: hidden;
  display: flex;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-item {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marquee-item::after {
  content: "✦";
  opacity: 0.5;
}

/* ── SECTION COMMON ── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.sec-label::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--accent);
}

/* ── VIDEO ── */
.video-sec {
  padding: 8rem 7vw;
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 0%,
      rgba(200, 163, 95, 0.09),
      transparent 60%
    ),
    linear-gradient(to bottom, #ebe3d0, #efe8d6);
  text-align: center;
}
.video-sec h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.video-sec h2 span {
  color: var(--accent);
}
.video-sub {
  font-size: 0.92rem;
  color: var(--grey);
  margin-bottom: 3rem;
}
.video-wrap {
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background:
    radial-gradient(
      ellipse 60% 60% at 50% 50%,
      rgba(90, 107, 72, 0.2),
      transparent
    ),
    linear-gradient(135deg, #181d14 0%, #242c1d 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    box-shadow 0.4s,
    transform 0.4s;
}
.video-wrap:hover {
  box-shadow: 0 20px 60px rgba(90, 107, 72, 0.12);
  transform: scale(1.005);
}
.video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(90, 107, 72, 0.1),
    transparent
  );
}
.play-c {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(90, 107, 72, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  color: #fff;
}
.play-c::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(90, 107, 72, 0.3);
  animation: ripple 2s ease infinite;
}
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.video-wrap:hover .play-c {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(90, 107, 72, 0.4);
}
.vc {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey);
  z-index: 1;
  white-space: nowrap;
}

/* ── MKT ── */
.mkt {
  padding: 8rem 7vw;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 7rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--dark);
  background-image:
    radial-gradient(
      ellipse 55% 70% at 100% 10%,
      rgba(200, 163, 95, 0.09),
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 0% 90%,
      rgba(200, 163, 95, 0.06),
      transparent 60%
    );
}
.mkt-q {
  font-size: 1rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.mkt-q strong {
  color: var(--ink);
  font-weight: 500;
}
.mkt-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.mtag {
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--grey2);
  background: var(--card);
  cursor: pointer;
  transition: all 0.2s;
}
.mtag.on,
.mtag:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.mkt h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mkt h2 em {
  font-style: italic;
  color: var(--accent);
}
.mkt-chans {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.ch {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--grey);
  background: var(--card);
  transition: all 0.2s;
}
.ch:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── EU SEI ── */
.eusei {
  padding: 8rem 7vw;
  background:
    radial-gradient(
      ellipse 70% 50% at 100% 50%,
      rgba(200, 163, 95, 0.07),
      transparent 60%
    ),
    linear-gradient(145deg, #eae2ce, #f0e9d8);
}
.eusei-in {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4.5rem;
}
.eusei-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: sticky;
  top: 8rem;
}
/* ── PARA QUEM É O TREINAMENTO ── */
.pq-block {
  margin-top: 2.5rem;
}
.pq-block h2 {
  margin-bottom: 2rem;
}
.pq-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 980px;
}
.pq-list li {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(90, 107, 72, 0.09);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--grey2);
  line-height: 1.6;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  box-shadow: 0 2px 14px rgba(90, 107, 72, 0.06);
  transition: all 0.3s;
}
.pq-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(90, 107, 72, 0.12);
  border-color: rgba(90, 107, 72, 0.22);
}
.pq-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.ecards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ec:first-child {
  grid-column: 1/-1;
}
.ec {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(90, 107, 72, 0.09);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 14px rgba(90, 107, 72, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.ec:hover::before {
  transform: scaleX(1);
}
.ec:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(90, 107, 72, 0.12);
  border-color: rgba(90, 107, 72, 0.18);
}
.ec-n {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.7rem;
  letter-spacing: 0.1em;
}
.ec p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.75;
}
.ec p strong {
  color: var(--ink);
  font-weight: 500;
}
.frust {
  margin-top: 1.8rem;
  background: linear-gradient(135deg, #f5f0e3, #e3e8d8);
  border: 1px solid rgba(90, 107, 72, 0.15);
  border-radius: 14px;
  padding: 2rem;
}
.frust p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.75;
}
.frust p em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}
.solucao {
  margin-top: 2.5rem;
  text-align: center;
}
.sol-lbl {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  margin-bottom: 1rem;
}
.sol-banner {
  background: var(--blue);
  padding: 1.6rem 2.5rem;
  border-radius: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  box-shadow: 0 8px 24px rgba(90, 107, 72, 0.25);
}
.solucao .btn-p {
  margin: 1.4rem auto 0;
  display: table;
}

/* ── KPI ── */
.kpi-strip {
  padding: 5rem 7vw 3rem;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.kpi-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(90, 107, 72, 0.2),
    transparent 70%
  );
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.kpi-item {
  text-align: center;
}
.kpi-num {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.kpi-num span {
  color: var(--blue);
}
.kpi-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.5rem;
  font-weight: 400;
}

/* ── DEPOIMENTOS BENTO ── */
.depo-bento {
  padding: 3rem 7vw 8rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  /* Garante que seção vizinha não "sangre" no fundo */
  isolation: isolate;
}
.depo-bento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 65% 50%,
    rgba(90, 107, 72, 0.13),
    transparent 65%
  );
  pointer-events: none;
}
.depo-bento::after {
  content: "";
  position: absolute;
  top: 0;
  left: 7vw;
  right: 7vw;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(90, 107, 72, 0.3) 30%,
    rgba(90, 107, 72, 0.3) 70%,
    transparent
  );
}
.depo-bento-head {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.depo-bento-head .sec-label {
  color: var(--blue);
  justify-content: center;
}
.depo-bento-head h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.depo-bento-head h2 em {
  font-style: italic;
  color: var(--blue);
}
.depo-bento-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.48);
}
.depo-bento-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bento-card {
  /* CSS Grid overlay — funciona corretamente em Safari iOS
     (position: absolute dentro de border-radius + overflow:hidden tem bug no Safari) */
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  position: relative;
  isolation: isolate;
  border-radius: 22px;
  overflow: hidden;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(160deg, #1c2217 0%, #181d14 100%);
  transition:
    border-color 0.4s,
    box-shadow 0.4s,
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  /* Fix Safari iOS: isola o card e força uma layer própria */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.bento-card:hover {
  border-color: rgba(90, 107, 72, 0.5);
  box-shadow:
    0 0 55px rgba(90, 107, 72, 0.2),
    0 24px 64px rgba(0, 0, 0, 0.45);
  transform: translateY(-7px) translateZ(0);
}
/* Todos os filhos ocupam a mesma célula do grid (sobreposição) */
.bento-card-photo,
.bento-card-overlay,
.bento-card-body {
  grid-area: 1 / 1;
  min-width: 0;
  min-height: 0;
}
.bento-card-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  place-self: stretch;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
/* Catarina: centraliza no rosto/ação dental */
.bento-card-1 .bento-card-photo {
  object-position: center 30%;
}
/* Tallyta: blazer + laptop — mostra rosto no topo */
.bento-card-2 .bento-card-photo {
  object-position: center 10%;
}
.bento-card:hover .bento-card-photo {
  transform: scale(1.05);
}
.bento-card-overlay {
  z-index: 1;
  place-self: stretch;
  background: linear-gradient(
    to bottom,
    rgba(24, 29, 20, 0.04) 0%,
    rgba(24, 29, 20, 0.22) 38%,
    rgba(24, 29, 20, 0.88) 70%,
    rgba(24, 29, 20, 0.97) 100%
  );
}
/* Overlay mais forte para fundo de estúdio claro (Tallyta) */
.bento-card-2 .bento-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(24, 29, 20, 0.28) 0%,
    rgba(24, 29, 20, 0.38) 35%,
    rgba(24, 29, 20, 0.92) 65%,
    rgba(24, 29, 20, 0.99) 100%
  );
}
.bento-card-body {
  z-index: 2;
  align-self: end;
  padding: 2rem 2.2rem 2.4rem;
}
.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(90, 107, 72, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.bento-stars {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.bento-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.87);
  margin-bottom: 1.3rem;
  padding-left: 1.15rem;
  position: relative;
}
.bento-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.1em;
  font-size: 2rem;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1;
}
.bento-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.9rem;
}
.bento-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.bento-spec {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.18rem;
}

/* METODOLOGIA ── */
.method {
  padding: 8rem 7vw;
  position: relative;
  background-color: var(--dark);
  background-image:
    radial-gradient(rgba(90, 107, 72, 0.028) 1px, transparent 1px),
    radial-gradient(
      ellipse 50% 60% at 95% 45%,
      rgba(200, 163, 95, 0.07),
      transparent 60%
    ),
    radial-gradient(
      ellipse 35% 40% at 5% 60%,
      rgba(200, 163, 95, 0.04),
      transparent 60%
    );
  background-size:
    36px 36px,
    100% 100%,
    100% 100%;
}
.method > h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.method > h2 em {
  font-style: normal;
  color: var(--accent);
}
.msteps {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  margin-top: 6rem;
}
.ms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ms:nth-child(even) {
  direction: rtl;
}
.ms:nth-child(even) > * {
  direction: ltr;
}
.ms-num {
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(90, 107, 72, 0.07);
  line-height: 1;
  margin-bottom: -0.5rem;
  letter-spacing: -0.04em;
}

.ms-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
  color: var(--ink);
}
.ms-info p {
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.8;
}
.ms-vis {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(90, 107, 72, 0.11);
  border-radius: 16px;
  padding: 2rem;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(90, 107, 72, 0.09);
}
.ms-vis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    rgba(90, 107, 72, 0.05),
    transparent
  );
}
.ms-vc {
  position: relative;
  z-index: 1;
  width: 100%;
}
.ms-vt {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.kgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.kb {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.2s;
}
.kb:hover {
  border-color: var(--border2);
  background: #f5f0e3;
}
.kb-v {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.kb-b {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  background: rgba(90, 107, 72, 0.1);
  color: var(--blue);
  margin-left: 4px;
}
.kb-l {
  font-size: 0.68rem;
  color: var(--grey2);
  margin-top: 0.3rem;
}
.krow {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.kr {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.2s;
}
.kr:hover {
  border-color: var(--border2);
  transform: translateX(4px);
}
.kr::before {
  content: "→";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── RESULTADOS ── */
.result {
  padding: 8rem 7vw;
  background:
    radial-gradient(
      ellipse 55% 50% at 50% 100%,
      rgba(200, 163, 95, 0.08),
      transparent 60%
    ),
    linear-gradient(to bottom, #f0e9d9, #ebe3d0);
  text-align: center;
}
.result > h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.result > h2 em {
  color: var(--accent);
  font-style: normal;
}
.result > .rs {
  font-size: 0.95rem;
  color: var(--grey);
  margin-bottom: 3.5rem;
}
.result > .rs strong {
  color: var(--ink);
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   CARROSSEL 3D — pilares do treinamento
   ══════════════════════════════════════════════ */
.cord-carousel-wrap {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem 0 0.5rem;
  user-select: none;
  overflow: hidden;
}
.cord-scene {
  position: relative;
  width: 100%;
  height: 440px;
  perspective: 1200px;
  perspective-origin: 50% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.cord-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.cord-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 400px;
  margin-left: -140px;
  margin-top: -200px;
  border-radius: 18px;
  overflow: hidden;
  cursor: grab;
  will-change: transform, opacity;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.55s ease,
    box-shadow 0.55s ease;
  backface-visibility: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(90, 107, 72, 0.12);
}
.cord-card:active {
  cursor: grabbing;
}
.cord-card-media {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--dark3), #e3e8d8);
}
.cord-card-media.is-video {
  height: 190px;
  object-fit: cover;
}
.cord-card-body {
  padding: 1rem 1.3rem 1.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.cord-card-name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}
.cord-card-spec {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--grey2);
  margin-top: 2px;
}
.cord-card-quote {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.65;
  margin-top: 0.7rem;
  font-style: italic;
}
.cord-card-stars {
  margin-top: 0.6rem;
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* nav buttons */
.cord-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(90, 107, 72, 0.3);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--blue);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(90, 107, 72, 0.15);
}
.cord-nav:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 20px rgba(90, 107, 72, 0.3);
}
.cord-nav:active {
  transform: translateY(-50%) scale(0.92);
}
.cord-prev {
  left: 8px;
}
.cord-next {
  right: 8px;
}

/* dots */
.cord-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 1.6rem;
}
.cord-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(90, 107, 72, 0.22);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}
.cord-dot.active {
  background: var(--blue);
  transform: scale(1.5);
}

/* progress bar */
.cord-bar {
  width: 44px;
  height: 2px;
  border-radius: 2px;
  background: rgba(90, 107, 72, 0.12);
  margin: 10px auto 0;
  overflow: hidden;
}
.cord-progress {
  height: 100%;
  border-radius: 2px;
  background: var(--blue);
  width: 0%;
}

/* ── LOGOS ── */
.logos {
  padding: 6rem 7vw;
  background:
    radial-gradient(
      ellipse 65% 70% at 50% 50%,
      rgba(90, 107, 72, 0.18),
      transparent 70%
    ),
    #131810;
  text-align: center;
}
.logos-lbl {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}
.lgrid {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.lb {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 0.75rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  transition: all 0.22s;
  cursor: default;
}
.lb:hover {
  background: rgba(90, 107, 72, 0.22);
  border-color: rgba(90, 107, 72, 0.55);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 107, 72, 0.2);
}
.lcount {
  margin-top: 2.5rem;
  background: rgba(90, 107, 72, 0.85);
  border: 1px solid rgba(90, 107, 72, 0.4);
  border-radius: 12px;
  padding: 1.4rem 2.5rem;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 32px rgba(90, 107, 72, 0.35);
  backdrop-filter: blur(8px);
}

/* ── TIME ── */
.time {
  padding: 8rem 7vw;
  background:
    radial-gradient(
      ellipse 60% 60% at 0% 50%,
      rgba(200, 163, 95, 0.06),
      transparent 55%
    ),
    linear-gradient(160deg, #efe8d6, #ece4d2);
}
.time h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.time h2 em {
  font-style: normal;
  color: var(--accent);
}
.time .ti {
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 3rem;
}
.tgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.tc {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(90, 107, 72, 0.09);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(90, 107, 72, 0.07);
  transition: all 0.35s;
}
.tc:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(90, 107, 72, 0.14);
  border-color: rgba(90, 107, 72, 0.22);
}
.tp {
  aspect-ratio: 1/1;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.tp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--card));
}
.tin {
  padding: 1.2rem;
}
.tn {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.tr {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--grey);
  margin-top: 3px;
}
.ts {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.8rem;
}
.ts a {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--grey);
  text-decoration: none;
  transition: all 0.2s;
}
.ts a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── PROX PASSO ── */
.prox {
  padding: 8rem 7vw;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6rem;
  align-items: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 55% 70% at 100% 60%,
      rgba(200, 163, 95, 0.09),
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 55% at 0% 30%,
      rgba(200, 163, 95, 0.06),
      transparent 55%
    ),
    linear-gradient(135deg, #f3ede0, #f8f3e8);
}
.prox::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 163, 95, 0.06), transparent 70%);
  pointer-events: none;
}
.prox h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.prox h2 em {
  color: var(--accent);
  font-style: normal;
}
.prox p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.prox-card {
  width: 200px;
  height: 260px;
  border: 1px solid rgba(90, 107, 72, 0.18);
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(90, 107, 72, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.prox-card span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey2);
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3.5rem 7vw;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 4rem;
  align-items: center;
  font-family: "DM Sans", sans-serif;
}
.fln {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.footer-logo {
  height: 60px;
  width: auto;
  display: block;
  opacity: 0.9;
}
.fc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}
.fc strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fc a {
  color: rgba(154, 173, 131, 0.9);
  text-decoration: none;
}
.fso {
  display: flex;
  gap: 0.7rem;
}
.fso a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.2s;
}
.fso a:hover {
  border-color: var(--blue);
  color: #fff;
  background: rgba(90, 107, 72, 0.2);
}
.fcp {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: right;
}

/* ── WA FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-direction: row-reverse;
}
.whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  flex-shrink: 0;
}
.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: waPulse 2.2s ease-out infinite;
}
.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.whatsapp-label {
  background: var(--ink);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(24, 29, 20, 0.15);
}
.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── SIDEBAR ── */
.nav-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 29, 20, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  z-index: 300;
  padding: 5.5rem 2.2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 64px rgba(24, 29, 20, 0.14);
  border-left: 1px solid var(--border);
}
.nav-sidebar.open {
  transform: translateX(0);
}
.nav-sidebar-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--grey2);
  transition: all 0.2s;
}
.nav-sidebar-close:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.nav-sidebar-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}
.nav-sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.nav-sidebar-links li a {
  display: block;
  padding: 1.1rem 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.2s,
    padding-left 0.25s;
}
.nav-sidebar-links li a:hover {
  color: var(--accent);
  padding-left: 0.6rem;
}
.nav-sidebar-cta {
  margin-top: 2.2rem;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  display: block;
  box-shadow: 0 4px 18px rgba(90, 107, 72, 0.28);
  transition: all 0.2s;
}
.nav-sidebar-cta:hover {
  background: var(--blue2);
  transform: translateY(-1px);
}
.nav-sidebar-foot {
  margin-top: 1.8rem;
  font-size: 0.72rem;
  color: var(--grey);
  text-align: center;
}

/* ── VIDEO POPUP ── */
.vp-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(9, 12, 7, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.vp-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.vp-box {
  position: relative;
  width: min(900px, 94vw);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  transform: scale(0.88) translateY(30px);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.vp-overlay.open .vp-box {
  transform: scale(1) translateY(0);
}
.vp-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vp-close {
  position: fixed;
  top: 1.2rem;
  right: 1.4rem;
  z-index: 960;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  backdrop-filter: blur(6px);
}
.vp-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.1);
}
@media (max-width: 600px) {
  .vp-box {
    width: 100%;
    border-radius: 12px;
  }
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(24, 29, 20, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.8rem 2.4rem;
  max-width: 500px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--grey2);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.85rem;
}
.modal-close:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.modal-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 7rem;
  }
  .mkt,
  .eusei-in,
  .ms,
  .prox {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ms:nth-child(even) {
    direction: ltr;
  }
  .vgrid,
  .tgrid {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  nav .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  /* Hamburger visível no hero escuro */
  .nav-hamburger span {
    background: rgba(255, 255, 255, 0.9);
  }
  nav.scrolled .nav-hamburger span {
    background: var(--ink);
  }
  .eusei-title {
    position: static;
  }
  #cursor,
  #cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
  .hero-right,
  .ms-vis,
  .prox-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .cord-scene {
    height: 360px;
  }
}

@media (max-width: 720px) {
  .depo-bento-duo {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 480px;
    margin: 0 auto;
  }
  .bento-card {
    height: 500px;
  }
  .bento-card-1 .bento-card-photo {
    object-position: center 24%;
  }
  .bento-card-2 .bento-card-photo {
    object-position: center 14%;
  }
  .bento-card-body {
    padding: 1.8rem 1.8rem 2.2rem;
  }
}

@media (max-width: 600px) {
  .ecards,
  .pq-list,
  .kgrid {
    grid-template-columns: 1fr;
  }
  .ec:first-child {
    grid-column: 1;
  }
  .tgrid {
    grid-template-columns: 1fr 1fr;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .fcp {
    text-align: left;
  }
  .msteps {
    gap: 5rem;
  }
  .logo-img {
    height: 26px;
  }
  .logo-text {
    font-size: 0.88rem;
  }
  .footer-logo {
    height: 28px;
  }
  .footer-logo-text {
    font-size: 0.98rem;
  }
  .cord-scene {
    height: 300px;
  }
  .cord-card {
    width: 210px;
    height: 330px;
    margin-left: -105px;
    margin-top: -165px;
  }
  .cord-card-media {
    height: 155px;
  }
  .cord-card-body {
    padding: 0.85rem 1rem 1rem;
  }
  .cord-card-name {
    font-size: 0.86rem;
  }
  .cord-card-spec {
    font-size: 0.66rem;
  }
  .cord-card-quote {
    font-size: 0.72rem;
    line-height: 1;
    margin-top: 0.45rem;
  }
  .cord-card-stars {
    margin-top: 0.45rem;
    font-size: 0.7rem;
  }
}

/* ── MOBILE PEQUENO (≤ 480px) ── */
@media (max-width: 480px) {
  /* Hero: menos padding, altura correta no Safari iOS */
  .hero {
    padding: 5rem 5vw 3rem;
    min-height: 100svh;
    gap: 1.5rem;
  }

  /* Botões do hero: empilhar verticalmente */
  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  .hero-btns .btn-p {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Hero texto */
  .hero-sub {
    font-size: 0.9rem;
    margin-top: 1.2rem;
  }

  /* Seções: padding lateral uniforme */
  .video-sec,
  .mkt,
  .eusei,
  .method,
  .logos,
  .time,
  .prox,
  .result {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .kpi-strip {
    padding: 3.5rem 5vw 2.5rem;
  }
  .depo-bento {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  /* Video section: remover <br> no título */
  .video-sec h2 br {
    display: none;
  }
  .video-sec {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /* KPI: números menores em telas pequenas */
  .kpi-num {
    font-size: clamp(1.6rem, 7.5vw, 2.2rem);
  }
  .kpi-lbl {
    font-size: 0.72rem;
  }

  /* Bento: altura e texto ajustados */
  .bento-card {
    height: 480px;
  }
  .bento-card-1 .bento-card-photo {
    object-position: center 20%;
  }
  .bento-card-2 .bento-card-photo {
    object-position: center 12%;
  }
  .bento-card-body {
    padding: 1.5rem 1.6rem 2rem;
  }
  .bento-quote {
    font-size: 0.86rem;
    line-height: 1.65;
  }

  /* Banner de solução */
  .sol-banner {
    padding: 1.2rem 1.3rem;
    font-size: clamp(1rem, 4.5vw, 1.5rem);
  }

  /* Metodologia: menos gap */
  .msteps {
    gap: 4rem;
    margin-top: 3rem;
  }

  /* Time: 2 colunas OK em telas pequenas */
  .tgrid {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }
  .tn {
    font-size: 0.82rem;
  }
  .tr {
    font-size: 0.66rem;
  }

  /* Prox passo: card menor */
  .prox-card {
    width: 140px;
    height: 185px;
  }
  .prox {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /* Footer: padding menor */
  footer {
    padding: 3rem 5vw 2.5rem;
  }

  /* Modal: adaptado a teclado virtual iOS */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .modal-box {
    padding: 2rem 1.4rem 2.5rem;
    border-radius: 20px 20px 0 0;
    max-height: 92dvh;
    max-width: 100%;
    width: 100%;
  }
  .modal-title {
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
  }

  /* WhatsApp float: menor em mobile pequeno */
  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }
  .whatsapp-btn svg {
    width: 22px;
    height: 22px;
  }
  .whatsapp-float {
    bottom: 1.4rem;
    right: 1.4rem;
  }
}

@supports (-webkit-touch-callout: none) {
  .bento-card {
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }
}
