/* ===== TOKENS ===== */
:root {
  --font-title: "League Spartan", system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  --font-body: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  --c-primary: #f3a900;
  --c-secondary: #122a27;
  --c-on-secondary: #e9f2f1;
  --c-accent: #f3c045;
  --c-emerald: #0c8f73;
  --c-cream: #fff6e7;
  --c-purple: #9b8cfb;
  --c-bg: #ffffff;
  --c-text: #0f0f0f;
  --sh-2: 0 6px 16px rgba(0, 0, 0, 0.14);
  --sh-3: 0 12px 28px rgba(0, 0, 0, 0.22);
  --r-sm: 10px;
  --r-md: 12px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-2xl: 22px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 70px;
  --container: 1400px;
  --header-bg: var(--c-secondary);
  --header-accent: var(--c-primary);

  /* animação */
  --dur-fast: 0.6s;
  --dur-mid: 0.75s;
  --easing: cubic-bezier(0.2, 0.65, 0.2, 1);
}

/* ===== BASE ===== */
section {
  overflow: hidden;
}
p {
  font-size: 18px;
}
html,
body {
  height: 100%;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 800;
  margin: 0;
}
a {
  text-decoration: none;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-6);
}
.lp-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lp-skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: var(--sh-2);
  z-index: 2000;
}

/* ===== BOTÕES ===== */
.btn {
  font-family: var(--font-title);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 var(--sp-5);
  border-radius: var(--r-md);
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}
.btn:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-secondary);
  border-color: var(--c-primary);
  box-shadow: 0 6px 0 #c48700, var(--sh-2);
  font-size: 20px;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 #c48700, var(--sh-3);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 0 0 #c48700, var(--sh-2);
}
.btn-block {
  width: 100%;
}
.btn-sm {
  min-height: 38px;
  padding: 0 var(--sp-4);
  border-radius: var(--r-sm);
}
.btn-xl {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: clamp(16px, 1.4vw, 20px);
}
.btn-cta {
  background: linear-gradient(135deg, #ffd35a 0%, #f3a900 60%);
  color: #102320;
  border: 0;
  box-shadow: 0 10px 20px rgba(243, 169, 0, 0.35), 0 6px 0 #c48700;
  font-size: 22px;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(243, 169, 0, 0.45), 0 6px 0 #c48700;
}

/* ===== HEADER ===== */
.lp-topo {
  position: static;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  color: #fff;
}
.lp-topo__container {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  min-height: 72px;
  padding: 0 var(--sp-6);
  position: relative;
}
.lp-topo__accent {
  height: 22px;
  background: var(--header-accent);
}
.lp-topo__brand {
  display: inline-flex;
  align-items: center;
}
.lp-topo__logo-ph {
  display: block;
  background: #0f201e;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}
.lp-topo__nav {
  margin-left: auto;
}
.lp-topo__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-topo__link {
  display: inline-block;
  color: var(--c-on-secondary);
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.lp-topo__link:hover,
.lp-topo__link:focus {
  opacity: 1;
  transform: translateY(-1px);
  outline: 0;
}
.lp-topo__link.is-active {
  color: var(--c-accent);
}
.lp-topo__cta {
  margin-left: 12px;
}
.lp-topo__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.lp-topo__toggle:focus {
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: 2px;
}
.lp-topo__toggle-bar {
  width: 22px;
  height: 2px;
  background: #ffffff;
  display: block;
}

/* ===== HERO ===== */
.lp-hero {
  background: var(--c-primary);
  color: var(--c-secondary);
}
.lp-hero__container {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-6);
}
.lp-hero__curve {
  position: absolute;
  left: 0;
  top: 0;
  width: 170px;
  height: 170px;
  border-left: 3px dashed rgba(18, 42, 39, 0.45);
  border-bottom: 3px dashed rgba(18, 42, 39, 0.45);
  border-top: 0;
  border-right: 0;
  border-bottom-left-radius: 140px;
  transform: translate(-18px, -18px) rotate(-94deg);
}
.lp-hero__grid {
  display: flex;
  gap: var(--sp-8);
  align-items: center;
}
.lp-hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.lp-hero__title {
  font-size: clamp(36px, 4vw, 45px);
  line-height: 1.1;
  letter-spacing: -1px;
}
.lp-hero__lead,
.lp-hero__p {
  margin: 0;
  color: #0f201e;
  font-size: 20px;
}
.lp-emph-link {
  font-weight: 800;
  color: #0f201e;
  border-bottom: 2px solid rgba(18, 42, 39, 0.45);
}
.lp-hero__highlight {
  margin-top: 6px;
  font-weight: 800;
  color: #0e1f1d;
}
.lp-hero__right {
  flex: 1;
  display: flex;
  width: -webkit-fill-available;
}

/* ===== FORM ===== */
.lp-form-card {
  background: var(--c-secondary);
  color: var(--c-on-secondary);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
  width: -webkit-fill-available;
  text-align: left;
  margin-top: 20px;
}
.lp-form__title {
  margin: 0 0 2px 0;
  color: #fff;
}
.lp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-label {
  font-weight: 700;
  color: #eaf4f3;
}
.input,
.select {
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 12px;
  outline: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.input:focus,
.select:focus {
  border-color: var(--c-accent);
  background: rgba(255, 255, 255, 0.1);
}
.lp-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.lp-radio input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.lp-form__legal {
  margin: 0;
  opacity: 0.85;
  font-size: 14px;
}

/* ===== DIFERENCIAIS ===== */
.lp-feat {
  position: relative;
  background: #fff;
}

.lp-feat__title {
  font-size: clamp(22px, 3vw, 46px);
  text-align: center;
  color: #102320;
}
.lp-feat__subtitle {
  max-width: 900px;
  margin: 6px auto 22px auto;
  text-align: center;
  color: #364341;
}
.lp-feat__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.feat-card {
  background: var(--c-secondary);
  color: var(--c-on-secondary);
  border-radius: 18px;
  box-shadow: var(--sh-2);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 260px;
}
.feat-card__icon {
  width: fit-content;
  height: fit-content;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.24);
}
.feat-card__line {
  display: block;
  width: 46px;
  height: 4px;
  background: var(--c-primary);
  border-radius: 999px;
  margin: 10px 0 2px 0;
  box-shadow: 0 2px 0 #c48700;
}
.feat-card__num {
  color: var(--c-accent);
  margin-right: 6px;
}
.feat-card__title {
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
}
.feat-card__text {
  color: #d9ece9;
  margin: 0 0 8px 0;
  font-size: 18px;
}
.feat-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ===== MAGIA ===== */
.lp-band {
  position: relative;
  background: var(--c-emerald);
  color: #ffffff;
}
.lp-band__inner {
  padding-top: var(--sp-8);
  padding-bottom: calc(var(--sp-8) - 10px);
}
.lp-band__title {
  font-size: clamp(22px, 3vw, 46px);
  text-align: center;
}
.lp-band__sub {
  max-width: 980px;
  margin: 6px auto 0 auto;
  text-align: center;
  opacity: 0.95;
}
.lp-band__wave {
  display: block;
  width: 100%;
  height: 70px;
  color: var(--c-emerald);
  margin-top: 10px;
}

/* ===== SISTEMA ===== */
.lp-about {
  position: relative;
  background: var(--c-cream);
  color: #102320;
}
.lp-about__container {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}
.lp-about__grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.lp-about__media {
  margin: 0;
}
.lp-about__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.lp-about__content {
  display: flex;
  flex-direction: column;
}
.lp-about__title {
  font-size: clamp(26px, 3vw, 46px);
  color: #0f201e;
}
.lp-about__curve {
  position: absolute;
  right: 18px;
  bottom: 10px;
  width: 120px;
  height: 120px;
  border-right: 3px dashed rgba(18, 42, 39, 0.35);
  border-top: 3px dashed rgba(18, 42, 39, 0.35);
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 120px;
}

/* ===== JORNADA ===== */
.lp-journey {
  background: var(--c-cream);
}
.lp-journey__title {
  font-size: clamp(26px, 3vw, 46px);
  text-align: center;
  color: #102320;
}
.lp-journey__subtitle {
  max-width: 820px;
  margin: 6px auto 24px auto;
  text-align: center;
  color: #364341;
}
.lp-journey__grid {
  display: grid;
  grid-template-columns: 1fr 440px 1fr;
  gap: 24px;
  align-items: start;
}
.journey-col {
  display: grid;
  gap: 24px;
}
.journey-card {
  border-radius: 20px;
  box-shadow: var(--sh-2);
  padding: 22px;
}
.journey-card__icon {
  width: fit-content;
  height: fit-content;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.25);
}
.journey-card__line {
  display: block;
  width: 56px;
  height: 6px;
  background: var(--c-primary);
  border-radius: 999px;
  margin: 12px 0 14px 0;
  box-shadow: 0 2px 0 #c48700;
}
.journey-card__title {
  font-size: 22px;
  margin: 0 0 6px 0;
}
.journey-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}
.journey-card--teal {
  background: var(--c-emerald);
  color: #fff;
}
.journey-card--yellow {
  background: var(--c-primary);
  color: #102320;
}
.journey-card--purple {
  background: var(--c-purple);
  color: #ffffff;
}
.journey-card--dark {
  background: var(--c-secondary);
  color: var(--c-on-secondary);
}
.journey-card--yellow .journey-card__text {
  color: #1a1a1a;
}
.journey-figure {
  align-self: center;
}
.journey-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
}

/* ===== CONTINUIDADE ===== */
.lp-advance {
  background: var(--c-emerald);
  color: #fff;
}
.lp-advance__title {
  font-size: clamp(26px, 3vw, 46px);
  text-align: center;
}
.lp-advance__subtitle {
  max-width: 880px;
  margin: 6px auto 24px auto;
  text-align: center;
  opacity: 0.95;
}
.lp-advance__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.adv-card {
  background: var(--c-secondary);
  color: var(--c-on-secondary);
  border-radius: 18px;
  box-shadow: var(--sh-2);
  padding: 22px;
}
.adv-card__icon {
  width: fit-content;
  height: fit-content;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.25);
}
.adv-card__line {
  display: block;
  width: 56px;
  height: 6px;
  background: var(--c-primary);
  border-radius: 999px;
  margin: 12px 0 14px 0;
  box-shadow: 0 2px 0 #c48700;
}
.adv-card__title {
  font-size: 22px;
  margin: 0 0 8px 0;
  color: #fff;
}
.adv-card__text {
  margin: 0 0 8px 0;
  color: #cfe6e2;
  font-size: 18px;
}

/* ===== PRÁTICAS (ACCORDION) ===== */
.lp-acc {
  background: var(--c-cream);
}
.lp-acc__grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 28px;
  align-items: start;
}
.lp-acc__title {
  font-size: clamp(26px, 3vw, 46px);
  color: #0f201e;
  margin-bottom: 6px;
}
.lp-acc__subtitle {
  max-width: 760px;
  margin: 0 0 18px 0;
  color: #4a5a57;
}
.acc-list {
  display: grid;
  gap: 16px;
}
.acc-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--sh-2);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 18px;
  border: 0;
  background: transparent;
  font: 700 18px var(--font-title);
  color: #0e1f1d;
  cursor: pointer;
  border-radius: 16px;
  font-size: 24px;
}
.acc-head:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}
.acc-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--c-primary);
  border-radius: 3px;
}
.acc-icon::before {
  width: 18px;
  height: 3px;
}
.acc-icon::after {
  width: 3px;
  height: 18px;
}
.acc-item.is-open .acc-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.acc-panel {
  padding: 0 18px 18px 18px;
  color: #4a5a57;
}
.acc-panel p {
  margin: 0 0 10px 0;
  font-size: 18px;
}
.lp-acc__media {
  position: relative;
  margin: 0;
}
.lp-acc__img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.lp-acc__media::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 140px;
  height: 44px;
  background: var(--c-cream);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.12));
  display: none;
}

/* ===== CARROSSEL HIS ===== */
/* ===== HEADLINE HIS (igual ao print) ===== */
.lp-his {
  background: var(--c-cream, #fff6e7);
  padding-top: 34px;
}
.lp-his .container {
  position: relative;
}

/* curva tracejada no topo-esquerda */

/* título grande e centralizado */
.lp-his__title {
  font-family: var(--font-title, "League Spartan");
  font-weight: 800;
  font-size: clamp(26px, 4.6vw, 56px);
  line-height: 1.1;
  text-align: center;
  color: #0e1f1d;
  margin: 0 auto 6px auto;
  max-width: 990px;
}

/* subtítulo centrado com largura máxima */
.lp-his__subtitle {
  font-family: var(--font-body, "Lato");
  font-weight: 400;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.55;
  color: #364341;
  text-align: center;
  max-width: 950px;
  margin: 0 auto 22px auto;
}

/* espaço entre a headline e o carrossel */
.lp-his .his-carousel {
  margin-top: 10px;
}

/* responsivo */
@media (max-width: 992px) {
  .lp-his__subtitle {
    margin-bottom: 18px;
  }
}

/* ===== PATCH: CARROSSEL HIS (somente estilos do carrossel) ===== */
.lp-his {
  background: var(--c-cream, #fff6e7);
}

.his-carousel {
  position: relative;
}
.his-viewport {
  overflow: hidden;
  border-radius: 16px;
}
.his-track {
  display: flex;
  transition: transform 0.45s ease;
}
.his-slide {
  min-width: 100%;
}

.his-card {
  display: flex;
  flex-wrap: nowrap;
}
.his-media {
  margin: 0;
  flex: 1;
}
.his-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  background: #ddd;
}
.his-content {
  background: var(--c-purple, #9b8cfb);
  color: #0e1f1d;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0; /* garante canto reto como no print */
  flex: 1;
}
.his-title {
  font: 800 clamp(26px, 3vw, 44px) / 1.15 var(--font-title, "League Spartan");
  margin: 0 0 14px;
}
.his-title small {
  font-size: 0.55em;
  font-weight: 700;
  opacity: 0.9;
}
.his-text {
  color: #232b2a;
  font: 400 22px var(--font-body, "Lato");
}
/* Dots */
.his-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.his-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #d6deda;
  cursor: pointer;
}
.his-dots button[aria-current="true"] {
  background: var(--c-secondary, #122a27);
}

/* Setas globais FORA do card (iguais ao print) */
.his-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-primary, #f3a900);
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 0 #c48700, 0 6px 16px rgba(0, 0, 0, 0.14);
  z-index: 1;
}
.his-arrow--prev {
  left: -60px;
}
.his-arrow--next {
  right: -60px;
}
.his-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  border: 3px solid #102320;
  border-top: 0;
  border-right: 0;
  transform: rotate(45deg);
}
.his-arrow--next::before {
  transform: rotate(-135deg);
}
.his-arrow--prev::before {
  transform: rotate(45deg);
}

@media (max-width: 992px) {
  .his-card {
    grid-template-columns: 1fr;
  }
  .his-media img {
    min-height: 260px;
  }
  .his-content {
    padding: 24px;
  }
  .his-arrow {
    display: none;
  } /* mobile usa swipe */
}
/* ===== CTA BREAKER (2 colunas no desktop) ===== */
.cta-breaker {
  position: relative;
  isolation: isolate;
  background: radial-gradient(
    1200px 600px at 80% -100px,
    #3a2c6a 0,
    #101622 60%,
    #0b0f16 100%
  );
  color: #fff;
}
.cta-breaker__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.cta-breaker__title {
  font-size: clamp(22px, 3vw, 46px);
  letter-spacing: 0.2px;
}
.cta-breaker__sub {
  max-width: 860px;
  opacity: 0.92;
  margin: 0;
}
.cta-breaker__trust {
  margin: 6px 0 0 0;
  opacity: 0.8;
}
.cta-breaker__shape {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      800px 200px at -10% 110%,
      rgba(243, 169, 0, 0.2),
      transparent 60%
    ),
    radial-gradient(
      700px 300px at 120% -10%,
      rgba(155, 140, 251, 0.2),
      transparent 60%
    );
  mix-blend-mode: screen;
  pointer-events: none;
}
.cta-form {
  width: -webkit-fill-available;
  max-width: 520px;
  margin-inline: auto;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cta-breaker__grid {
    display: grid;
    grid-template-columns: 1.1fr 520px;
    gap: 32px;
    align-items: center;
    width: 100%;
  }
  .cta-breaker__inner {
    align-items: stretch;
    text-align: left;
  }
  .cta-breaker__copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cta-form {
    max-width: none;
    margin: 0;
  }
}

/* ===== RODAPÉ ===== */
.lp-footer {
  border-top: 4px solid var(--header-accent);
  background: var(--c-secondary);
  color: var(--c-on-secondary);
}
.lp-footer__container {
  padding: 24px var(--sp-6);
}
.lp-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lp-footer__logo-ph {
  width: 72px;
  height: 22px;
  background: #0f201e;
  border-radius: 6px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.lp-footer__copy {
  opacity: 0.9;
}
.lp-footer__nav {
  margin-left: auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-footer__link {
  color: var(--c-on-secondary);
  opacity: 0.9;
}
.lp-footer__link:hover,
.lp-footer__link:focus {
  opacity: 1;
}

/* ===== WHATSAPP FAB ===== */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25), 0 4px 0 #1ea64c;
  z-index: 1100;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3), 0 4px 0 #1ea64c;
}
.wa-fab svg {
  width: 28px;
  height: 28px;
}

/* ===== RESPONSIVO HEADER (dropdown simples) ===== */
@media (max-width: 992px) {
  .lp-topo__container {
    gap: var(--sp-4);
    min-height: 64px;
  }
  .lp-topo__toggle {
    display: flex;
    margin-left: auto;
  }
  .lp-topo__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: #102623;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
    z-index: 999;
  }
  .lp-topo__nav.is-open {
    display: block;
  }
  .lp-topo__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0;
  }
  .lp-topo__link {
    width: 100%;
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .lp-topo__link:first-child {
    border-top: 0;
  }
  .lp-topo__cta {
    display: none;
  }
}

/* ===== RESPONSIVO GERAL ===== */

@media (max-width: 1500px) {
  .his-arrow--next {
    right: 0;
  }
  .his-arrow--prev {
    left: 0;
  }
}

@media (max-width: 1080px) {
  .lp-about__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}
@media (max-width: 992px) {
  .lp-hero__grid {
    flex-direction: column;
    text-align: center;
  }
  .lp-feat__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lp-journey__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .journey-figure {
    display: none;
  }
  .lp-advance__grid {
    grid-template-columns: 1fr;
  }
  .lp-acc__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .lp-acc__media::after {
    display: none;
  }
  .his-card {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .his-content {
    border-radius: 0 0 12px 12px;
    flex-direction: column;
  }
}
@media (max-width: 720px) {
  .lp-feat__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .lp-topo__logo-ph {
    width: 76px;
    height: 22px;
  }
  .lp-topo__accent {
    height: 18px;
  }
  .container,
  .lp-hero__container,
  .lp-footer__container {
    padding: 28px 20px;
  }
  .lp-band__inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .lp-band__wave {
    height: 52px;
  }
  .lp-feat__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ANIMAÇÕES ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--dur-fast) var(--easing),
      transform var(--dur-fast) var(--easing),
      filter var(--dur-fast) var(--easing);
    will-change: opacity, transform, filter;
  }
  .reveal[data-reveal="left"] {
    transform: translateX(-28px);
  }
  .reveal[data-reveal="right"] {
    transform: translateX(28px);
  }
  .reveal[data-reveal="scale"] {
    transform: scale(0.96);
    filter: blur(2px);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
  /* pequenos delays utilitários */
  .reveal-delay-1 {
    transition-delay: 0.08s;
  }
  .reveal-delay-2 {
    transition-delay: 0.16s;
  }
  .reveal-delay-3 {
    transition-delay: 0.24s;
  }
  .reveal-delay-4 {
    transition-delay: 0.32s;
  }
}
/* ===== estilização options do select urgencia ===== */
.urgencia {
  font-family: var(--font-body, "Lato");
  font-size: 16px;
  font-weight: 500;
  color: #0e1f1d;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.urgencia:focus {
  outline: none;
  border-color: var(--c-secondary, #122a27);
  color: #fff;
}

.urgencia option {
  font-family: var(--font-body, "Lato");
  font-size: 15px;
  padding: 10px;
  color: #122a27;
  background: #fff;
}

.urgencia option:hover,
.urgencia option:focus {
  background: var(--c-primary, #f3a900);
  color: #fff;
}



/* INVESTIR */

.investir {
  font-family: var(--font-body, "Lato");
  font-size: 16px;
  font-weight: 500;
  color: #0e1f1d;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.investir:focus {
  outline: none;
  border-color: var(--c-secondary, #122a27);
  color: #fff;
}

.investir option {
  font-family: var(--font-body, "Lato");
  font-size: 15px;
  padding: 10px;
  color: #122a27;
  background: #fff;
}

.investir option:hover,
.investir option:focus {
  background: var(--c-primary, #f3a900);
  color: #fff;
}


@media (max-width: 768px) {
  p {
    font-size: 17px;
  }
  .his-text {
    font-size: 17px;
  }
}

/* ===== DEPOIMENTOS (baseado no HTML fornecido) ===== */
.lp-testimonials {
  background: var(--c-cream);
}
.lp-testimonials .container {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}

/* título */
.tst-title {
  font-size: clamp(25px, 3vw, 46px);
  text-align: center;
  color: #0e1f1d;
  margin: 0 0 6px 0;
}

/* grid */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 20px;
  margin-top: 60px;
}

/* card */
.tst-card {
  position: relative;
  background: var(--c-secondary);
  color: var(--c-on-secondary);
  border-radius: 18px;
  box-shadow: var(--sh-2);
  padding: 28px 24px 18px 24px;
}

/* avatar flutuante */
.tst-avatar {
  position: absolute;
  left: -17px;
  top: -42px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25), inset 0 0 0 4px #fff;
}
.tst-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* cabeçalho (nome/meta) */
.tst-head {
  display: grid;
  place-items: center;
  text-align: center;
  margin-top: 65px;
  margin-bottom: 30px;
  justify-items: center;
}
.tst-name {
  font: 800 20px var(--font-title);
  color: #fff;
  margin: 0;
}
.tst-meta {
  margin: 2px 0 0 0;
  color: rgba(233, 242, 241, 0.9);
  font: 700 14px var(--font-body);
}

/* bloco de citação */
.tst-quote {
  position: relative;
  color: #e7f0ef;
}
.tst-quote--open,
.tst-quote--close {
  position: absolute;
  color: var(--c-primary);
  font-size: 60px;
  line-height: 0;
  user-select: none;
}
.tst-quote--open {
  top: -2px;
  left: 0;
}
.tst-quote--close {
  right: 8px;
  bottom: -42px;
}

/* texto */
.tst-text {
  margin: 0;
  font-size: 18px;
  color: #e7f0ef;
}

/* clamp + fade quando fechado */
.tst-card:not(.is-open) .tst-text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
.tst-card:not(.is-open) .tst-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  background: linear-gradient(
    to bottom,
    rgba(18, 42, 39, 0) 0%,
    rgba(18, 42, 39, 0.96) 100%
  );
}

/* botão Ler mais */
.tst-more {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font: 700 18px var(--font-title);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-top: 30px;
}
.tst-more:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.25);
  outline-offset: 2px;
}
.tst-more__icon {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  fill: currentColor;
}
.tst-card.is-open .tst-more__icon {
  transform: rotate(-180deg); /* seta para cima */
}

.sub-dep {
  font-family: var(--font-body, "Lato");
  font-weight: 400;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.55;
  color: #364341;
  text-align: center;
  max-width: 950px;
  margin: 0 auto 22px auto;
}

/* responsivo */
@media (max-width: 1200px) {
  .tst-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .tst-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: scroll;
    gap: 15px;
    margin-top: 15px;
  }

  .tst-card {
    min-width: 280px;
    padding: 30px;
  }

  .tst-avatar {
    width: 70px;
    height: 70px;
    position: static;
    margin: 0;
  }
  .tst-head {
    margin-top: 20px;
    margin-bottom: 40px;
    justify-items: flex-start;
  }
  .tst-text,
  .tst-meta {
    font-size: 17px;
  }
}

/* ====== GRID DE VÍDEOS ====== */
.lp-videos .video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

#lp-videos {
  background: #fff6e7;
}

#lp-videos .container {
  padding-top: 10px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-2);
  background: #000;
}

.video-embed .video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* responsivo */
@media (max-width: 992px) {
  .lp-videos .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .lp-videos .video-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: scroll;
    gap: 15px;
    margin-top: 0;
  }

  .video-embed {
    min-width: 280px;
    width: 100%;
    aspect-ratio: 9 / 16;
  }
}
#flututante svg,
#flututante svg * {
  pointer-events: none;
}
