@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --light-purple: #ed7bcc;
  --purple: #845ffa;
  --white: #ffffff;

  --black-purple-0: #0b090c;
  --black-purple-1: #110e13;
  --black-purple-2: #1d1721;

  --container-max: 1200px;
  --container-padding: 18px;

  --radius-xl: 2em;
  --radius-lg: 1.6em;
  --radius-md: 1.4em;

  --focus: 0 0 0 3px rgba(237, 123, 204, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black-purple-0);
  color: var(--white);
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: rgba(17, 14, 19, 0.95);
  border: 1px solid rgba(244, 237, 246, 0.2);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}

.skip-link:focus {
  left: 10px;
  outline: none;
  box-shadow: var(--focus);
}

.main-container {
  width: 100%;
}

.hero-container {
  background-color: var(--black-purple-0);
  background-image: url("https://i.ibb.co/xqCZrhqq/fundo-match-01.webp");
  background-position: center bottom;
  background-size: cover;
}

.hero-content-organizer {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4em var(--container-padding) 2.2em var(--container-padding);
  display: flex;
  gap: 2.2em;
  align-items: center;
  justify-content: space-between;
}

.hero-main-content-side {
  display: flex;
  flex-direction: column;
  gap: 1em;
  min-width: 0;
}

.hero-logo {
  width: 240px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-description {
  color: rgba(255, 255, 255, 0.92);
  max-width: 580px;
  line-height: 1.6;
  font-size: 1rem;
}

.hero-bullets-container {
  display: flex;
  flex-direction: column;
  gap: 0.65em;
  margin-top: 0.35em;
}

.hero-bullet {
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
  line-height: 1.45;
}

.hero-bullet i {
  color: var(--light-purple);
  font-size: 1.15em;
  margin-top: 0.1em;
}

.hero-image-content-side {
  flex: 0 0 auto;
  width: min(520px, 42vw);
}

.hero-image-content-side img {
  width: 100%;
  height: auto;
}

.cta-button-default {
  background-color: var(--purple);
  color: var(--white);
  font-weight: 700;
  width: fit-content;
  padding: 1em 2.4em;
  border-radius: 999px;
  background-image: linear-gradient(
    to right,
    var(--purple),
    var(--light-purple)
  );
  margin: 0.95em 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  animation: glow 3s ease-in-out infinite;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.cta-button-default:hover {
  transform: scale(1.02);
  filter: brightness(1.03);
}

.cta-button-default:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

@keyframes glow {
  0% {
    box-shadow: 0 0 8px rgba(132, 95, 250, 0.25);
  }
  50% {
    box-shadow: 0 0 14px rgba(132, 95, 250, 0.35),
      0 0 24px rgba(237, 123, 204, 0.15);
  }
  100% {
    box-shadow: 0 0 8px rgba(132, 95, 250, 0.25);
  }
}

/* Arrow */
.span-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.6em 0 3.2em 0;
}

.span-arrow div {
  background-color: var(--light-purple);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: bounce 1.3s infinite ease-in-out;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  70% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}

.span-arrow div > i {
  color: var(--white);
  font-size: 1.25em;
}

/* PROBLEM */
.problem-section {
  padding: 4.2em 0;
}

.problem-container {
  max-width: var(--container-max);
  margin: 0 auto;
  background-color: var(--black-purple-1);
  border-radius: var(--radius-xl);
  padding: 3.2em;
  border: 1px solid rgba(237, 123, 204, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.problem-title {
  color: var(--white);
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  max-width: 720px;
  text-align: center;
  margin: 0 auto;
  line-height: 1.2;
}

.problem-text {
  color: rgba(255, 255, 255, 0.9);
  max-width: 840px;
  margin: 0 auto 1.8em auto;
  text-align: center;
  line-height: 1.65;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2em;
  margin-bottom: 1.8em;
}

.problem-card {
  background-color: var(--black-purple-2);
  border-radius: 1.4em;
  padding: 1.8em;
  border: 1px solid rgba(237, 123, 204, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  min-width: 0;
}

.problem-card h3 {
  color: var(--white);
  font-size: 1.05em;
  line-height: 1.25;
}

.problem-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92em;
  line-height: 1.55;
}

.problem-icon {
  width: 46px;
  height: 46px;
  background-color: var(--light-purple);
  border-radius: 0.85em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon i {
  color: var(--white);
  font-size: 1.35em;
}

.problem-section .cta-button-default {
  margin: 0 auto;
}

/* SOLUTION */
.solution-section {
  padding: 5em 0 5.5em 0;
  background-color: var(--black-purple-1);
}

.solution-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3em;
}

.solution-title {
  color: var(--white);
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  text-align: center;
  max-width: 920px;
  line-height: 1.2;
}

.solution-text {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 860px;
  line-height: 1.65;
}

.solution-cards {
  width: 100%;
  margin-top: 1em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4em;
}

.solution-card {
  border-radius: var(--radius-lg);
  padding: 2em 1.8em;
  border: 1px solid rgba(237, 123, 204, 0.5);
  background: rgba(11, 9, 12, 0.55);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 0.85em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 0;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(132, 95, 250, 0.12),
    0 0 34px rgba(237, 123, 204, 0.08);
}

.solution-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 1.1em;
  border: 1px solid rgba(237, 123, 204, 0.65);
  background: rgba(17, 14, 19, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-card-icon i {
  color: var(--white);
  font-size: 1.55em;
  opacity: 0.95;
}

.solution-card-title {
  color: var(--white);
  font-size: 1.08em;
  line-height: 1.3;
}

.solution-card-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95em;
  line-height: 1.6;
}

.solution-cta {
  margin-top: 0.6em;
}

/* HOW */
.how-section {
  padding: 4.6em 0 4.2em 0;
  background-color: var(--black-purple-0);
}

.how-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.how-title {
  color: var(--white);
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  text-align: center;
  margin-bottom: 1.8em;
}

.how-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.6em;
}

.how-image-wrap {
  width: 460px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(237, 123, 204, 0.28);
  background: rgba(11, 9, 12, 0.55);
  box-shadow: 0 0 26px rgba(132, 95, 250, 0.1),
    0 0 42px rgba(237, 123, 204, 0.06);
  flex: 0 0 auto;
}

.how-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.how-steps {
  width: 620px;
  height: 520px;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.how-step-card {
  position: relative;
  flex: 1;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(237, 123, 204, 0.4);
  background: rgba(11, 9, 12, 0.55);
  backdrop-filter: blur(10px);
  padding: 1.5em 1.6em;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 0;
}

.how-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(132, 95, 250, 0.12),
    0 0 26px rgba(237, 123, 204, 0.08);
}

.how-step-number {
  position: absolute;
  right: 16px;
  bottom: -10px;
  font-size: 5em;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(237, 123, 204, 0.16);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.how-step-content {
  position: relative;
  z-index: 1;
  max-width: 460px;
}

.how-step-content h3 {
  color: var(--white);
  font-size: 1.08em;
  margin-bottom: 0.3em;
}

.how-step-content p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
  font-size: 0.95em;
}

/* AUDIENCE */
.audience-section {
  padding: 4.2em 0 5.2em 0;
  background-color: var(--black-purple-0);
}

.audience-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  gap: 1.8em;
  align-items: center;
}

.audience-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2em;
  align-items: stretch;
}

.audience-card {
  border-radius: 1.8em;
  padding: 2.1em 2em 2em 2em;
  background: rgba(11, 9, 12, 0.55);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(244, 237, 246, 0.16);
}

.audience-card--active {
  border: 1px solid rgba(132, 95, 250, 0.55);
  box-shadow: 0 0 18px rgba(132, 95, 250, 0.12),
    0 0 26px rgba(237, 123, 204, 0.08);
}

.audience-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.72em;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.45em 0.9em;
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 14, 19, 0.55);
  border: 1px solid rgba(244, 237, 246, 0.18);
}

.audience-pill--active {
  border-color: rgba(132, 95, 250, 0.55);
  background-image: linear-gradient(
    to right,
    rgba(132, 95, 250, 0.35),
    rgba(237, 123, 204, 0.2)
  );
}

.audience-pill--inactive {
  border-color: rgba(244, 237, 246, 0.16);
  opacity: 0.9;
}

.audience-list {
  list-style: none;
  margin-top: 2.2em;
  display: flex;
  flex-direction: column;
  gap: 1.05em;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
  padding-bottom: 1.05em;
  border-bottom: 1px solid rgba(244, 237, 246, 0.1);
}

.audience-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.audience-list i {
  font-size: 1.2em;
  margin-top: 0.05em;
}

.audience-card--active .audience-list i {
  color: var(--light-purple);
}

.audience-card--inactive .audience-list i {
  color: rgba(132, 95, 250, 0.75);
}

.audience-list span {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 5em 0;
  background-color: var(--black-purple-0);
}

.testimonials-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-title {
  color: var(--white);
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  text-align: center;
  margin-bottom: 0.55em;
}

.testimonials-text {
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  max-width: 760px;
  line-height: 1.65;
  margin-bottom: 2.2em;
}

.testimonials-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2em;
  align-items: stretch;
}

.testimonial-card {
  border-radius: 1.8em;
  padding: 2em 1.8em 1.6em 1.8em;
  background: rgba(11, 9, 12, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(237, 123, 204, 0.22);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 22px rgba(132, 95, 250, 0.06),
    0 0 34px rgba(237, 123, 204, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(132, 95, 250, 0.12),
    0 0 28px rgba(237, 123, 204, 0.08);
}

.testimonial-quote-mark {
  font-size: 1.75em;
  margin-bottom: 0.7em;
}

.testimonial-quote-mark i {
  color: var(--light-purple);
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  font-size: 1em;
  min-height: 120px;
}

.testimonial-footer {
  margin-top: 1.4em;
  display: flex;
  align-items: center;
  gap: 0.85em;
  padding-top: 1.05em;
  border-top: 1px solid rgba(244, 237, 246, 0.12);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(237, 123, 204, 0.35);
}

.testimonial-name {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95em;
  display: flex;
  gap: 0.35em;
  flex-wrap: wrap;
  align-items: center;
}

.testimonial-name span {
  opacity: 0.7;
  font-weight: 500;
}

/* FAQ */
.faq-section {
  padding: 5em 0;
  background-color: var(--black-purple-0);
}

.faq-container {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.faq-title {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 1.8em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(237, 123, 204, 0.32);
  background: rgba(11, 9, 12, 0.55);
  backdrop-filter: blur(10px);
  padding: 1.25em 1.35em;
  transition: box-shadow 0.25s ease;
}

.faq-item[open] {
  box-shadow: 0 0 18px rgba(132, 95, 250, 0.12),
    0 0 26px rgba(237, 123, 204, 0.08);
}

.faq-item summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 1.8em;
  outline: none;
}

.faq-item summary:focus-visible {
  box-shadow: var(--focus);
  border-radius: 10px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--light-purple);
  font-size: 1.25em;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.8em;
  line-height: 1.65;
}

/* FINAL CTA */
.final-cta-section {
  padding: 5.2em 0 5.6em 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 9, 12, 0),
    rgba(132, 95, 250, 0.08)
  );
}

.final-cta-container {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
}

.final-cta-title {
  color: var(--white);
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin-bottom: 0.55em;
  line-height: 1.2;
}

.final-cta-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05em;
  margin-bottom: 1.35em;
  line-height: 1.6;
}

.final-cta-button {
  font-size: 1.05em;
  padding: 1.05em 2.8em;
}

/* FOOTER */
.site-footer {
  padding: 2.3em 0 2em 0;
  background-color: var(--black-purple-0);
  border-top: 1px solid rgba(237, 123, 204, 0.18);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.45em;
}

.footer-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9em;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75em;
}

/* MOBILE-FIRST ADJUSTMENTS */
@media (max-width: 980px) {
  .hero-content-organizer {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 3em;
    padding-bottom: 2em;
  }

  .hero-image-content-side {
    width: 100%;
  }

  .problem-container {
    padding: 2.4em 1.6em;
  }

  .problem-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-cards {
    grid-template-columns: 1fr;
  }

  .how-grid {
    flex-direction: column;
    align-items: center;
  }

  .how-image-wrap {
    width: 100%;
    max-width: 560px;
    height: 520px;
  }

  .how-steps {
    width: 100%;
    max-width: 560px;
    height: auto;
  }

  .how-step-card {
    flex: initial;
    min-height: 120px;
  }

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

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

  .testimonial-quote {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero-logo {
    width: 210px;
  }

  .cta-button-default {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1em 1.4em;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .how-image-wrap {
    height: 440px;
  }

  .how-step-number {
    font-size: 4.4em;
    bottom: -8px;
  }
}

/* Ultra small: <375px */
@media (max-width: 374px) {
  .hero-content-organizer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .problem-container {
    padding: 2.2em 1.2em;
  }

  .faq-item {
    padding: 1.15em 1.15em;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
