:root {
    --blue: #1a52a0;
    --blue-dark: #143f7d;
    --blue-light: rgba(26, 82, 160, 0.08);
    --orange: #e87722;
    --orange-dark: #cf6618;
    --orange-light: rgba(232, 119, 34, 0.1);
    --white: #fff;
    --gray-50: #f7f9fc;
    --gray-100: #eef2f7;
    --gray-200: #dde4ee;
    --gray-400: #8fa3bc;
    --gray-600: #5a6f87;
    --text: #1e3a5f;
    --shadow-sm: 0 2px 8px rgba(26, 82, 160, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 82, 160, 0.1);
    --radius: 10px;
    --radius-lg: 16px;
    --container: 1140px;
    --font: 'Montserrat', system-ui, sans-serif;
    --font-alt: 'Poppins', system-ui, sans-serif;
}

.section-eyebrow--center {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img,
video,
iframe,
embed {
    max-width: 100%;
}

img {
    height: auto;
    display: block;
}

section {
    max-width: 100%;
    overflow-x: clip;
}

a {
    color: inherit;
}

/* ── HEADER ── */

.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.main-nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}

.header-logo-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--orange);
    padding: 10px 14px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-sm);
    min-width: 120px;
}

.header-logo-box img {
    height: 48px;
    width: auto;
    max-width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu a {
    text-decoration: none;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
}

.nav-menu a:hover {
    color: var(--white);
    background: var(--blue);
}

.mobile-menu-toggle {
    display: none;
    background: var(--blue-light);
    border: none;
    color: var(--blue);
    font-size: 20px;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: var(--radius);
    line-height: 1;
}

.social-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-divider {
    display: none;
}

/* ── SEÇÕES (títulos compartilhados) ── */

.section-eyebrow {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.section-eyebrow.section-eyebrow--center,
.bf-header .section-eyebrow,
.franquia-title-box .section-eyebrow,
.modelo-header .section-eyebrow,
.depoimentos-header .section-eyebrow {
    display: block;
    text-align: center;
    width: 100%;
}

.franquia-title-box,
.modelo-header,
.depoimentos-header,
.bf-header {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.bf-header {
    margin-bottom: clamp(32px, 5vw, 48px);
}

.franquia-title-box,
.modelo-header,
.depoimentos-header,
.bf-title {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.franquia-title-box h2,
.modelo-title,
.depoimentos-titulo,
.bf-title {
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
    font-weight: 800;
    color: var(--blue);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.title-decor-line {
    width: 48px;
    height: 3px;
    background: var(--orange);
    margin: 16px auto 0;
    border-radius: 2px;
}

.modelo-subtitle {
    margin-top: 10px;
    color: var(--gray-600);
    font-size: 1.05rem;
}

.bf-title span {
    font-weight: 500;
    color: var(--gray-600);
}

/* ── FRANQUIA / FORMULÁRIO ── */

.franquia-cadastro-section {
    padding: clamp(40px, 5vw, 56px) clamp(16px, 4vw, 32px);
    background: var(--gray-50);
}

.franquia-title-box {
    margin-bottom: clamp(24px, 4vw, 36px);
}

.franquia-content-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(28px, 4vw, 48px);
}

.fachada-loja-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    flex: 0 1 480px;
    max-width: 480px;
    width: 100%;
}

.fachada-loja-box img {
    width: 100%;
    height: auto;
    max-height: 320px;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}

.form-cadastro-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 0 1 400px;
    max-width: 400px;
    width: 100%;
}

.form-cadastro-header {
    background: var(--blue);
    padding: 20px 22px;
    color: var(--white);
}

.form-cadastro-header h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.35rem);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.35;
    color: var(--white);
}

.form-cadastro-header p {
    font-size: 0.925rem;
    opacity: 0.9;
    margin: 0;
}

.form-cadastro-body {
    padding: 20px 22px;
    flex: 1;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.form-input-field {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-alt);
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input-field:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-light);
}

.form-input-field:disabled {
    background: var(--gray-50);
    color: var(--gray-400);
    cursor: not-allowed;
}

.form-row-twin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
    font-size: 11px;
}

.select-wrapper select {
    appearance: none;
    padding-right: 36px;
}

.radio-box-container {
    background: var(--orange-light);
    border: 1px solid rgba(232, 119, 34, 0.2);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 20px;
}

.radio-box-container > p {
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
    font-size: 13px;
}

.radio-options-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-options-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    color: var(--text);
}

.radio-options-group input[type="radio"] {
    accent-color: var(--orange);
}

.btn-submit-form {
    width: 100%;
    padding: 15px 24px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    font-family: var(--font);
}

.btn-submit-form:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 119, 34, 0.35);
}

/* ── MARCAS (carrossel) ── */

.marcas-parceiras-container {
    max-width: var(--container);
    margin: clamp(32px, 5vw, 48px) auto 0;
    text-align: center;
}

.marcas-intro-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 20px;
}

.marcas-carousel {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marcas-carousel-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: marcas-scroll 40s linear infinite;
}

.marcas-carousel-track:hover {
    animation-play-state: paused;
}

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

.marca-item-logo {
    flex: 0 0 auto;
    width: 140px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
}

.marca-item-logo img {
    max-height: 36px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* ── MODELO ── */

.modelo-negocio-section {
    padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 32px);
    background: var(--white);
}

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

.modelo-header {
    margin-bottom: clamp(36px, 5vw, 56px);
}

.modelo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    margin-bottom: clamp(40px, 6vw, 64px);
    align-items: stretch;
}

.modelo-imagem-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.modelo-imagem {
    width: 100%;
    min-height: 340px;
    object-fit: cover;
}

.modelo-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.modelo-info-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 36px);
}

.modelo-info-titulo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
}

.modelo-info-descricao {
    color: var(--gray-600);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.modelo-info-subtitulo {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.modelo-preco-card {
    background: var(--white);
    border-left: 3px solid var(--orange);
    padding: 18px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 20px;
}

.modelo-preco-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.modelo-preco-valor {
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--blue);
}

.modelo-valores-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
    margin-bottom: 6px;
}

.modelo-valores-text {
    color: var(--gray-600);
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.modelo-valores-obs {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-600);
}

.modelo-valores-obs i {
    color: var(--orange);
    margin-top: 2px;
}

.modelo-diferenciais-title {
    text-align: center;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 28px;
}

.modelo-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.modelo-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.modelo-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.modelo-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
}

.modelo-card-icon svg {
    width: 100%;
    height: 100%;
}

.modelo-card-titulo {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
    line-height: 1.35;
}

.modelo-card-texto {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.55;
}

/* ── DEPOIMENTOS ── */

.depoimentos-section {
    padding: clamp(48px, 6vw, 72px) clamp(16px, 4vw, 32px);
    background: var(--gray-50);
}

.depoimentos-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(32px, 5vw, 56px);
}

.depoimentos-mapa-box {
    flex: 0 1 320px;
    max-width: 320px;
    text-align: center;
}

.depoimentos-videos-box {
    flex: 0 1 400px;
    max-width: 400px;
    width: 100%;
}

.depoimentos-texto-principal,
.depoimentos-texto-destaque {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--blue);
    letter-spacing: -0.02em;
}

.depoimentos-texto-destaque {
    color: var(--orange);
}

.depoimentos-texto-subtitulo,
.depoimentos-texto-final {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-top: 8px;
}

.depoimentos-titulo {
    margin-bottom: 20px;
}

.depoimentos-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
}

.depoimentos-video-placeholder {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 280px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--blue-dark);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.depoimentos-video-placeholder iframe,
.depoimentos-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    display: block;
}

.depoimentos-video-item {
    min-width: 0;
    max-width: 100%;
}

.depoimentos-mapa-img {
    max-width: 100%;
    max-height: 280px;
    width: auto;
    margin: 0 auto;
}

.depoimentos-mapa-box,
.depoimentos-videos-box {
    min-width: 0;
}

/* ── BENEFÍCIOS ── */

.bf-section {
    padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 32px);
    background: var(--white);
}

.bf-title {
    margin-bottom: 0;
}

.bf-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.bf-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.bf-card:hover {
    background: var(--white);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.bf-img-wrap {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.bf-img-wrap img {
    max-height: 52px;
    width: auto;
    margin: 0 auto;
}

.bf-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.4;
}

/* ── FAQ ── */

.faq-wrap {
    padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 32px);
    max-width: var(--container);
    margin: 0 auto;
    background: var(--gray-50);
}

.faq-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
    margin-bottom: 36px;
}

.faq-top-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--blue);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.faq-top-text h2 em {
    color: var(--orange);
    font-style: normal;
}

.faq-top-text p {
    color: var(--gray-600);
}

.faq-top-video p {
    margin-top: 10px;
    font-size: 12px;
    color: var(--gray-600);
    text-align: center;
}

.faq-top-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--blue-dark);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

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

.faq-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    border-radius: 1px;
    margin-bottom: 24px;
    opacity: 0.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fi {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fi[open] {
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
}

.fi summary {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--blue);
    font-size: 14px;
}

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

.fi-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--blue);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
}

.fi-q {
    flex: 1;
    min-width: 0;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.fi-arrow {
    flex-shrink: 0;
    color: var(--orange);
    transition: transform 0.2s;
}

.fi[open] .fi-arrow {
    transform: rotate(180deg);
}

.fi-body {
    padding: 0 20px 20px 66px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

.fi-body strong {
    color: var(--blue);
}

/* ── FOOTER ── */

.ft {
    background: var(--blue);
    color: var(--white);
}

.ft-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(40px, 6vw, 56px) clamp(16px, 4vw, 32px) clamp(28px, 4vw, 40px);
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: clamp(24px, 4vw, 32px);
}

.ft-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    padding: 10px 14px;
    border-radius: var(--radius);
    text-decoration: none;
}

.ft-logo-box img {
    height: 48px;
    width: auto;
    max-width: 120px;
    filter: none;
    opacity: 1;
}

.ft-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--orange);
}

.ft-col ul {
    list-style: none;
}

.ft-col ul li {
    margin-bottom: 8px;
}

.ft-col ul a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.ft-col ul a:hover {
    color: var(--white);
}

.ft-contact-item,
.ft-addr {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.ft-contact-item i,
.ft-addr i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.ft-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.ft-contact-item a:hover {
    color: var(--white);
}

.ft-social {
    display: flex;
    gap: 10px;
}

.ft-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s, transform 0.2s;
}

.ft-social a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 18px clamp(16px, 4vw, 32px);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

/* ── PÁGINA /final ── */

.page-success {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(48px, 8vw, 80px) clamp(16px, 4vw, 32px);
    background: var(--gray-50);
}

.success-card {
    width: 100%;
    max-width: 560px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: clamp(40px, 6vw, 56px) clamp(24px, 4vw, 40px);
    text-align: center;
    border-top: 4px solid var(--orange);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.success-card h1 {
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
}

.success-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 10px;
}

.success-card .success-note {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.btn-primary-pm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary-pm:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.success-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
}

.success-step {
    flex: 1;
    min-width: 120px;
    max-width: 150px;
}

.success-step-num {
    width: 28px;
    height: 28px;
    background: var(--blue);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    margin: 0 auto 8px;
}

.success-step p {
    font-size: 11px;
    margin: 0;
    color: var(--gray-600);
}

/* ── HERO (se existir) ── */

.hero-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(32px, 5vw, 48px) clamp(16px, 4vw, 32px);
}

.hero-top-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero-text-center h1 {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--blue);
    text-transform: uppercase;
    line-height: 1.25;
}

.hero-text-center .price-value {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--orange);
}

.hero-bottom-bar {
    background: var(--blue);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.img-casal-box,
.img-loja-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.franquia-content-grid > *,
.modelo-grid > *,
.depoimentos-container > *,
.depoimentos-videos-grid > *,
.bf-grid > *,
.faq-top > *,
.marcas-carousel {
    min-width: 0;
}

@media (max-width: 1100px) {
    .modelo-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .bf-grid { grid-template-columns: repeat(3, 1fr); }
    .ft-grid { grid-template-columns: repeat(3, 1fr); }
    .ft-logo { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
    .mobile-menu-toggle { display: block; flex-shrink: 0; }

    .site-header {
        position: sticky;
        overflow-x: clip;
    }

    .main-nav-container {
        position: relative;
        flex-wrap: wrap;
        align-items: center;
        min-height: 64px;
        gap: 12px;
    }

    .header-logo-box {
        min-width: auto;
        padding: 8px 12px;
    }

    .header-logo-box img {
        height: 42px;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        flex-basis: 100%;
        width: 100%;
        order: 3;
        position: static;
        background: var(--white);
        padding: 8px 0 4px;
        margin: 0;
        border-top: 1px solid var(--gray-200);
        gap: 4px;
        box-shadow: none;
    }

    .nav-menu.active { display: flex; }

    .nav-menu a {
        width: 100%;
        border-radius: var(--radius);
        font-size: 15px;
        padding: 12px 14px;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        color: var(--white);
        background: var(--blue);
    }

    .social-actions {
        margin-left: auto;
    }

    .fachada-loja-box {
        flex: 1 1 100%;
        max-width: 480px;
    }

    .form-cadastro-box {
        flex: 1 1 100%;
        max-width: 480px;
    }

    .modelo-grid,
    .faq-top {
        grid-template-columns: 1fr;
    }

    .depoimentos-container {
        flex-direction: column;
    }

    .depoimentos-mapa-box,
    .depoimentos-videos-box {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .faq-top {
        display: flex;
        flex-direction: column;
    }

    .faq-top-video {
        order: 1;
    }

    .faq-top-text {
        order: 2;
        text-align: center;
    }

    .fachada-loja-box img {
        max-height: 300px;
    }

    .hero-top-block { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .form-row-twin,
    .depoimentos-videos-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .depoimentos-video-placeholder {
        max-height: min(62vh, 440px);
    }

    .depoimentos-texto-principal,
    .depoimentos-texto-destaque {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .depoimentos-header {
        max-width: 100%;
    }

    .fachada-loja-box img {
        min-height: auto;
        max-height: 320px;
    }

    .form-cadastro-body,
    .form-cadastro-header {
        padding: 20px;
    }

    .fi-body {
        padding: 0 18px 18px 18px;
    }

    .fi summary {
        padding: 14px 16px;
        font-size: 13px;
    }

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

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

    .marcas-carousel-track { animation-duration: 32s; }

    .faq-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .main-nav-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .header-logo-box img { height: 38px; }

    .franquia-cadastro-section,
    .modelo-negocio-section,
    .depoimentos-section,
    .bf-section {
        padding-left: 14px;
        padding-right: 14px;
    }

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

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

    .bf-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

    .bf-card { padding: 16px 10px; }

    .depoimentos-videos-grid { max-width: 260px; }

    .depoimentos-video-placeholder { max-height: min(58vh, 400px); }
}

@media (prefers-reduced-motion: reduce) {
    .marcas-carousel-track {
        animation: none;
    }
}
