/* ============================================
   RESET E VARIÁVEIS
   ============================================ */
:root {
  --color-black: #000000;
  --color-dark-bg: #0a0a0a;
  --color-card-bg: #111111;
  --color-primary: #fb8500;
  --color-white: #ffffff;
  --color-gray-light: #e8e8e8;
  --color-gray-medium: #b0b0b0;
  --color-gray-dark: #4a4a4a;
  --font-family: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  font-size: 16px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-black);
}

.btn--primary:hover {
  background-color: #ff9d1d;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(251, 133, 0, 0.4);
}

.btn--lg {
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
}

.btn--xl {
  padding: 1.5rem 3rem;
  font-size: 1.25rem;
}

/* ============================================
   SEÇÃO HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.hero__background {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
  display: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(10, 10, 10, 0.65) 50%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero__content {
  max-width: 650px;
}

.hero__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-weight: 800;
  line-height: 1.2;
}

.hero__highlight {
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--color-gray-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__mobile-visual {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}

.hero__mobile-visual img {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.stat__label {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================
   SEÇÃO PROVA SOCIAL
   ============================================ */
.social-proof {
  padding: 4rem 1.5rem;
  background-color: var(--color-dark-bg);
}

.social-proof__header {
  text-align: center;
  margin-bottom: 3rem;
}

.social-proof__highlight {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.social-proof__subtitle {
  font-size: 1.25rem;
  color: var(--color-gray-light);
  font-weight: 600;
  margin-bottom: 2rem;
}

.social-proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.proof-card {
  background-color: var(--color-card-bg);
  border: 2px solid var(--color-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.proof-card--image {
  grid-column: 1 / -1;
  border: none;
  background: transparent;
  padding: 1.5rem 0;
}

.proof-card--video {
  border: none;
  background: transparent;
  padding: 1.5rem 0;
}

.proof-card__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: var(--color-gray-dark);
  gap: 0.75rem;
  width: 100%;
}

.proof-card__image svg {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  opacity: 0.5;
  stroke: var(--color-primary);
}

.proof-card__image iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 0.5rem;
}

.proof-card__image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background-color: #000000;
  border-radius: 0.5rem;
}

.proof-card--image .proof-card__image img {
  max-height: 460px;
  max-width: 760px;
  margin: 0 auto;
  border: 2px solid var(--color-primary);
}

.proof-card--video .proof-card__image iframe {
  border: 2px solid var(--color-primary);
}

.proof-card__image span {
  color: var(--color-gray-medium);
  font-size: 0.95rem;
}

/* ============================================
   SEÇÃO QUEM É O DONO
   ============================================ */
.owner {
  position: relative;
  padding: 4.5rem 1.5rem;
  background: radial-gradient(
    120% 120% at 0% 0%,
    #121212 0%,
    #0b0b0b 45%,
    #000000 100%
  );
}

.owner__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.owner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-gray-light);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.owner__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.owner__title span {
  color: var(--color-primary);
}

.owner__content {
  max-width: 640px;
}

.owner__content p {
  margin-bottom: 1.5rem;
  color: var(--color-gray-light);
  line-height: 1.8;
  font-size: 1rem;
}

.owner__visual {
  display: flex;
  justify-content: center;
}

.owner__card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 0;
  aspect-ratio: 2 / 3;
  border-radius: 28px;
  background: #0f0f0f;
  border: 1px solid #1d1d1d;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.owner__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 70% 10%,
    rgba(251, 133, 0, 0.2),
    transparent 60%
  );
  pointer-events: none;
}

.owner__card-meta {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.owner__card-name,
.owner__card-surname {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
}

.owner__card-surname {
  color: var(--color-gray-light);
}

.owner__card-role {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-gray-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.owner__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.owner__action {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #3fd1ff;
  color: #00202a;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(63, 209, 255, 0.3);
}

/* ============================================
   SEÇÃO MÉTODOS
   ============================================ */
.methods {
  padding: 4.5rem 1.5rem;
  background-color: var(--color-black);
}

.methods__panel {
  padding: 2.5rem 2rem;
  border-radius: 22px;
  border: 1px solid #1f1f1f;
  background: linear-gradient(
    140deg,
    rgba(251, 133, 0, 0.18) 0%,
    rgba(10, 10, 10, 0.95) 55%,
    rgba(0, 0, 0, 0.98) 100%
  );
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.methods__title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: left;
}

.methods__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.method-card {
  background-color: #0b0b0b;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #1f1f1f;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
  display: grid;
  gap: 0.75rem;
}

.method-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 133, 0, 0.6);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

.method-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #121212;
  border: 1px solid #2a2a2a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.35rem;
}

.method-card h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--color-white);
}

.method-card p {
  color: var(--color-gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SEÇÃO PREÇO
   ============================================ */
.pricing {
  padding: 4rem 1.5rem;
  background-color: var(--color-black);
}

.pricing__card {
  background: linear-gradient(135deg, var(--color-card-bg) 0%, #1a1a1a 100%);
  border: 1px solid var(--color-gray-dark);
  border-radius: 1rem;
  padding: 3rem 2rem;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.pricing__amount {
  font-size: 3rem;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 2rem;
}

.pricing__features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing__features li {
  margin-bottom: 1rem;
  color: var(--color-gray-light);
  font-size: 1rem;
  font-weight: 500;
}

/* ============================================
   SEÇÃO GANHOS
   ============================================ */
.earnings {
  padding: 4rem 1.5rem;
  background-color: var(--color-dark-bg);
}

.earnings__text {
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-gray-light);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.earnings__warning {
  background-color: rgba(251, 133, 0, 0.1);
  border: 2px solid var(--color-primary);
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.earnings__warning h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.earnings__warning p {
  color: var(--color-gray-light);
  line-height: 1.8;
}

/* ============================================
   SEÇÃO CTA FINAL
   ============================================ */
.cta-final {
  padding: 4rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-black) 0%,
    var(--color-dark-bg) 100%
  );
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2rem 1.5rem;
  background-color: var(--color-dark-bg);
  border-top: 1px solid var(--color-gray-dark);
  text-align: center;
  color: var(--color-gray-medium);
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVIDADE - TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

  .hero__background {
    display: block;
    background: url("assets/background_hero_mobile.png") center/cover no-repeat;
  }

  .hero__content {
    text-align: left;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

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

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

  .methods__title {
    font-size: 2.2rem;
  }

  .methods__panel {
    padding: 3rem 2.5rem;
  }

  .proof-card__image {
    min-height: 250px;
  }

  .owner__title {
    font-size: 2.4rem;
  }

  .owner__content p {
    font-size: 1.05rem;
  }

  .owner__card {
    max-width: 460px;
  }
}

/* ============================================
   RESPONSIVIDADE - DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }

  .hero {
    padding: 4rem 2rem;
    min-height: 100vh;
  }

  .hero__background {
    background-image: url("assets/background_hero_desktop.png");
  }

  .hero__mobile-visual {
    display: none;
  }

  .hero__visual {
    display: flex;
  }

  .hero__title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }

  .hero__image-wrapper {
    width: 300px;
    height: 400px;
  }

  .social-proof {
    padding: 5rem 2rem;
  }

  .social-proof__highlight {
    font-size: 2.5rem;
  }

  .social-proof__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .owner {
    padding: 5rem 2rem;
  }

  .owner__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
  }

  .owner__title {
    font-size: 2.8rem;
  }

  .owner__content p {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
  }

  .owner__visual {
    justify-content: flex-end;
    align-items: center;
  }

  .owner__card {
    max-width: 480px;
  }

  .methods {
    padding: 5rem 2rem;
  }

  .methods__panel {
    padding: 3.5rem 3rem;
  }

  .methods__title {
    font-size: 2.6rem;
  }

  .methods__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .method-card {
    padding: 1.75rem;
  }

  .method-card h3 {
    font-size: 1.15rem;
  }

  .pricing {
    padding: 5rem 2rem;
  }

  .pricing__card {
    padding: 3.5rem 3rem;
  }

  .earnings {
    padding: 5rem 2rem;
  }

  .cta-final {
    padding: 5rem 2rem;
  }

  .footer {
    padding: 3rem 2rem;
  }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.social-proof,
.owner,
.methods,
.pricing,
.earnings,
.cta-final {
  animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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