:root {
  --verde: #3c815f;
  --verde-claro: #4fae86;
  --vermelho: #ed5a41;
  --quase-branco: #efe3d2;
  --fundo-claro: #f6edde;
  --texto-escuro: #1f1f1f;
  --texto: #2e2e2e;
  --texto-suave: #5a5a5a;
  --sombra: 0 20px 45px rgba(34, 70, 54, 0.18);
  --brand-height: 78px;
  --brand-scale: 4.6;
  --content-max-width: 1100px;
  --content-padding: clamp(16px, 5vw, 48px);
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Neue Montreal", "Segoe UI", "Poppins", -apple-system,
    BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
  background-color: var(--quase-branco);
  color: var(--texto);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

.hero {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-claro) 100%);
  color: var(--quase-branco);
  padding: 24px var(--content-padding) 96px;
}

.topbar {
  width: min(var(--content-max-width), 100%);
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  gap: 16px;
  align-items: center;
  position: relative;
  height: var(--brand-height);
  overflow: visible;
}

.brand::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 20px;
  background: linear-gradient(135deg,
      rgba(239, 227, 210, 0.28),
      rgba(60, 129, 95, 0.12));
  filter: blur(18px);
  z-index: 0;
}

.brand img {
  position: relative;
  z-index: 1;
  height: 100%;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
  transform-origin: left center;
  transform: scale(var(--brand-scale));
}

.topbar__cta {
  background-color: var(--vermelho);
  color: var(--quase-branco);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulseButton 1.2s ease infinite alternate;
  position: relative;
  z-index: 5;
  touch-action: manipulation;
}

.topbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra);
}

.hero__grid {
  width: min(var(--content-max-width), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hero__text h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 16px auto;
  line-height: 1.15;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.85;
}

.hero__note {
  margin: 12px 0 28px;
  padding: 14px 22px;
  border-radius: 18px;
  border: 1px solid rgba(239, 227, 210, 0.4);
  background: rgba(239, 227, 210, 0.12);
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--quase-branco);
}

.hero__note::before {
  content: "▶";
  font-size: 0.95rem;
  color: var(--vermelho);
}

.hero__highlights {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
  text-align: left;
}

.hero__highlights li {
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  background: rgba(239, 227, 210, 0.12);
  border-radius: 14px;
  padding: 12px 16px 12px 44px;
  transition: transform 0.3s ease, background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.hero__highlights li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--vermelho);
  font-weight: 700;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.hero__highlights li:hover {
  transform: translateX(6px);
  background-color: rgba(239, 227, 210, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.hero__highlights strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.hero__highlights span {
  display: block;
  font-size: 0.95rem;
  color: rgba(239, 227, 210, 0.95);
}

.hero__visual {
  display: grid;
  gap: 24px;
  justify-items: center;
  position: relative;
}

.hero__media {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__media .video-card,
.hero__media-photo {
  flex: 1 1 320px;
  max-width: 420px;
  margin: 18px 0;
}

.hero__media-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  display: flex;
  width: 100%;
  max-width: 520px;
}

.hero__media-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: transparent;
}

.hero__cta-button {
  width: min(100%, 420px);
  margin: 4px 0 32px;
  justify-content: center;
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.hero__illustration-frame {
  margin: 0;
  position: relative;
  isolation: isolate;
  padding: 12px;
  border-radius: 32px;
  background: linear-gradient(135deg,
      rgba(239, 227, 210, 0.2),
      rgba(60, 129, 95, 0.18));
  box-shadow: 0 25px 55px rgba(31, 31, 31, 0.28);
}

.hero__illustration-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(237, 90, 65, 0.4);
  opacity: 0.4;
  z-index: -1;
}

.hero__illustration-frame img {
  display: block;
  width: min(420px, 70vw);
  border-radius: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
  white-space: nowrap;
}

.cta-button--primary {
  background-color: var(--vermelho);
  color: var(--quase-branco);
  animation: pulseButton 1s ease infinite alternate;
}

.cta-button--ghost {
  background-color: rgba(239, 227, 210, 0.18);
  color: var(--quase-branco);
  border: 1px solid rgba(239, 227, 210, 0.4);
  animation: glowButton 1.8s ease infinite alternate;
}

.cta-button--primary:hover {
  animation: pulseButton 1s ease infinite alternate, shakeButton 0.6s ease;
  transform: translateY(-3px);
}

.cta-button--ghost:hover {
  background-color: rgba(239, 227, 210, 0.28);
}

.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto 0;
  width: min(100%, 360px);
}

.reveal {
  --reveal-delay: 0s;
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition: opacity 0.75s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.is-visible>.reveal {
  transition-delay: calc(var(--reveal-delay, 0s) + 0.08s);
}

@keyframes pulseButton {

  0%,
  100% {
    transform: translateY(-3px) scale(1);
    box-shadow: var(--sombra);
  }

  50% {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 50px rgba(237, 90, 65, 0.4);
  }
}

@keyframes shakeButton {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-3px);
  }

  40% {
    transform: translateX(3px);
  }

  60% {
    transform: translateX(-2px);
  }

  80% {
    transform: translateX(2px);
  }
}

@keyframes glowButton {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(239, 227, 210, 0.2);
  }

  50% {
    box-shadow: 0 15px 38px rgba(239, 227, 210, 0.35);
  }
}

.hero__social-proof {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(239, 227, 210, 0.14);
  padding: 12px 18px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hero__social-proof strong {
  font-size: 1.2rem;
}

.video-card {
  background: var(--quase-branco);
  color: var(--texto-escuro);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--sombra);
  position: relative;
  overflow: hidden;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: radial-gradient(circle at center,
      rgba(237, 90, 65, 0.25),
      transparent 60%);
  transform: rotate(12deg);
  animation: swirl 18s linear infinite;
  opacity: 0.6;
  pointer-events: none;
}

.video-card__label {
  font-weight: 600;
  color: var(--verde);
}

.video-card__placeholder {
  margin: 20px 0;
  border-radius: 20px;
  border: 2px dashed rgba(60, 129, 95, 0.35);
  background: var(--fundo-claro);
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  color: var(--texto);
  position: relative;
  overflow: hidden;
  animation: floaty 7s ease-in-out infinite;
}

.video-card__placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  border: 1px solid rgba(237, 90, 65, 0.4);
  opacity: 0.6;
  filter: blur(0);
  animation: pulseBorder 3s ease-in-out infinite;
  pointer-events: none;
}

.video-card__placeholder:hover {
  animation-play-state: paused;
}

.play-icon {
  font-size: 2.4rem;
  color: var(--vermelho);
  margin-bottom: 12px;
}

.video-card small {
  display: block;
  color: var(--texto-suave);
}

.section-illustration {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 520px;
}

.section-illustration img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: transparent;
  border-radius: 24px;
  box-shadow: 0 28px 58px rgba(31, 31, 31, 0.26);
}

main {
  padding: 0 var(--content-padding) 80px;
  overflow-x: hidden;
  max-width: 100vw;
}

section {
  width: min(var(--content-max-width), 100%);
  margin: 0 auto 96px;
  max-width: 100vw;
  overflow-x: hidden;
}

section h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.transformation {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: rgba(60, 129, 95, 0.12);
  padding: 48px;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(60, 129, 95, 0.12);
  align-items: center;
}

.transformation__content {
  display: grid;
  gap: 28px;
  align-content: start;
}

.transformation__visual {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.transformation__card h2 {
  color: var(--verde);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.transformation__metrics {
  list-style: none;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 0;
  margin: 0;
}

.transformation__metrics li {
  background-color: var(--quase-branco);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--sombra);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.transformation__metrics strong {
  font-size: 2rem;
  color: var(--vermelho);
  display: block;
  margin-bottom: 6px;
}

.transformation__metrics li:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 40px rgba(31, 31, 31, 0.18);
}

.benefits h2,
.methodology h2,
.audience h2,
.testimonials h2,
.faq h2,
.contact h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--verde);
  margin-bottom: 32px;
}

.benefits__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.benefit-card {
  background-color: var(--fundo-claro);
  border-radius: 20px;
  padding: 28px;
  box-shadow: inset 0 0 0 1px rgba(60, 129, 95, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.benefit-card h3 {
  color: var(--texto-escuro);
  margin-bottom: 12px;
}

.benefit-card:hover {
  transform: translateY(-12px);
  border-color: rgba(237, 90, 65, 0.45);
  box-shadow: 0 24px 44px rgba(60, 129, 95, 0.18);
}

.benefits .section-illustration img {
  width: min(380px, 100%);
}

.methodology {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  align-items: start;
}

.methodology__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.methodology__steps li {
  background-color: var(--fundo-claro);
  border-radius: 18px;
  padding: 20px 24px;
  border-left: 6px solid var(--verde);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.methodology__steps li:hover {
  transform: translateX(8px);
  border-color: var(--vermelho);
}

.methodology__cta {
  background-color: var(--verde);
  color: var(--quase-branco);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--sombra);
  text-align: center;
}

.audience__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.audience__item {
  background-color: var(--quase-branco);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(60, 129, 95, 0.25);
  box-shadow: var(--sombra);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.audience__item:hover {
  transform: translateY(-10px);
  border-color: rgba(237, 90, 65, 0.4);
  box-shadow: 0 24px 44px rgba(60, 129, 95, 0.22);
}

.audience .section-illustration img {
  width: min(360px, 90%);
}

.testimonials__intro {
  text-align: center;
  margin-bottom: 32px;
}

.testimonials__visual {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.testimonials__visual .section-cta {
  margin: 0;
  width: min(100%, 380px);
  white-space: nowrap;
}

/* Compacta a altura geral da seção de feedbacks */
.testimonials {
  margin-bottom: 64px;
}

.testimonials__visual .section-illustration img {
  background-color: transparent;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(240px, 1.2fr);
  gap: 28px;
  align-items: start;
}

.feedback-window {
  position: relative;
  padding: 12px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.feedback-window::before,
.feedback-window::after {
  display: none;
}

.feedback-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 16px 0 24px;
  /* padding menor para deixar a seção mais enxuta */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  align-items: flex-start;
  /* Hide scrollbar, navegação pelos botões */
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  -ms-overflow-style: none;
}

.feedback-gallery::-webkit-scrollbar {
  display: none;
}

.feedback-gallery::-webkit-scrollbar-track {
  display: none;
}

.feedback-gallery::-webkit-scrollbar-thumb {
  display: none;
}

.feedback-card {
  position: relative;
  inset: auto;
  flex: 0 0 auto;
  width: auto;
  max-width: min(90vw, 420px);
  height: auto;
  background: transparent;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
  opacity: 1;
  transform: none;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}

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

.feedback-card img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  border-radius: 12px;
  transition: none;
}

.feedback-gallery__controls {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.feedback-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background-color: var(--quase-branco);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: -10px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.lightbox__close:hover {
  transform: scale(1.1);
  color: var(--vermelho);
}

@media (max-width: 720px) {
  .testimonials,
  .feedback-layout,
  .feedback-window,
  .feedback-gallery,
  .feedback-video,
  .feedback-video__list,
  .transformation,
  .faq {
    max-width: 100%;
    margin-inline: 0;
    overflow-x: hidden;
  }

  .feedback-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: stretch;
  }

  .feedback-window {
    margin-inline: 0;
    padding: 0;
  }

  .feedback-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    overflow: visible;
    scroll-snap-align: start;
  }

  .feedback-card img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 18px;
  }

  .feedback-video {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    height: auto;
    padding: 14px 14px 22px;
  }

  .feedback-video__carousel,
  .feedback-video__list {
    width: 100%;
  }

  .feedback-video__list {
    gap: 0;
    padding: 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
  }

  .feedback-video__controls {
    justify-content: center;
    gap: 8px;
    padding: 6px 0 0;
  }

  .feedback-video__nav {
    position: static;
  }

  .feedback-gallery {
    overflow-x: auto;
    padding: 0 var(--content-padding) 16px;
    margin: 0 auto;
    justify-content: flex-start;
    gap: 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    align-items: stretch;
  }

  .feedback-gallery__controls {
    display: flex;
  }
}

.faq {
  background-color: rgba(237, 90, 65, 0.08);
  padding: 48px 56px;
  border-radius: 28px;
  border: 1px solid rgba(237, 90, 65, 0.15);
  display: block;
}

.faq__layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.faq__text {
  flex: 1 1 360px;
}

.faq__text h2 {
  text-align: left;
  margin-bottom: 24px;
}

.faq__text .section-cta {
}

.faq__cta {
  display: inline-flex;
  justify-content: center;
  margin: 28px auto 0;
  width: min(100%, 360px);
}

.faq__photo {
  flex: 1 1 280px;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 520px;
}

.faq__photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: transparent;
}

.faq__item h3 {
  color: var(--texto-escuro);
  margin-bottom: 10px;
}

.faq__item {
  transition: transform 0.3s ease;
}

.faq__item:hover {
  transform: translateX(6px);
}

.contact {
  background: var(--verde);
  color: #fffef5;
  padding: 56px;
  border-radius: 28px;
  text-align: center;
  box-shadow: var(--sombra);
}

.contact__content {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  padding: 22px 28px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
}

.contact h2 {
  color: #fffce2;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 14px rgba(0, 0, 0, 0.4);
}

.contact .cta-button {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.contact small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 249, 230, 0.92);
}

.footer {
  background-color: var(--texto-escuro);
  color: var(--quase-branco);
  text-align: center;
  padding: 24px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--vermelho);
  font-weight: 600;
}

.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--quase-branco);
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-button--top {
  background: var(--verde);
  animation: pulseButton 1.4s ease infinite alternate;
}

.floating-button--whatsapp {
  background: #25d366;
  padding: 10px;
  animation: pulseButton 1.2s ease infinite alternate;
}

.floating-button--whatsapp img {
  width: 100%;
  height: 100%;
}

.floating-button--whatsapp:hover {
  animation: pulseButton 1.2s ease infinite alternate, shakeButton 0.6s ease;
}

@keyframes floaty {

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

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

@keyframes pulseBorder {

  0%,
  100% {
    opacity: 0.25;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.04);
  }
}

@keyframes swirl {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes windowSlideLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-110%);
    opacity: 0;
  }
}

@keyframes windowSlideRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(110%);
    opacity: 0;
  }
}

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

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

@media (max-width: 960px) {
  :root {
    --brand-height: 64px;
    --brand-scale: 4.6;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    flex-wrap: wrap;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__illustration-frame img {
    width: min(320px, 100%);
  }

  .video-card__placeholder {
    min-height: 220px;
  }

  .methodology {
    grid-template-columns: 1fr;
  }

  .transformation {
    gap: 24px;
  }

  .feedback-layout {
    grid-template-columns: 1fr;
  }

  .feedback-video {
    order: 2;
  }

  .faq {
    padding: 36px 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --brand-height: 54px;
    --brand-scale: 4.6;
    --content-padding: 16px;
  }

  main {
    padding: 0 var(--content-padding) 64px;
  }

  section {
    margin-bottom: 72px;
  }

  .cta-button {
    width: 100%;
  }

  .contact {
    padding: 40px 24px;
  }

  .section-illustration img {
    width: min(300px, 90%);
  }
}

.feedback-video {
  background: rgba(239, 227, 210, 0.25);
  border-radius: 24px;
  border: 1px solid rgba(60, 129, 95, 0.25);
  padding: 12px 12px 20px;
  box-shadow: 0 18px 40px rgba(31, 31, 31, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 320px;
  min-width: 320px;
  max-width: 320px;
  min-height: 450px;
  height: 450px;
  overflow: hidden;
  align-self: stretch;
  position: relative;
}

.feedback-video h3 {
  margin: 0;
}

.feedback-video__carousel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.feedback-video__list {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 12px;
  overflow: hidden;
  padding: 4px 4px 8px;
  scroll-snap-type: x mandatory;
  align-items: stretch;
  min-height: 0;
  scrollbar-width: none;
}

.feedback-video__list .feedback-card {
  flex: 0 0 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.feedback-video__subtitle {
  margin: 0 0 12px;
  color: var(--texto);
}

.feedback-video__list video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(31, 31, 31, 0.22);
  background: #000;
  object-fit: cover;
  scroll-snap-align: start;
}

.feedback-video__list::-webkit-scrollbar {
  display: none;
}

.feedback-video__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.feedback-video__nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(60, 129, 95, 0.4);
  background: var(--quase-branco);
  color: var(--verde);
  font-size: 1.4rem;
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.feedback-video__nav:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(31, 31, 31, 0.2);
  background: rgba(60, 129, 95, 0.12);
}

.feedback-video__nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

/* Reforço mobile após regras base de vídeo (garante precedência) */
@media (max-width: 720px) {
  .feedback-video {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    height: auto;
    padding: 14px 14px 22px;
    gap: 12px;
    overflow: visible;
  }

  .feedback-video__carousel,
  .feedback-video__list {
    width: 100%;
  }

  .feedback-video__list {
    gap: 0;
    padding: 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .feedback-video__list .feedback-card {
    flex: 0 0 100%;
  }

  .feedback-video__controls {
    justify-content: center;
    gap: 8px;
    padding: 6px 0 0;
  }

  .feedback-video__nav {
    position: static;
  }
}
