:root {
  --primary: #10207f;
  --secondary: #31b946;
  --accent: #93bd1c;
  --orange: #faa026;
  --white: #ffffff;
  --text: #5c5c5c;
  --deep-dark: #0f1e19;
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 8px 16px;
  background: var(--primary);
  color: var(--white);
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  z-index: 100;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--white);
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  padding: 18px 0 0;
}

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

.logo-link img {
  width: min(32vw, 360px);
  height: auto;
}

.header-whatsapp,
.floating-whatsapp {
  display: grid;
  place-items: center;
  text-decoration: none;
}

.header-whatsapp {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 50%;
}

.header-whatsapp svg,
.floating-whatsapp svg,
.cta svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 52%, rgba(250, 160, 38, 0.08) 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.hero h1,
.hero-tagline {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  color: var(--primary);
  font-size: clamp(2.2rem, 5.1vw, 4.8rem);
  line-height: 1;
}

.hero-intro {
  margin: 0;
  max-width: 600px;
  color: var(--text);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.55;
  text-align: center;
}

.hero-image {
  width: min(100%, 700px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1024 / 576;
  object-fit: contain;
  display: block;
  margin: 8px auto 0;
}

.hero-inner picture {
  width: 100%;
}

.cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 2px;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500;
  text-transform: uppercase;
  padding: 18px 22px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  background: rgba(15, 30, 25, 0.91);
  transform: translateY(-2px);
}

.hero-separator {
  height: 42px;
  background: url("images/separador.webp") center bottom / contain no-repeat;
  margin-top: 30px;
}

.benefits {
  background: var(--orange);
  padding: 14px 0 40px;
}

.benefits h2,
.testimonials h2,
.questions h2 {
  margin: 0;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
}

.benefits h2 {
  color: var(--white);
}

.benefits-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.benefit-card {
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.5);
  padding: 38px;
  text-align: center;
}

.benefit-card svg {
  width: 54px;
  height: 54px;
  fill: var(--primary);
  margin-bottom: 20px;
}

.benefit-card p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.6;
}

.testimonials {
  background: var(--primary);
  padding: 38px 0 50px;
}

.testimonials h2 {
  color: var(--white);
}

.testimonial-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.video-card img {
  display: block;
  width: 100%;
  height: auto;
}

.video-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.video-card .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 38, 0.82);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal__close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.video-modal__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__notice {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(180deg, rgba(9, 18, 71, 0.96), rgba(6, 11, 38, 0.98));
}

.video-modal__notice p {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.questions {
  background: var(--primary);
  padding: 32px 0 38px;
}

.question-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.questions h2 {
  color: var(--orange);
  font-weight: 800;
}

.questions-subtitle {
  margin: 12px 0 0;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
}

.questions .cta {
  margin-top: 22px;
  font-size: clamp(1rem, 2vw, 1.5rem);
}

.site-footer {
  padding: 26px 0 50px;
}

.social-list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
}

.social-list a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 0;
  padding: 0;
  text-decoration: none;
  background: rgba(15, 30, 25, 0.91);
  color: var(--white);
}

.social-list a img {
  width: 20px;
  height: 20px;
  display: block;
  filter: invert(1);
}

.footer-phone {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  color: var(--deep-dark);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.footer-phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.floating-whatsapp {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 20;
  width: 76px;
  height: 76px;
  background: var(--secondary);
  padding: 0;
}

.floating-whatsapp svg {
  width: 70%;
  height: 70%;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1024px) {
  .benefits-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .container {
    width: min(1140px, calc(100% - 24px));
  }

  .header-inner {
    justify-content: center;
  }

  .header-whatsapp {
    display: none;
  }

  .logo-link {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .logo-link img {
    width: min(72vw, 360px);
  }

  .hero h1,
  .hero-tagline {
    font-size: clamp(2.25rem, 10vw, 3.05rem);
    line-height: 1.02;
  }

  .cta {
    border-radius: 10px;
    padding: 19px;
    font-size: 1rem;
  }

  .benefits {
    padding: 0 0 22px;
  }

  .benefits h2 {
    font-size: 2.2rem;
  }

  .benefits-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 26px 20px;
  }

  .questions {
    padding-top: 20px;
  }

  .questions .questions-subtitle {
    font-size: 1.12rem;
  }

  .social-list {
    flex-wrap: wrap;
  }

  .video-modal {
    padding: 16px;
  }

  .video-modal__close {
    top: -38px;
  }
}
