/* ===== Fonts: Nexa ===== */
@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Book.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-XBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa';
    src: url('assets/font/Nexa-Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand palette (oficial) */
    --color-primary: #D4432C;
    --color-cream: #FFF5D9;
    --color-mauve: #695C57;
    --color-ink: #0A0D0C;

    /* Variações derivadas */
    --color-primary-hover: #b8381f;          /* hover dos CTAs primários */
    --color-primary-light: #D97055;          /* fim do gradiente nos cards de plataforma */
    --color-soft-bg: #F1EBE0;                /* fundo intermediário (method/agency) */
    --color-tab-active: #EED7CA;             /* aba ativa do método (peach claro) */
    --color-input-border: #2a2c2b;           /* borda dos inputs sobre fundo cream */
    --color-placeholder: #8a8a8a;            /* texto de placeholder */
    --color-white: #ffffff;

    /* Aliases semânticos */
    --color-text: var(--color-ink);
    --color-text-muted: var(--color-mauve);
    --color-bg: var(--color-white);

    /* Typography — Nexa para títulos com fallback Montserrat */
    --font-heading: 'Nexa', 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

    --radius-pill: 999px;
    --radius-md: 14px;

    --transition: 0.25s ease;

    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 6px 18px -8px rgba(212, 67, 44, 0.6);
}

.btn--primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
}

.btn--block {
    width: 100%;
}

/* ===== Hero ===== */
.hero {
    background-color: var(--color-cream);
    padding: 1.5rem 0 3rem;
    overflow: hidden;
}

.hero__header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero__logo {
    display: inline-flex;
    align-items: center;
}

.hero__logo-img {
    height: 32px;
    width: auto;
}

.hero__visual {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 2rem;
}

.hero__photo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero__content {
    text-align: center;
    padding: 0;
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    margin-bottom: 1.25rem;
}

.hero__title-top {
    display: block;
    font-size: clamp(22px, 8vw, 35px);
    white-space: nowrap;
}

.hero__title-accent {
    display: block;
    color: var(--color-primary);
    font-size: clamp(34px, 12.5vw, 53px);
    font-weight: 900;
    line-height: 1;
    margin: 0.1em 0;
    white-space: nowrap;
}

.hero__title-muted {
    display: block;
    color: var(--color-mauve);
    font-weight: 800;
    font-size: clamp(19px, 6.6vw, 29px);
}

.hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--color-mauve);
    text-align: justify;
    margin: 0 auto 1.75rem;
    max-width: 34ch;
    padding: 0 1.5rem;
}

.hero__subtitle strong {
    color: var(--color-ink);
    font-weight: 700;
}

.hero__button {
    /* Botão da hero não ocupa toda a largura do container — 77% bate com o design mobile */
    width: 77%;
}

.hero__cta {
    width: 100%;
}

/* ===== Form Section ===== */
.form-section {
    background-color: var(--color-cream);
    padding: 2rem 0 3rem;
}

.form-section__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-card-wrapper {
    /* Largura fixa em mobile (form-card 360px + 2rem de padding lateral = 419px aproximado).
       Em telas estreitas o cap `calc(100% - 1rem)` impede transbordamento. */
    position: relative;
    width: 419px;
    max-width: calc(100% - 1rem);
    padding: 0 2rem;
}

.form-section__stripes {
    position: absolute;
    inset: 0;
    background-image: url('assets/Pattern Losango Laranja 1.svg');
    background-repeat: repeat;
    background-size: 500px auto;
    mix-blend-mode: multiply;
    pointer-events: none;
    border-radius: 28px;
}

.form-card {
    position: relative;
    background-image: url('assets/Formulário.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    border-radius: 28px;
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    box-shadow: 0 12px 32px -16px rgba(10, 13, 12, 0.5);
    z-index: 1;
}

.form-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.form-card__title strong {
    font-weight: 900;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.form__field {
    display: block;
    position: relative;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form__field input,
.form__field select {
    width: 100%;
    height: 44px;
    padding: 0 1.25rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-input-border);
    background-color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-ink);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form__field input::placeholder {
    color: var(--color-placeholder);
}

.form__field input:focus,
.form__field select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 67, 44, 0.2);
}

.form__field--select {
    position: relative;
}

.form__field--select::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-mauve);
    border-bottom: 2px solid var(--color-mauve);
    transform: translateY(-75%) rotate(45deg);
    pointer-events: none;
}

.form__field--select select {
    padding-right: 2.75rem;
    cursor: pointer;
    color: var(--color-ink);
}

/* Enquanto nada está selecionado (option placeholder com value="") o select fica :invalid */
.form__field--select select:invalid {
    color: var(--color-placeholder);
}

.form__field--select select option {
    color: var(--color-ink);
}

/* ===== Combobox (Cidade) ===== */
.form__field--combo {
    position: relative;
}

.form__field--combo input {
    padding-right: 2.75rem;
}

/* Combobox somente-seleção (Faturamento) — input readonly se comporta como botão */
.form__field--combo input[readonly] {
    cursor: pointer;
    caret-color: transparent;
}

.form__field-chevron {
    position: absolute;
    right: 0;
    top: 0;
    width: 2.75rem;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    z-index: 2;
}

.form__field-chevron::before {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-mauve);
    border-bottom: 2px solid var(--color-mauve);
    transform: translateY(-25%) rotate(45deg);
    transition: transform var(--transition);
}

.form__field--combo.is-open .form__field-chevron::before {
    transform: translateY(25%) rotate(-135deg);
}

.form__combo-list {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    max-height: 220px;
    overflow-y: auto;
    background: var(--color-cream);
    border: 1px solid var(--color-input-border);
    border-radius: 14px;
    list-style: none;
    margin: 0;
    padding: 0.35rem 0;
    z-index: 20;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.4);
}

.form__combo-list[hidden] {
    display: none;
}

.form__combo-list li {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--color-ink);
    cursor: pointer;
}

.form__combo-list li:hover,
.form__combo-list li.is-active {
    background: rgba(212, 67, 44, 0.12);
}

.form__combo-list li.is-empty {
    color: var(--color-placeholder);
    cursor: default;
    font-style: italic;
}

/* Estado de erro nos campos (aplicado via JS quando submit falha) */
.form__field input.has-error,
.form__field select.has-error {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 67, 44, 0.25);
}

/* Mensagem de erro inline */
/* === Campo Endereço com Google PlaceAutocompleteElement (web component) === */
/* Subtexto secundário do dropdown de endereço (Places via proxy backend) —
   "Av. Paulista" em negrito + ", São Paulo - SP" em cinza */
.form__combo-secondary {
    color: var(--color-mauve);
    font-weight: 400;
}

/* Dropdown legado (`.pac-container`) — mantido caso a API legada ainda seja
   ativada por algum caminho. Z-index alto para não ficar atrás do header. */
.pac-container {
    z-index: 100000 !important;
    border-radius: 12px;
    border: 1px solid var(--color-input-border);
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.35);
    margin-top: 4px;
    font-family: var(--font-body);
}

.pac-item {
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    color: var(--color-ink);
    cursor: pointer;
}

.pac-item:hover,
.pac-item-selected {
    background-color: rgba(212, 67, 44, 0.1);
}

.pac-item-query {
    color: var(--color-primary);
    font-weight: 600;
}

.pac-matched {
    font-weight: 700;
}

.form__error {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-primary);
    background-color: rgba(212, 67, 44, 0.12);
    border: 1px solid rgba(212, 67, 44, 0.35);
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
}

.form__error[hidden] {
    display: none;
}

/* Botão submit com spinner */
.form__submit {
    margin-top: 0.5rem;
    height: 48px;
    position: relative;
    transition: opacity var(--transition);
}

.form__submit[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.form__submit-spinner {
    display: none;
    width: 18px;
    height: 18px;
    margin-left: 0.6rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: var(--color-white);
    animation: form-spin 0.7s linear infinite;
}

.form__submit.is-loading .form__submit-spinner {
    display: inline-block;
}

@keyframes form-spin {
    to { transform: rotate(360deg); }
}

/* Tela de "obrigado" exibida após envio bem-sucedido do formulário */
.form-thank-you {
    text-align: center;
    padding: 2.5rem 1.25rem;
    max-width: 480px;
    margin: 0 auto;
    animation: form-thank-you-fade 0.4s ease-out;
}

.form-thank-you__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    line-height: 1.1;
    color: var(--color-ink);
    margin-bottom: 1rem;
}

.form-thank-you__text {
    color: var(--color-mauve);
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
}

.form-thank-you__text strong {
    color: var(--color-primary);
    font-weight: 800;
}

.form-thank-you__small {
    color: var(--color-mauve);
    font-size: 0.85rem;
    margin-bottom: 0.85rem;
}

@keyframes form-thank-you-fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form-section__note {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    line-height: 1.45;
    color: var(--color-ink);
    text-align: center;
    max-width: 28ch;
}

.form-section__note strong {
    font-weight: 700;
}

.form-section__accent {
    color: var(--color-primary);
    font-weight: 800;
}

/* ===== Method Section ===== */
.method {
    background-color: var(--color-cream);
}

.method__header {
    background-color: var(--color-ink);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transform: translateY(-100%);
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0;
    pointer-events: none;
}

.method__header.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.method__header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.method__logo img {
    margin-left: 1.2rem;
    height: 40px;
    width: auto;
    /* logo é PNG colorido (laranja); invertendo cor → branco para combinar com o header escuro */
    filter: brightness(0) invert(1);
}

.method__header-cta {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    transition: background-color var(--transition);
}

.method__header-cta strong {
    font-weight: 800;
    margin-left: 0.25rem;
}

.method__header-cta:hover {
    background-color: var(--color-primary-hover);
}

.method__container {
    background-color: var(--color-soft-bg);
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.method__intro {
    text-align: center;
    margin-bottom: 2rem;
}

.method__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.6rem, 6vw, 2rem);
    color: var(--color-ink);
    margin-bottom: 0.75rem;
}

.method__badge {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.6rem, 6vw, 2rem);
    padding: 0.4rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 6px 14px -8px rgba(0, 0, 0, 0.25);
    margin-bottom: 1.25rem;
}

.method__subtitle {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-mauve);
    max-width: 36ch;
    margin: 0 auto;
}

.method__subtitle strong {
    color: var(--color-ink);
    font-weight: 700;
}

.method__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    max-width: 320px;
    margin: 0 auto 1.5rem;
}

.method__tab {
    border: none;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 10px -4px rgba(212, 67, 44, 0.45);
    transition: background-color var(--transition), color var(--transition), transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.method__tab:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.05);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.35);
}

.method__tab.is-active {
    background-color: var(--color-tab-active);
    color: var(--color-primary);
}

.method__tab.is-active:hover {
    background-color: var(--color-tab-active);
    transform: scale(1.05);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.35);
}

.method__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.method-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 8px 20px -14px rgba(0, 0, 0, 0.25);
}

.method-card[hidden] {
    display: none;
}

.method-card__week {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.4rem;
}

.method-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-ink);
    text-align: center;
    margin-bottom: 1rem;
}

.method-card__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.method-card__list li {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--color-ink);
    padding-left: 0.7rem;
    position: relative;
}

.method-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-ink);
}

/* ===== Services Section ===== */
.services {
    background-color: var(--color-cream);
    padding: 3rem 0;
    overflow: hidden;
}

.services__header {
    text-align: center;
    margin-bottom: 2rem;
}

.services__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 8vw, 2.6rem);
    color: var(--color-ink);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.services__subtitle {
    color: var(--color-mauve);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 32ch;
    margin: 0 auto;
}

.services__subtitle strong {
    color: var(--color-primary);
    font-weight: 800;
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
}

@media (min-width: 600px) {
    .services__list {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
}

.service-card {
    width: 100%;
}

.service-card__banner {
    display: block;
    height: auto;
}

.service-card--left .service-card__banner {
    position: relative;
    right: 20px;
}

.service-card--right .service-card__banner {
    position: relative;
    left: 20px;
}

.service-card__desc {
    color: var(--color-mauve);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    padding: 0 2.5rem;
}

.service-card--right .service-card__desc {
    text-align: right;
}

/* ===== Agency Section ===== */
.agency {
    background-color: var(--color-soft-bg);
    padding: 3rem 0;
}

.agency__header {
    text-align: center;
    margin-bottom: 2rem;
}

.agency__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.1;
    color: var(--color-ink);
    margin-bottom: 0.75rem;
}

.agency__title-accent {
    display: block;
    color: var(--color-primary);
}

.agency__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    line-height: 1.35;
    color: var(--color-mauve);
    max-width: 22ch;
    margin: 0 auto;
    font-weight: 500;
}

.agency__subtitle strong {
    color: var(--color-ink);
    font-weight: 800;
}

.agency__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
}

.agency-card {
    display: flex;
    flex-direction: column;
}

.agency-card__img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.agency-card__desc {
    color: var(--color-mauve);
    font-size: 0.85rem;
    line-height: 1.45;
    margin-top: 0.75rem;
    padding: 0 0.25rem;
}

.agency-card__desc strong {
    color: var(--color-ink);
    font-weight: 700;
}

/* ===== Platform Section ===== */
.platform {
    background-color: var(--color-cream);
    padding: 0 0 3rem;
}

.platform__banner {
    /* Respiro entre a seção anterior (cream) e o banner escuro */
    margin-top: 50px;
    width: 100%;
    height: auto;
    display: block;
}

.platform__subtitle {
    margin: 2rem auto;
    text-align: center;
    color: var(--color-mauve);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 32ch;
}

.platform__subtitle strong {
    color: var(--color-ink);
    font-weight: 700;
}

.platform__dashboard {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.platform__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.platform-feature {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1.05;
    background-image: linear-gradient(to right, var(--color-primary), var(--color-primary-light));
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 16px -10px rgba(0, 0, 0, 0.3);
}

.platform-feature__icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.platform-feature__icon img {
    width: 60%;
    max-width: 90px;
    height: auto;
}

.platform-feature__label {
    background-color: var(--color-ink);
    color: var(--color-white);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.15;
    padding: 0.85rem 0.5rem;
    margin: 0;
}

/* ===== Evidence Section ===== */
.evidence {
    position: relative;
    background-color: var(--color-ink);
    color: var(--color-white);
    padding: 3rem 0;
    overflow: hidden;
}

.evidence::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/evidence/pattern-t-bege.svg');
    background-repeat: repeat;
    background-size: 440% auto;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.evidence__container {
    position: relative;
    z-index: 1;
}

/* Stats slider (marquee infinito) */
.evidence__stats {
    margin: 0 -1rem 2.5rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.evidence__stats-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: stats-marquee 28s linear infinite;
}

@keyframes stats-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.evidence__stat {
    flex: 0 0 auto;
    width: 220px;
    height: auto;
    border-radius: 14px;
    user-select: none;
    -webkit-user-drag: none;
}

/* Title */
.evidence__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.75rem, 6vw, 2.2rem);
    color: var(--color-white);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Testimonials slider */
.evidence__testimonials {
    --card-w: clamp(240px, 70%, 320px);
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.evidence__testimonials-track {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    padding: 0.5rem calc((100% - var(--card-w)) / 2);
    scroll-behavior: smooth;
}

.evidence__testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 var(--card-w);
    aspect-ratio: 9 / 16;
    background-color: var(--color-ink);
    border-radius: 22px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: scale(0.78);
    opacity: 0.55;
    transform-origin: center center;
    will-change: transform, opacity;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* iframe do YouTube preenche o card inteiro */
.testimonial iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.testimonial.is-center {
    box-shadow: 0 22px 48px -14px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Navegação: estado desabilitado nas pontas (carrossel linear, sem wrap) */
.evidence__nav[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.evidence__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition);
    z-index: 3;
}

.evidence__nav--prev {
    left: 0;
}

.evidence__nav--next {
    right: 0;
}

.evidence__nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.evidence__nav svg {
    width: 18px;
    height: 18px;
}

/* ===== Exclusivity Section ===== */
.exclusivity {
    background-color: var(--color-ink);
    padding: 30px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
}

.exclusivity__card {
    width: 128vw;
    max-width: none;
    height: auto;
    display: block;
}

@media (min-width: 900px) {
    .exclusivity__card {
        width: 100vw;
    }
}

/* ===== FAQ Section ===== */
.faq {
    background-color: var(--color-ink);
    padding: 3rem 0 3.5rem;
    color: var(--color-white);
}

.faq__title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.01em;
    margin: 0 auto 2rem;
    font-size: clamp(2.2rem, 9vw, 3rem);
    width: fit-content;
    text-align: left;
}

.faq__title-top,
.faq__title-accent {
    display: block;
}

.faq__title-top {
    color: var(--color-white);
}

.faq__title-accent {
    color: var(--color-primary);
}

.faq__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    overflow: hidden;
    transition: background-color var(--transition);
}

.faq-item.is-open {
    background-color: rgba(255, 255, 255, 0.06);
}

.faq-item__trigger {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.95rem 1rem;
    background: none;
    border: none;
    color: var(--color-white);
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
}

.faq-item__icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    inset: 0;
    transition: opacity 0.25s ease;
}

.faq-item__icon-minus {
    opacity: 0;
}

.faq-item.is-open .faq-item__icon-plus {
    opacity: 0;
}

.faq-item.is-open .faq-item__icon-minus {
    opacity: 1;
}

.faq-item__question {
    flex: 1;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq-item__answer p {
    padding: 0 1rem 1rem 3rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.5;
}

.faq-item.is-open .faq-item__answer {
    max-height: 500px;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-ink);
    color: var(--color-white);
    padding: 1.5rem 0 2rem;
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 50px;            /* respiro lateral do bloco brand em mobile */
}

.footer__logo {
    width: 140px;
    height: auto;
    flex: 0 0 auto;
}

.footer__brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-left: 45px;          /* alinha tagline+sub à direita do logo */
}

.footer__tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.15;
    color: var(--color-cream);
}

.footer__sub {
    font-size: 0.76rem;
    line-height: 1.35;
    color: rgba(255, 245, 217, 0.55);
}

.footer__divider {
    width: 100%;
    height: 1px;
    border: 0;
    background-color: rgba(255, 255, 255, 0.12);
    margin: 0.25rem 0;
}

.footer__top {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-white);
    transition: opacity var(--transition);
    align-self: center;
}

.footer__top:hover {
    opacity: 0.75;
}

.footer__top-icon {
    width: 32px;
    height: auto;
}

.footer__legal {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    align-self: center;
    text-align: center;
    margin-top: 0.5rem;
}

.footer__copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
    align-self: center;
    text-align: center;
}

/* ===== Desktop adaptation ===== */
@media (min-width: 900px) {
    .hero {
        padding: 2rem 0 5rem;
    }

    .hero__header {
        justify-content: flex-start;
        margin-bottom: 3rem;
    }

    .hero__logo-img {
        height: 44px;
    }

    .hero__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero__visual {
        order: 2;
        max-width: 480px;
        margin: 0;
    }

    .hero__photo {
        transform: scale(1.35);
        transform-origin: left;
    }

    .hero__content {
        order: 1;
        text-align: left;
        padding: 0;
    }

    .hero__title-top {
        font-size: clamp(2.2rem, 3.8vw, 2.95rem);
    }

    .hero__title-accent {
        font-size: clamp(3.5rem, 6vw, 4.75rem);
    }

    .hero__title-muted {
        font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    }

    .hero__subtitle {
        margin: 0 0 2rem;
        font-size: 1.3rem;
        max-width: 48ch;
        text-align: justify;
        text-align-last: left;
        padding: 0;
    }

    .hero__cta {
        margin: 0;
    }

    .btn--block {
        width: auto;
        min-width: 280px;
    }

    .form-section {
        padding: 4rem 0 6rem;
    }

    .form-card-wrapper {
        width: auto;
        max-width: none;
    }

    .form-card {
        max-width: 520px;
        padding: 2.5rem 2.5rem;
    }

    .form-card__title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .form__submit {
        width: 100%;
    }

    .form-section__note {
        margin-top: 2rem;
        font-size: 1.15rem;
        max-width: 36ch;
    }

    /* Method section desktop */
    .method {
        background-color: var(--color-soft-bg);
    }

    .method__header {
        padding: 1rem 0;
    }

    .method__header-cta {
        font-size: 1rem;
        padding: 0.7rem 1.4rem;
    }

    .method__container {
        background-color: transparent;
        padding-top: 4rem;
        padding-bottom: 5rem;
    }

    /* Em desktop os 4 cards aparecem juntos — abas não são necessárias. */
    .method__tabs {
        display: none;
    }

    .method__title {
        font-size: 2.5rem;
    }

    .method__badge {
        font-size: 2.5rem;
        padding: 0.5rem 2rem;
    }

    .method__subtitle {
        font-size: 1.1rem;
        max-width: 48ch;
    }

    .method__cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        align-items: stretch;
    }

    .method-card,
    .method-card[hidden] {
        display: block;
        max-width: none;
    }

    .method-card__list {
        grid-template-columns: 1fr;
    }

    /* Services desktop */
    .services {
        padding: 5rem 0;
    }

    .services__header {
        margin-bottom: 3rem;
    }

    .services__title {
        font-size: 3rem;
    }

    .services__subtitle {
        font-size: 1.1rem;
        max-width: 48ch;
    }

    .services__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 2rem;
    }

    .service-card {
        display: flex;
        flex-direction: column;
    }

    .service-card--left .service-card__banner,
    .service-card--right .service-card__banner {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        position: static;
    }

    .service-card--left {
        order: 1;
    }

    .service-card--right {
        order: 2;
    }

    .service-card__desc,
    .service-card--right .service-card__desc {
        text-align: left;
        padding: 0 1rem;
        margin-top: 0.75rem;
    }

    /* Agency section desktop */
    .agency {
        padding: 5rem 0;
    }

    .agency__header {
        margin-bottom: 3rem;
    }

    .agency__title {
        font-size: 3rem;
    }

    .agency__title-accent {
        display: inline;
        margin-left: 0.5rem;
    }

    .agency__subtitle {
        font-size: 1.5rem;
        max-width: 36ch;
    }

    .agency__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .agency-card__desc {
        font-size: 0.95rem;
    }

    /* Platform desktop */
    .platform {
        padding-bottom: 5rem;
    }

    .platform__subtitle {
        font-size: 1.2rem;
        max-width: 56ch;
        margin: 3rem auto;
    }

    .platform__dashboard {
        max-width: 45%;
        margin: 0 auto 3rem;
        display: block;
    }

    .platform__features {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .platform-feature__label {
        font-size: 1.05rem;
    }

    /* Evidence desktop */
    .evidence {
        padding: 5rem 0;
    }

    .evidence::before {
        background-size: 115% auto;
    }

    .evidence__stats {
        margin: 0 0 3.5rem;
    }

    .evidence__stats-track {
        gap: 1.5rem;
    }

    .evidence__stat {
        width: 280px;
    }

    .evidence__title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .evidence__nav {
        width: 48px;
        height: 48px;
    }

    .evidence__nav svg {
        width: 24px;
        height: 24px;
    }

    /* FAQ desktop */
    .faq {
        padding: 5rem 0 5.5rem;
    }

    .faq .container {
        max-width: 820px;
    }

    .faq__title {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
    }

    .faq-item__trigger {
        padding: 1.15rem 1.5rem;
        font-size: 1.05rem;
        gap: 1rem;
    }

    .faq-item__icon {
        width: 26px;
        height: 26px;
    }

    .faq-item__answer p {
        padding: 0 1.5rem 1.25rem 3.75rem;
        font-size: 0.95rem;
    }

    /* Footer desktop */
    .footer {
        padding: 2.5rem 0 2.5rem;
    }

    .footer__container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem 2rem;
    }

    .footer__brand {
        display: contents;
    }

    .footer__logo {
        order: 1;
        width: 88px;
    }

    .footer__brand-text {
        order: 2;
        margin-left: auto;
    }

    .footer__tagline {
        font-size: 1.2rem;
    }

    .footer__sub {
        font-size: 0.85rem;
    }

    .footer__divider {
        order: 3;
        flex-basis: 100%;
        margin: 0.75rem 0 0.25rem;
    }

    .footer__top {
        order: 4;
        font-size: 1.05rem;
        display: flex;
        justify-content: center;
        flex-basis: 100%;
    }

    .footer__legal {
        order: 5;
        width: 100%;
        flex-basis: 100%;
    }

    .footer__copy {
        order: 6;
        width: 100%;
        flex-basis: 100%;
    }
}

