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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    color: #ffffff;
    background-color: #ffffff;
}

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

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

/* ============ VARIÁVEIS ============ */
:root {
    --laranja: #F26C1D;
    --laranja-claro: #FF7A2F;
    --azul: #2E7BD1;
    --preto: #1A1A1A;
    --branco: #ffffff;
}

/* ============ CONTAINER ============ */
.container {
    width: 100%;
    padding: 0 56px;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    background-color: #F2F3F2;
    padding-bottom: 78px;
}

/* ---- Header ---- */
.header {
    position: relative;
    z-index: 3;
    padding: 22px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 44px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: 150px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;              /* Medium */
    line-height: 1.45;             /* 145% */
    letter-spacing: -0.005em;      /* -0.5% */
    color: rgba(0, 0, 0, 0.55);    /* #000000 · 55% */
    transition: opacity 0.2s;
}

.nav a:hover {
    opacity: 0.6;
}

.social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.45);    /* #000000 · 45% */
    transition: color 0.2s;
}

.social svg {
    width: 24px;
    height: 24px;
}

.social a:hover {
    color: rgba(0, 0, 0, 0.65);
}

/* ---- Banner (cards e botão já embutidos na imagem) ---- */
.hero__banner {
    position: relative;
    margin-top: 8px;
    border-radius: 22px;
    overflow: hidden;
}

.hero__banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
}

/* link transparente sobre o botão 'Invista em resultados reais' da imagem */
.hero__cta {
    position: absolute;
    left: 11.8%;
    top: 80.5%;
    width: 31.6%;
    height: 12.5%;
    border-radius: 40px;
}

/* ---- Texto abaixo do banner ---- */
.hero__pitch {
    text-align: center;
    margin: 52px auto 0;
    padding: 26px 0;              /* +~20% de altura no container */
}

.hero__pitch-title {
    font-family: "Inter", sans-serif;
    font-size: 55px;
    line-height: 1.1;              /* 110% */
    font-weight: 400;             /* Regular */
    letter-spacing: -0.02em;      /* -2% */
    color: #FF6D0A;
}

.hero__pitch-title strong {
    font-weight: 600;             /* Semibold */
}

.hero__pitch-desc {
    margin-top: 22px;
    font-family: "Inter", sans-serif;
    font-size: 36px;
    line-height: 1.4;             /* 140% */
    font-weight: 400;            /* Regular */
    letter-spacing: -0.005em;    /* -0.5% */
    color: #292929;
}

.hero__pitch-desc em {
    font-style: italic;
}

.hero__pitch-desc strong {
    font-weight: 700;            /* Bold */
}

.btn {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: opacity 0.2s, background-color 0.2s;
}

/* ============ CARDS DESTAQUE ============ */
.destaques {
    background-color: #FFFFFF;
    padding: 84px 0;             /* faixa 1440×576 (408 + 84×2) */
}

.destaques__grid {
    display: grid;
    grid-template-columns: repeat(3, 416px);
    justify-content: center;
    gap: 40px;
}

.dcard {
    width: 416px;
    height: 408px;                /* Figma: 416 × 408 */
    border-radius: 16px;          /* Figma: raio do canto 16 */
    border: 0.5px solid rgba(0, 0, 0, 0.1);   /* Figma: traçado preto 10% */
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;            /* Figma: recortar conteúdo */
    transition: transform 0.3s ease-out;   /* Figma: hover · 300ms · desaceleração */
}

/* efeito de passagem do mouse (Figma: escala 1.05x) */
.dcard:hover {
    transform: scale(1.05);
}

.dcard__title {
    font-family: "Inter", sans-serif;
    font-size: 26px;
    line-height: 1.19;           /* 119% */
    font-weight: 700;            /* Bold */
    letter-spacing: -0.005em;    /* -0.5% */
    color: #FFFFFF;
}

/* ---- Card laranja ---- */
.dcard--orange {
    background-color: #FF6D0A;
    justify-content: center;
    padding-left: 24px;          /* menos padding à esquerda */
}

.dcard__text {
    margin-top: 22px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.4;            /* 140% */
    font-weight: 500;           /* Medium */
    letter-spacing: -0.005em;   /* -0.5% */
    color: #FFFFFF;
}

/* ---- Card de números ---- */
.dcard--stats {
    background-color: #E5E5E5;
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px;
}

.dcard__stats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dcard__stats li {
    font-family: "Inter", sans-serif;
    font-size: 35px;
    line-height: 1.1;            /* 110% */
    font-weight: 300;           /* Light */
    letter-spacing: -0.01em;    /* -1% */
    color: #292929;
    white-space: nowrap;        /* nunca quebra a linha */
}

.dcard__stats strong {
    font-weight: 700;           /* Bold */
}

/* ---- Card escuro ---- */
.dcard--dark {
    background-color: #292929;
    padding-left: 24px;
    padding-right: 24px;
}

.dcard__title--orange {
    color: #FF6D0A;
    font-size: 45px;
    line-height: 1.05;           /* 105% */
    font-weight: 400;            /* Regular */
    letter-spacing: -0.02em;     /* -2% */
}

.dcard__title--orange strong {
    font-weight: 700;            /* Bold */
}

.dcard__checks {
    list-style: none;
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dcard__checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.4;            /* 140% */
    font-weight: 500;           /* Medium */
    letter-spacing: -0.005em;   /* -0.5% */
    color: #FF6D0A;
}

.dcard__checks strong {
    font-weight: 800;           /* Extra Bold */
}

.dcard__checks .dcard__check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.dcard__btn {
    margin-top: auto;             /* cola no rodapé do card */
    background-color: #FF6D0A;
    color: #292929;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 22px;
    border-radius: 10px;
    transition: background-color 0.2s;
}

.dcard__btn:hover {
    background-color: #ff7d24;
}

/* ============ POR QUE MARKETING DE AFILIADOS (Hero 2) ============ */
.motivo {
    display: flex;
    background-color: #222222;
}

.motivo__left {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding: 90px 56px;
}

.motivo__content {
    width: fit-content;   /* bloco encolhe pro tamanho do texto */
    max-width: 640px;
    margin: 0 auto;       /* bloco centralizado na coluna */
    text-align: left;     /* cada linha começa na mesma reta à esquerda */
}

.motivo__title {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    line-height: 1.1;            /* 110% */
    font-weight: 500;           /* Medium */
    letter-spacing: -0.02em;    /* -2% */
    color: #FFFFFF;
}

.motivo__title strong {
    font-weight: 800;           /* Extra Bold */
}

.motivo__subtitle {
    margin-top: 26px;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 1.19;          /* 119% */
    font-weight: 800;           /* Extra Bold */
    letter-spacing: -0.005em;   /* -0.5% */
    color: #FFFFFF;
}

.motivo__text {
    margin-top: 18px;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 1.19;          /* 119% */
    font-weight: 500;           /* Medium */
    letter-spacing: -0.005em;   /* -0.5% */
    color: #FFFFFF;
}

.motivo__actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;   /* botões começam à esquerda, sem centralizar */
    gap: 16px;
    margin-top: 40px;
}

.motivo__btn-fill {
    background-color: #FF6D0A;
    color: #FFFFFF;
    border: none;                /* remove a borda transparente do .btn base */
    border-radius: 12px;         /* Figma: raio 12 */
    padding: 12px 16px;          /* Figma: 12 vertical · 16 horizontal */
    font-weight: 500;            /* Medium */
    line-height: 1.45;           /* 145% */
    letter-spacing: -0.005em;    /* -0.5% */
}

.motivo__btn-fill:hover {
    background-color: #ff7d24;
}

.motivo__btn-outline {
    color: #FFFFFF;
    border: 2px solid #FFFFFF;   /* Figma: traçado branco 2px (interno) */
    border-radius: 12px;
    padding: 10px 14px;          /* 12/16 menos a borda de 2px → mesma altura do botão laranja */
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.005em;
}

.motivo__btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.motivo__right {
    flex: 0 0 50%;
}

.motivo__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============ MARCAS ============ */
.marcas {
    background-color: #F4F4F4;
    padding: 70px 0;
}

.marcas__title {
    font-family: "Konkhmer Sleokchher", sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #222222;
    text-align: center;
}

/* carrossel infinito dos logos */
.marcas__marquee {
    overflow: hidden;
    margin-top: 48px;
}

/* Figma: Marquee · Esquerda · Velocidade 50 (px/s) · Infinito · Não pausar
   Faixa desloca 2 conjuntos (2598px) por ciclo → 2598 / 50 ≈ 52s */
.marcas__logos {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marcas-scroll 44s linear infinite;
}

@keyframes marcas-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marca {
    width: auto;
    object-fit: contain;
    margin-right: 72px;   /* espaçamento (não usar gap: quebraria o loop) */
    flex-shrink: 0;
}

.marca--1 { width: 156px; height: 84px; }
.marca--2 { width: 252px; height: 84px; }
.marca--3 { width: 116px; height: 84px; }
.marca--4 { width: 237px; height: 84px; }
.marca--5 { width: 178px; height: 81.82px; }

/* ============ QUEM PODE SER AFILIADO ============ */
.afiliado {
    background-color: #FF6D0A;
    min-height: 949px;           /* Figma: altura da seção */
    padding: 80px 0 100px;
}

.afiliado__title {
    font-family: "Inter", sans-serif;
    font-size: 56px;
    line-height: 1.1;            /* 110% */
    font-weight: 400;           /* Regular */
    letter-spacing: -0.02em;    /* -2% */
    color: #FFFFFF;
    text-align: center;
}

.afiliado__title strong {
    font-weight: 700;           /* Bold */
}

.afiliado__subtitle {
    margin-top: 14px;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    line-height: 1.1;           /* 110% */
    font-weight: 400;           /* Regular */
    letter-spacing: -0.02em;    /* -2% */
    color: #FFFFFF;
    text-align: center;
}

/* carrossel infinito dos cards
   Figma: Marquee · Esquerda · Velocidade 100 (px/s) · Infinito · Pausar ao passar
   Conjunto = 4 x 362.67 + 4 x 48 = 1642.68px → faixa desloca 2 conjuntos (3285px)
   3285 / 100 ≈ 33s */
.afiliado__marquee {
    overflow: hidden;
    margin-top: 48px;
}

.afiliado__grid {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: afiliado-scroll 33s linear infinite;
}

.afiliado__marquee:hover .afiliado__grid {
    animation-play-state: paused;
}

@keyframes afiliado-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.card {
    flex: 0 0 362.67px;
    width: 362.67px;
    height: 514px;
    display: flex;
    flex-direction: column;
    background-color: #222222;
    border-radius: 16px;
    padding: 28px 22.8px;
    margin-right: 48px;   /* espaçamento (não usar gap: quebraria o loop) */
}

.card__title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-left: 20px;
}

.card__desc {
    margin-top: 12px;
    margin-left: 20px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.card__img {
    margin-top: auto;          /* empurra a imagem para baixo do card */
    align-self: center;
    width: 317px;
    height: 303px;
    border-radius: 14px;
    object-fit: cover;
}

/* ============ VAMOS FALAR SOBRE CRESCIMENTO ============ */
.crescimento {
    background-color: #F2F2F2;
    padding: 90px 0;
}

.crescimento__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.crescimento__title {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    line-height: 1.2;           /* 120% */
    font-weight: 700;           /* Bold */
    letter-spacing: -0.02em;    /* -2% */
    color: #292929;
}

.crescimento__text {
    margin-top: 24px;
    font-family: "Inter", sans-serif;
    font-size: 35px;
    line-height: 1.2;           /* 120% */
    font-weight: 400;           /* Regular */
    letter-spacing: -0.02em;    /* -2% */
    color: #292929;
}

.crescimento__text strong {
    font-weight: 600;           /* Semibold */
}

.crescimento__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    background-color: #FF6D0A;
    border-radius: 16px;         /* Figma: raio 16 */
    padding: 24px;               /* Figma: 24 */
}

.step__title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 1;             /* 100% */
    font-weight: 600;           /* Semi Bold */
    letter-spacing: -0.015em;   /* -1.5% */
    color: #FFFFFF;
}

.step__desc {
    margin-top: 16px;           /* Figma: gap 16 */
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;           /* Medium */
    letter-spacing: -0.005em;
    color: #FFFFFF;
}

/* ============ ANUNCIE COM A ACTIONPAY (Hero 3) ============ */
.anuncie {
    background-color: #222222;
    padding: 80px 0 90px;
    text-align: center;
}

.anuncie__title {
    font-family: "Inter", sans-serif;
    font-size: 64px;
    line-height: 1.1;           /* 110% */
    font-weight: 700;           /* Bold */
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

/* "actionpay" como logo (~306×81) */
.anuncie__brand {
    display: inline-block;
    font-size: 72px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.anuncie__brand--orange {
    color: #FF6D0A;
}

.anuncie__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.badge {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;           /* Medium */
    line-height: 1.45;          /* 145% */
    letter-spacing: -0.005em;   /* -0.5% */
    color: #FFFFFF;
    border: 2px solid #FFFFFF;  /* traçado branco 2px (interno) */
    border-radius: 12px;        /* Figma: raio 12 */
    padding: 10px 14px;         /* 12/16 menos a borda de 2px → altura 50 */
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);  /* Figma: hover · mola · 200ms */
}

/* efeito de passagem do mouse (Figma: escala 0.98x) */
.badge:hover {
    transform: scale(0.98);
}

.badge--filled {
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    padding: 12px 16px;
}

.anuncie__banner {
    position: relative;
    margin-top: 44px;
    border-radius: 20px;
    overflow: hidden;
}

.anuncie__banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.anuncie__social {
    position: absolute;
    right: 2.5%;
    bottom: 3.5%;
    display: flex;
    gap: 16px;
}

.anuncie__social a {
    display: inline-flex;
    color: #FFFFFF;
    transition: opacity 0.2s;
}

.anuncie__social a:hover {
    opacity: 0.75;
}

.anuncie__social svg {
    width: 34px;
    height: 34px;
}

/* ============ COMO FUNCIONA / NOSSAS CAMPANHAS ============ */
.funciona {
    background-color: #F2F3F2;
    padding: 90px 0 110px;
}

.funciona__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 0;
    align-items: center;
    max-width: 1600px;   /* impede o vão gigante em telas largas */
    margin: 0 auto;
}

/* coluna esquerda encosta à esquerda, direita encosta à direita */
.funciona__grid > *:nth-child(odd) {
    justify-self: start;
}

.funciona__grid > *:nth-child(even) {
    justify-self: end;
}

.funciona__text {
    max-width: 680px;
}

.funciona__title {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #000000;
}

.funciona__desc {
    margin-top: 18px;
    font-family: "Inter", sans-serif;
    font-size: 26px;
    line-height: 1.55;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.55);
}

.funciona__highlight {
    margin-top: 18px;
    font-family: "Inter", sans-serif;
    font-size: 26px;
    line-height: 1.55;
    font-weight: 700;
    color: #FF6D0A;
}

.funciona__media img {
    width: 624px;
    height: 432px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.btn--blue {
    margin-top: 28px;
    background-color: #010583;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.btn--blue:hover {
    background-color: #00046A;
}

.btn--blue-outline {
    margin-top: 28px;
    color: #010583;
    border: 1px solid #010583;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.btn--blue-outline:hover {
    background-color: #010583;
    color: #FFFFFF;
}

/* ============ ANIMAÇÕES DE ENTRADA/SAÍDA (scroll reveal) ============ */
.reveal {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 1.3s ease, transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal--d1 { --reveal-delay: 0.25s; }
.reveal--d2 { --reveal-delay: 0.5s; }
.reveal--d3 { --reveal-delay: 0.75s; }

/* respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============ POR QUE DIVULGAR ============ */
.porque {
    background-color: #FF6D0A;
    padding: 90px 0;
    text-align: center;
}

.porque__title {
    font-family: "Inter", sans-serif;
    font-size: 64px;
    line-height: 1.15;
    font-weight: 700;
    color: #FFFFFF;
}

.porque__desc {
    max-width: 820px;
    margin: 24px auto 0;
    font-family: "Inter", sans-serif;
    font-size: 23px;
    line-height: 1.55;
    font-weight: 500;
    color: #FFFFFF;
}

/* ============ NOSSOS AFILIADOS (DEPOIMENTOS) ============ */
.depoimentos {
    background-color: #FFFFFF;
    padding: 80px 0 100px;
}

.depoimentos__title {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
}

.depoimentos__subtitle {
    margin-top: 10px;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.55);
}

/* carrossel infinito dos depoimentos
   Figma: Marquee · Esquerda · Velocidade 50 (px/s) · Infinito · Pausar ao passar
   Conjunto = 4 x 367 + 4 x 70 = 1748px → faixa desloca 2 conjuntos (3496px)
   3496 / 50 ≈ 70s */
.depoimentos__marquee {
    overflow: hidden;
    margin-top: 48px;
}

.depoimentos__grid {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: depoimentos-scroll 70s linear infinite;
}

.depoimentos__marquee:hover .depoimentos__grid {
    animation-play-state: paused;
}

@keyframes depoimentos-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.depo {
    flex: 0 0 367px;
    width: 367px;
    min-height: 299px;
    border-radius: 16px;
    padding: 28px 26px;
    text-align: left;
    margin-right: 70px;   /* espaçamento (não usar gap: quebraria o loop) */
}

.depo__name {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.depo__role {
    margin-top: 4px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.85;
}

.depo__text {
    margin-top: 18px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

/* cores dos cards */
.depo--orange { background-color: #FF6D0A; color: #FFFFFF; }
.depo--dark   { background-color: #222222; color: #FFFFFF; }
.depo--light  { background-color: #D9D9D9; color: #222222; }
.depo--blue   { background-color: #010583; color: #FFFFFF; }

/* ============ SOBRE NÓS ============ */
.sobre {
    background-color: #FF6D0A;
    padding: 40px 0 70px;
}

.sobre__banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.sobre__banner img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* "ap | Sobre nós" sobreposto ao banner */
.sobre__banner img.sobre__banner-titulo {
    position: absolute;
    right: 5%;
    bottom: 6%;
    width: 47.8%;        /* 653 / 1366 */
    height: auto;        /* mantém 134 / 550 */
    border-radius: 0;
}

.sobre__bottom {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-top: 44px;
}

.sobre__social {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    margin-left: 7.5em;
    color: #FFFFFF;
}

.sobre__social svg {
    width: 64px;
    height: 64px;
}

.sobre__text {
    max-width: 620px;
    margin-left: auto;   /* alinha o fim do texto com o fim da imagem */
}

.sobre__text p {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
    color: #FFFFFF;
}

.sobre__text p + p {
    margin-top: 22px;
}

.sobre__text strong {
    font-weight: 700;
}

/* ============ AJUSTE DESKTOP < 1500px ============ */
@media (max-width: 1500px) {
    .hero__pitch-title {
        font-size: 44px;
    }

    .hero__pitch-desc {
        font-size: 26px;
    }
}

/* =====================================================================
   ============================ MOBILE (≤1024px) =======================
   Versão mobile própria da LP nova — reorganiza tudo em coluna.
   ===================================================================== */
@media (max-width: 1024px) {

    .container {
        padding: 0 24px;
    }

    /* textos longos quebram naturalmente no mobile (ignora os <br> do desktop) */
    .hero__pitch-desc br,
    .motivo__text br,
    .afiliado__subtitle br,
    .crescimento__text br,
    .step__desc br {
        display: none;
    }

    /* ---------------- HERO ---------------- */
    .hero {
        padding-bottom: 48px;
        overflow: hidden;         /* clipa o banner ampliado (sem scroll lateral) */
    }

    .header {
        padding: 16px 0;
    }

    .header__inner {
        justify-content: space-between;
        gap: 10px;
    }

    .logo img {
        width: 110px;
    }

    .nav {
        gap: 14px;
        flex-shrink: 0;
    }

    .nav a {
        font-size: 13px;
    }

    .social {
        gap: 12px;
        flex-shrink: 0;
    }

    .social svg {
        width: 20px;
        height: 20px;
    }

    /* banner ampliado (zoom), ancorado à esquerda, edge-to-edge e sem cantos */
    .hero__banner {
        width: 140vw;             /* zoom: ~40% maior que a tela */
        margin: 12px 0 0 -24px;   /* left encosta na borda; direita é clipada pela seção */
        border-radius: 0;
    }

    .hero__banner img {
        border-radius: 0;
    }

    .hero__pitch {
        margin-top: 32px;
        padding: 18px 0;
    }

    .hero__pitch-title {
        font-size: 30px;
    }

    .hero__pitch-desc {
        font-size: 18px;
    }

    /* ---------------- CARDS DESTAQUE ---------------- */
    .destaques {
        padding: 48px 0;
    }

    .destaques__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dcard {
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 32px 28px;
    }

    .dcard--stats {
        padding-left: 18px;
        padding-right: 18px;
    }

    .dcard--dark {
        padding-left: 22px;
        padding-right: 22px;
    }

    .dcard__stats li {
        font-size: 24px;
    }

    /* checks do card escuro: fonte menor pra "Você só paga..." caber em 1 linha */
    .dcard__checks li {
        font-size: 13px;
    }

    /* espaço entre a última frase e o botão (altura do card é automática no mobile) */
    .dcard__btn {
        margin-top: 24px;
    }

    /* ---------------- MARCAS ---------------- */
    .marcas {
        padding: 48px 0;
    }

    .marcas__title {
        font-size: 24px;
    }

    .marcas__marquee {
        margin-top: 32px;
    }

    .marcas__logos .marca {
        width: auto;
        height: 44px;
        margin-right: 40px;
    }

    /* ---------------- POR QUE TANTAS MARCAS (Hero 2) ---------------- */
    /* mobile: imagem no topo, conteúdo embaixo */
    .motivo {
        flex-direction: column-reverse;
    }

    .motivo__left {
        flex: auto;
        padding: 40px 24px 48px;
    }

    .motivo__content {
        width: 100%;
    }

    .motivo__title {
        font-size: 30px;
    }

    .motivo__subtitle {
        font-size: 18px;
    }

    .motivo__text {
        font-size: 16px;
    }

    .motivo__right {
        flex: auto;
    }

    .motivo__right img {
        height: auto;
    }

    /* botões empilhados e ocupando a largura toda */
    .motivo__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-top: 32px;
    }

    .motivo__btn-fill,
    .motivo__btn-outline {
        width: 100%;
        text-align: center;
    }

    /* ---------------- O AFILIADO PERFEITO ---------------- */
    .afiliado {
        min-height: 0;
        padding: 56px 0 64px;
    }

    .afiliado__title {
        font-size: 34px;
    }

    .afiliado__subtitle {
        font-size: 16px;
    }

    .afiliado__marquee {
        margin-top: 32px;
    }

    .afiliado__grid {
        animation-duration: 22s;
    }

    .card {
        flex: 0 0 240px;
        width: 240px;
        height: 340px;
        padding: 18.5px 15px;
        margin-right: 32px;
    }

    .card__title {
        font-size: 16px;
        margin-left: 13px;
    }

    .card__desc {
        font-size: 12px;
        margin-left: 13px;
        margin-top: 8px;
    }

    .card__img {
        width: 210px;
        height: 201px;
    }

    /* ---------------- VAMOS FALAR SOBRE CRESCIMENTO ---------------- */
    .crescimento {
        padding: 56px 0;
    }

    .crescimento__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .crescimento__title {
        font-size: 32px;
    }

    .crescimento__text {
        font-size: 18px;
    }

    .step__title {
        font-size: 20px;
    }

    .step__desc {
        font-size: 15px;
    }

    /* ---------------- ANUNCIE COM A ACTIONPAY ---------------- */
    .anuncie {
        padding: 56px 0 64px;
    }

    .anuncie__title {
        font-size: 36px;
    }

    .anuncie__brand {
        font-size: 40px;
    }

    /* selos empilhados full-width, com o mesmo padrão de cores do desktop
       (branco preenchido nos 1º/3º · contorno branco nos 2º/4º) */
    .anuncie__badges {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-top: 28px;
    }

    .badge {
        width: 100%;
        text-align: center;
    }

    .anuncie__social svg {
        width: 26px;
        height: 26px;
    }
}

/* ============ CELULARES PEQUENOS (≤560px) ============ */
@media (max-width: 560px) {

    .header__inner {
        gap: 8px;
    }

    .logo img {
        width: 92px;
    }

    .nav {
        gap: 10px;
    }

    .nav a {
        font-size: 12px;
    }

    .social {
        gap: 10px;
    }

    .social svg {
        width: 18px;
        height: 18px;
    }

    .hero__pitch-title {
        font-size: 24px;
    }

    .hero__pitch-desc {
        font-size: 15px;
    }

    .dcard__stats li {
        font-size: 20px;
    }

    .motivo__title {
        font-size: 26px;
    }

    .afiliado__title,
    .crescimento__title {
        font-size: 26px;
    }

    .anuncie__title {
        font-size: 28px;
    }

    .anuncie__brand {
        font-size: 32px;
    }

    .step__title {
        font-size: 18px;
    }

    .badge {
        font-size: 18px;
    }
}
