/* =================================================================
   SORRIX FRANQUIAS — LANDING PAGE V2
   Identidade visual baseada no manual da marca Sorrix
   Fontes: Cabin (heading), Orbitron (display), Nunito Sans (body)
   ================================================================= */

/* ============================================================
   1) RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: "Nunito Sans", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   2) DESIGN TOKENS
   ============================================================ */
:root {
    --purple-900: #2a0438;
    --purple-800: #380850;
    --purple-700: #4e0d69;
    --purple-600: #6a1f8a;
    --purple-100: #f5ecf9;

    --blue: #00a7e1;
    --blue-soft: #cdeefa;
    --pink: #cb2b99;
    --yellow: #f4c300;

    --gray-900: #1a1a1a;
    --gray-700: #4a4a4a;
    --gray-500: #999899;
    --gray-200: #e8e8e8;
    --gray-100: #f4f4f5;
    --gray-50:  #fafafa;

    --font-display: "Orbitron", "Cabin", system-ui, sans-serif;
    --font-heading: "Cabin", system-ui, sans-serif;
    --font-body: "Nunito Sans", system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
    --shadow-purple: 0 12px 32px rgba(78,13,105,0.28);

    --transition: 180ms ease-out;
}

/* ============================================================
   3) LAYOUT — CONTAINERS, GRID HELPERS
   ============================================================ */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
section { padding: clamp(48px, 7vw, 96px) 0; position: relative; }

/* ============================================================
   4) TIPOGRAFIA UTILITÁRIA
   ============================================================ */
.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
}
.eyebrow--light { color: var(--blue-soft); }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 16px;
    max-width: 800px;
}
.section-title em {
    font-style: normal;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 800;
    background: linear-gradient(90deg, var(--purple-700) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0;
    font-size: 0.85em;
    display: inline-block;
}
.section-title--light { color: #fff; }
.section-title--light em {
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-lead {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0 0 32px;
    max-width: 680px;
}
.section-lead--light { color: rgba(255,255,255,0.85); }

/* ============================================================
   5) BOTÕES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
    text-decoration: none;
    line-height: 1;
}
.btn--primary {
    background: var(--purple-700);
    color: #fff;
    box-shadow: var(--shadow-purple);
}
.btn--primary:hover {
    background: var(--purple-800);
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(78,13,105,0.42);
}
/* Continuar (step 1 do form) — rosa da marca Sorrix */
#btnNext {
    background: var(--pink);
    box-shadow: 0 12px 30px rgba(203,43,153,0.32);
}
#btnNext:hover {
    background: #a8217d;
    box-shadow: 0 16px 38px rgba(203,43,153,0.42);
}
.btn--secondary {
    background: #fff;
    color: var(--purple-700);
    border: 2px solid var(--purple-700);
}
.btn--secondary:hover {
    background: var(--purple-700);
    color: #fff;
    transform: translateY(-2px);
}
.btn--ghost {
    background: transparent;
    color: var(--purple-700);
    box-shadow: none;
}
.btn--ghost:hover { background: var(--purple-100); }
.btn--block { width: 100%; }
.btn--large { padding: 18px 36px; font-size: 16px; }

/* ============================================================
   5b) SECTION CTA (reutilizável — chamadas no meio da página)
   ============================================================ */
.section-cta {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    position: relative;
}
.section-cta::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--purple-700) 0%, var(--blue) 100%);
    margin-bottom: 8px;
}
.section-cta__lead {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--purple-700);
    margin: 0;
    max-width: 600px;
    line-height: 1.35;
}
.section-cta .btn {
    box-shadow: 0 12px 30px rgba(78, 13, 105, 0.25);
}
.section-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(78, 13, 105, 0.35);
}
/* Variante para fundos escuros (KPIs) */
.section-cta--on-dark::before {
    background: linear-gradient(90deg, var(--blue-soft) 0%, var(--blue) 100%);
}
.section-cta--on-dark .section-cta__lead {
    color: #fff;
}
.section-cta--on-dark .btn {
    box-shadow: 0 12px 30px rgba(205, 238, 250, 0.18);
}
@media (max-width: 560px) {
    .section-cta { margin-top: 36px; gap: 14px; }
    .section-cta__lead { font-size: 16px; }
}

/* ============================================================
   6) HERO (SEÇÃO 1)
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(155deg, var(--purple-700) 0%, var(--purple-800) 50%, var(--purple-900) 100%);
    color: #fff;
    overflow: hidden;
    padding: 32px 0 96px;
    min-height: 92vh;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(0,167,225,0.22) 0%, transparent 42%),
        radial-gradient(circle at 88% 88%, rgba(0,167,225,0.16) 0%, transparent 48%),
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: cover, cover, 60px 60px, 60px 60px;
    z-index: 0;
    pointer-events: none;
}
/* Watermark "S" da marca + losangos azuis decorativos (do manual) */
.hero::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 60vmin;
    height: 60vmin;
    max-width: 700px;
    max-height: 700px;
    background-image: url("assets/selo-sorrix.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.035;
    filter: brightness(0) invert(1);
    z-index: 0;
    pointer-events: none;
}
@media (max-width: 880px) {
    .hero::before { right: -25%; opacity: 0.03; }
}
/* Criativo da clínica Sorrix no fundo (topo-direito), blendado */
.hero__photo {
    position: absolute;
    top: 0;
    right: 0;
    width: min(46%, 600px);
    height: 100%;
    background-image: url("assets/CRIATIVO PAREDE SORRIX.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}
@media (max-width: 980px) {
    .hero__photo {
        width: min(80%, 460px);
        height: auto;
        aspect-ratio: 1080 / 1350;
        opacity: 0.4;
    }
}
.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.hero__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: clamp(48px, 6vw, 80px);
}
.hero__logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
}
.hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
}
.hero__pill-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #00d68f;
    box-shadow: 0 0 0 3px rgba(0,214,143,0.25);
    animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(0,214,143,0.25); }
    50% { box-shadow: 0 0 0 6px rgba(0,214,143,0.08); }
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(32px, 4vw, 72px);
    align-items: start;
}
@media (max-width: 980px) {
    .hero__grid { grid-template-columns: 1fr; }
}
.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.8vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin: 0 0 24px;
    color: #fff;
}
.hero__title-em {
    font-style: normal;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 800;
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-soft) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-size: 0.88em;
    letter-spacing: 0;
}
.hero__lead {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    max-width: 580px;
    margin: 0 0 16px;
}
.hero__tagline {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--blue);
    margin: 0 0 40px;
    font-weight: 800;
}
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 560px) {
    .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero__stat { padding: 0 4px; }
    .hero__stat:not(:first-child)::before { left: -4px; }
    .hero__stat-icon { margin-bottom: 10px; }
}
.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
}
.hero__stat:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 78%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 167, 225, 0.5) 50%, transparent 100%);
}
.hero__stat-icon {
    width: clamp(46px, 6vw, 72px);
    height: clamp(46px, 6vw, 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    background: rgba(0, 167, 225, 0.12);
    border: 1px solid rgba(0, 167, 225, 0.35);
    box-shadow: 0 0 28px rgba(0, 167, 225, 0.18);
    margin-bottom: 16px;
}
.hero__stat-icon svg {
    width: 52%;
    height: 52%;
    display: block;
}
.hero__stat strong {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.hero__stat span {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255,0.7);
}
.hero__stat em {
    font-style: normal;
    color: var(--blue);
    font-weight: 700;
}

/* ============================================================
   7) FORM CARD (no Hero)
   ============================================================ */
.form-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 3vw, 32px);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px -20px rgba(0,0,0,0.4);
}
.form-card__title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.form-card__subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0 0 20px;
}
.form-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.form-steps__dot {
    flex: 1;
    height: 4px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.16);
    transition: background var(--transition);
}
.form-steps__dot.is-active { background: var(--blue); }
.form-step { display: none; }
.form-step.is-active { display: block; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.form-input, .form-select {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--transition), background var(--transition);
}
.form-input::placeholder { color: rgba(255,255,255,0.5); }
.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--blue);
    background: rgba(255,255,255,0.1);
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%23ffffffaa' d='M6 8L0 0h12z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-select option { background: var(--purple-800); color: #fff; }
.form-error {
    display: none;
    color: #ff7a85;
    font-size: 12px;
    margin-top: 6px;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input,
.form-group.has-error .form-select { border-color: #ff7a85; }
.form-helper, .form-note {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    line-height: 1.4;
}
.form-note { padding: 8px 12px; background: rgba(0,167,225,0.1); border-left: 2px solid var(--blue); border-radius: 4px; }
.form-loading { color: var(--blue); display: none; }
.form-loading.is-visible { display: block; }

/* ============================================================
   7.5) LIDERANÇA + VÍDEO + MANIFESTO (SEÇÃO 2)
   ============================================================ */
.leadership {
    background: linear-gradient(180deg, #fff 0%, var(--gray-50) 60%, #fff 100%);
    color: var(--gray-900);
    position: relative;
    overflow: hidden;
}
.leadership::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vmin;
    height: 50vmin;
    max-width: 540px;
    max-height: 540px;
    background-image: url("assets/selo-sorrix.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}
.leadership .container { position: relative; z-index: 1; }
.leadership .container {
    position: relative;
    z-index: 1;
}

.leadership__hero {
    position: relative;
    padding: clamp(32px, 5vw, 56px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 167, 225, 0.3);
    background: linear-gradient(165deg, #fff 0%, var(--purple-100) 100%);
    box-shadow: 0 24px 60px -20px rgba(78, 13, 105, 0.15);
    text-align: center;
}
/* Corner brackets — efeito cyber-frame */
.leadership__hero::before,
.leadership__hero::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 56px;
    border: 2px solid var(--blue);
    pointer-events: none;
}
.leadership__hero::before {
    top: -2px;
    left: -2px;
    border-right: 0;
    border-bottom: 0;
    border-top-left-radius: var(--radius-lg);
}
.leadership__hero::after {
    bottom: -2px;
    right: -2px;
    border-left: 0;
    border-top: 0;
    border-bottom-right-radius: var(--radius-lg);
}

.leadership .eyebrow {
    justify-content: center;
    color: var(--blue);
}
.leadership .eyebrow__line {
    background: var(--blue);
}
.leadership__hero .section-title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 720px;
    color: var(--gray-900);
}
.leadership__hero .section-title em {
    background: linear-gradient(90deg, var(--purple-700) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.leadership__hero .section-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 640px;
    color: var(--gray-700);
}
.leadership__hero .section-lead strong { color: var(--purple-700); }

.leadership__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 32px;
    list-style: none;
    padding: 0;
    max-width: 900px;
}
.leadership__pills li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid rgba(78, 13, 105, 0.14);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--gray-700);
    line-height: 1.3;
    box-shadow: 0 2px 8px rgba(78, 13, 105, 0.06);
}
.leadership__pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(0, 167, 225, 0.2);
}
.leadership__pills strong {
    color: var(--purple-700);
    font-weight: 700;
}

.leadership__video {
    margin: 0 auto;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.5);
    background: #000;
}
.leadership__video video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}

.leadership__manifesto {
    margin: clamp(32px, 5vw, 56px) auto 0;
    max-width: 720px;
    background: linear-gradient(165deg, var(--purple-800) 0%, var(--purple-900) 100%);
    border-radius: var(--radius-lg);
    padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 40px);
    text-align: center;
    border: 1px solid rgba(0, 167, 225, 0.2);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.45);
}
.leadership__manifesto-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32), inset 0 -2px 6px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.leadership__manifesto-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.leadership__manifesto-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.leadership__manifesto-title em {
    font-style: normal;
    font-family: var(--font-display);
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 800;
    font-size: 0.88em;
    letter-spacing: 0;
}
.leadership__manifesto-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto 28px;
    max-width: 560px;
}
.leadership__manifesto-text strong {
    color: #fff;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 880px) {
    .leadership__hero { padding: clamp(24px, 4vw, 40px); }
    .leadership__pills { gap: 8px; }
}
@media (max-width: 560px) {
    .leadership__hero {
        padding: 24px 18px;
    }
    .leadership__hero::before,
    .leadership__hero::after {
        width: 32px;
        height: 32px;
    }
    .leadership__pills li {
        font-size: 12.5px;
        padding: 8px 14px;
    }
    .leadership__video { margin-top: 0; border-radius: 12px; max-width: 300px; }
    .leadership__manifesto { padding: 32px 20px; border-radius: 16px; }
    .leadership__manifesto-icon { width: 56px; height: 56px; }
}

/* ============================================================
   8) TRUST STRIP (SEÇÃO 2)
   ============================================================ */
.trust-strip {
    background: #fff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.trust-strip::before,
.trust-strip::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: clamp(120px, 20vw, 280px);
    pointer-events: none;
}
.trust-strip::before {
    top: 0;
    background: linear-gradient(90deg, transparent 0%, var(--blue) 50%, transparent 100%);
    opacity: 0.4;
}
.trust-strip::after {
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, var(--purple-700) 50%, transparent 100%);
    opacity: 0.3;
}
.trust-strip .container { position: relative; z-index: 1; }
.trust-strip__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}
@media (max-width: 720px) {
    .trust-strip__list { grid-template-columns: repeat(2, 1fr); }
}
.trust-strip__list li {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.trust-strip__list strong {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: var(--purple-700);
    letter-spacing: -0.02em;
    line-height: 1;
}
.trust-strip__list span {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.3;
}

/* ============================================================
   9) AUTHORITY / André Tozi (SEÇÃO 3)
   ============================================================ */
.authority {
    background: linear-gradient(180deg, var(--purple-100) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.authority .container { position: relative; z-index: 1; }
.authority__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
@media (max-width: 880px) {
    .authority__inner { grid-template-columns: 1fr; }
}
.authority__photo img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    width: 100%;
    max-height: 600px;
}
.authority__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.authority__metrics li {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.authority__metrics strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--purple-700);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.authority__metrics span {
    font-size: 12px;
    color: var(--gray-700);
}

/* ============================================================
   9.5) INSTITUCIONAL (SEÇÃO 3.5 — vídeo YouTube)
   ============================================================ */
.institutional {
    background: linear-gradient(180deg, #fff 0%, var(--purple-100) 70%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.institutional__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(0, 167, 225, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 88% 80%, rgba(78, 13, 105, 0.08) 0%, transparent 35%);
}
.institutional .container {
    text-align: center;
    position: relative;
    z-index: 1;
}
.institutional .section-title,
.institutional .section-lead {
    margin-left: auto;
    margin-right: auto;
}
.institutional__video {
    position: relative;
    max-width: 960px;
    margin: 32px auto 0;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 32px 80px -20px rgba(78, 13, 105, 0.4),
        0 0 0 1px rgba(78, 13, 105, 0.08);
    background: #000;
}
.institutional__video::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple-700) 100%);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition);
}
.institutional__video:hover::before { opacity: 1; }
.institutional__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: var(--radius-lg);
}
.institutional__cta-wrap {
    margin-top: 40px;
}

/* ============================================================
   10) KPIs (SEÇÃO 4)
   ============================================================ */
.kpis {
    background: linear-gradient(155deg, var(--purple-700) 0%, var(--purple-800) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.kpis::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0,167,225,0.22), transparent 50%);
    pointer-events: none;
}
/* Watermark "S" Sorrix branco (do manual) */
.kpis::after {
    content: "";
    position: absolute;
    top: 8%;
    left: -8%;
    width: 50vmin;
    height: 50vmin;
    max-width: 480px;
    max-height: 480px;
    background-image: url("assets/selo-sorrix.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    filter: brightness(0) invert(1);
    pointer-events: none;
}
.kpis .container { position: relative; z-index: 1; }
.kpis__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}
@media (max-width: 880px) { .kpis__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .kpis__grid { grid-template-columns: 1fr; } }
.kpi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: left;
    transition: transform var(--transition), background var(--transition);
}
.kpi-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
}
.kpi-card__icon {
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 -2px 4px rgba(0, 0, 0, 0.05);
}
.kpi-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.kpi-card__value {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    display: block;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.kpi-card__label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.45;
}

/* ============================================================
   11) AWARDS (SEÇÃO 5)
   ============================================================ */
.awards {
    background: linear-gradient(180deg, #fff 0%, var(--purple-100) 100%);
    text-align: center;
    color: var(--gray-900);
}
.awards .container {
    text-align: center;
    width: 100%;
}
.awards .eyebrow,
.awards .section-title,
.awards .section-lead {
    margin-left: auto;
    margin-right: auto;
}
.awards .eyebrow { color: var(--blue); }
.awards .eyebrow__line { background: var(--blue); }
.awards .section-title {
    text-align: center;
    color: var(--gray-900);
    max-width: 760px;
    margin: 0 auto 16px;
}
.awards .section-title em {
    background: linear-gradient(90deg, var(--purple-700) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.awards .section-lead {
    text-align: center;
    color: var(--gray-700);
    max-width: 680px;
    margin: 0 auto 8px;
}
.awards__banner {
    text-align: center;
    margin-top: 24px;
    width: 100%;
    font-size: 0;
}
.awards__banner img {
    display: inline-block;
    vertical-align: top;
    width: 90%;
    max-width: 480px;
    height: auto;
    border-radius: 16px;
}

/* ============================================================
   12) MODELOS DE FRANQUIA (SEÇÃO 6)
   ============================================================ */
.models {
    background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}
.models .container { position: relative; z-index: 1; }
.models-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 56px);
}
.model-block {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
}
.model-block--reverse {
    grid-template-columns: 1.15fr 0.85fr;
}
.model-block--reverse .model-block__photos { order: 2; }
.model-block--reverse .model-block__info { order: 1; }
@media (max-width: 880px) {
    .model-block,
    .model-block--reverse {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: stretch;
    }
    .model-block--reverse .model-block__photos,
    .model-block--reverse .model-block__info { order: initial; }
}
/* Foto: limita largura no desktop pra não ficar gigante; mobile usa largura total */
.model-block__photos {
    width: 100%;
    max-width: 420px;
    justify-self: center;
    align-self: center;
}
.model-block--reverse .model-block__photos { justify-self: center; }
@media (max-width: 880px) {
    .model-block__photos {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* PHOTO CAROUSEL — scroll-snap nativo (sempre funciona, swipe touch incluso) */
.model-carousel {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--gray-200);
    overflow: hidden;
    line-height: 0;
}
.model-carousel__track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.model-carousel__track::-webkit-scrollbar { display: none; }
.model-carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    display: block;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    user-select: none;
    -webkit-user-drag: none;
}
.model-carousel__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    background: transparent;
    z-index: 2;
    pointer-events: auto;
}
.model-carousel__dot,
.model-carousel__dot:focus,
.model-carousel__dot:focus-visible,
.model-carousel__dot:active,
.model-carousel__dot:hover {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    outline: none !important;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}
.model-carousel__dot {
    background: rgba(255, 255, 255, 0.6);
    transition: background 200ms ease, width 200ms ease;
}
.model-carousel__dot:hover {
    background: rgba(255, 255, 255, 0.9);
}
.model-carousel__dot.is-active {
    background: #ffffff;
    width: 24px;
    border-radius: 999px;
}
.model-carousel__dot::-moz-focus-inner { border: 0; padding: 0; }

/* INFO CARD ROXO */
.model-block__info {
    background: linear-gradient(165deg, var(--purple-700) 0%, var(--purple-800) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3.5vw, 40px);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
}
.model-block--featured .model-block__info {
    background: linear-gradient(165deg, var(--purple-800) 0%, var(--purple-900) 100%);
    border: 1px solid rgba(0, 167, 225, 0.18);
}
.model-block__badge {
    align-self: flex-start;
    background: var(--blue);
    color: #fff;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.model-block__name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.04em;
    margin: 0 0 24px;
    line-height: 1;
    text-transform: uppercase;
}
.model-stats {
    margin: 0 0 24px;
    padding: 0;
}
.model-stats__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.model-stats__row:first-child { padding-top: 0; }
.model-stats__row:last-child { border-bottom: 0; }
.model-stats__row dt {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}
.model-stats__row dd {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    text-align: right;
}
.model-block__perfil {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 24px;
    padding: 14px 16px;
    background: rgba(0, 167, 225, 0.08);
    border-left: 3px solid var(--blue);
    border-radius: 4px;
}
.model-block__perfil strong {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.model-block__info .btn--cta-blue {
    align-self: center;
    width: auto;
    margin-top: auto;
}
@media (max-width: 560px) {
    .model-block__info { padding: 24px 22px; }
    .model-stats__row dt { font-size: 12.5px; }
    .model-stats__row dd { font-size: 0.95rem; }
    .model-block__info .btn--cta-blue { width: 100%; font-size: 12px; padding: 14px 20px; }
}

/* ============================================================
   13) DIFFERENTIATORS (SEÇÃO 7)
   ============================================================ */
.differentiators {
    background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}
.differentiators .container { position: relative; z-index: 1; }
.differentiators__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 880px) { .differentiators__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .differentiators__grid { grid-template-columns: 1fr; } }
/* Cards roxos escuros (alinhado com print de referência) */
.diff-card {
    background: linear-gradient(165deg, var(--purple-700) 0%, var(--purple-800) 100%);
    border: 1px solid rgba(0, 167, 225, 0.18);
    border-radius: var(--radius-md);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    color: #fff;
}
.diff-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(78, 13, 105, 0.35);
}
/* Fotos preenchendo o topo do card (cover, sem padding, aspect 16:10) */
.diff-card__photo {
    width: 100%;
    aspect-ratio: 16 / 10 !important;
    object-fit: cover !important;
    object-position: center;
    background: var(--purple-100);
    display: block;
    transition: transform var(--transition);
    height: auto;
    padding: 0;
}
/* Object-position específico para cada foto (melhor enquadramento) */
.diff-card__photo[src*="andre123"] {
    object-position: center 15% !important;
}
.diff-card__photo[src*="sorrix-card-1"] {
    object-position: center 30% !important;
}
.diff-card__photo[src*="sorrix-card-2"] {
    object-position: center 35% !important;
}
.diff-card__photo[src*="sorrix-card-3"] {
    object-position: center 25% !important;
}
.diff-card__photo[src*="sorrix-card-5"] {
    object-position: center 30% !important;
}

/* Imagens que são LOGOS ou BANNERS (precisam de contain pra não cortar) */
.diff-card__photo[src*="Parceiros"],
.diff-card__photo[src*="selo-sorrix"],
.diff-card__photo[src*="sorrix-card-4"] {
    object-fit: contain !important;
    background: #fff !important;
    padding: 14px !important;
    box-sizing: border-box;
}
/* Card 6 (Fornecedores) — logos um pouco maiores */
.diff-card__photo[src*="sorrix-card-4"] {
    padding: 4px !important;
}

/* Premiações banner — mantém roxo/dourado natural da imagem */
.diff-card__photo[src*="sorrix-expansao-1"] {
    object-fit: contain !important;
    background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%) !important;
    padding: 8px !important;
    box-sizing: border-box;
}
.diff-card:hover .diff-card__photo {
    transform: scale(1.03);
}
.diff-card__body {
    padding: 22px 24px 26px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* Numeração inline tipo "1.", "2." antes do título (igual print) */
.diff-card__num {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    display: inline;
    position: static;
    margin-right: 4px;
}
.diff-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.25;
}
.diff-card p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    margin: 0;
}

/* ============================================================
   14) PRESENCE / MAPA (SEÇÃO 8)
   ============================================================ */
.presence {
    background: linear-gradient(155deg, var(--purple-700) 0%, var(--purple-800) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
/* Watermark "S" sutil */
.presence::before {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -8%;
    width: 60vmin;
    height: 60vmin;
    max-width: 640px;
    max-height: 640px;
    background-image: url("assets/selo-sorrix.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.04;
    filter: brightness(0) invert(1);
    z-index: 0;
    pointer-events: none;
}
.presence .container { position: relative; z-index: 1; }
.presence__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
@media (max-width: 880px) { .presence__inner { grid-template-columns: 1fr; } }
.presence__map img {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

/* ============================================================
   15) JOURNEY / TIMELINE (SEÇÃO 9)
   ============================================================ */
.journey {
    background: linear-gradient(180deg, #fff 0%, var(--purple-100) 100%);
    position: relative;
    overflow: hidden;
}
.journey .container { position: relative; z-index: 1; }
.journey__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 72px;
    list-style: none;
    position: relative;
}
.journey__steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-700) 0%, var(--blue) 50%, var(--blue-soft) 100%);
    z-index: 0;
}
.journey-step {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 56px 18px 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
    z-index: 1;
}
.journey-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.journey-step__num {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-800) 100%);
    line-height: 1;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(78, 13, 105, 0.28);
    border: 4px solid var(--purple-100);
    z-index: 2;
    transition: transform var(--transition), background var(--transition);
}
.journey-step:hover .journey-step__num {
    transform: translateX(-50%) scale(1.08);
    background: linear-gradient(135deg, var(--purple-800) 0%, var(--blue) 100%);
}
.journey-step h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--purple-700);
    margin: 0 0 8px;
}
.journey-step p {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.45;
    margin: 0;
}
@media (max-width: 980px) {
    .journey__steps { grid-template-columns: repeat(3, 1fr); }
    .journey__steps::before { display: none; }
}
@media (max-width: 560px) {
    .journey__steps {
        grid-template-columns: 1fr;
        margin-top: 16px;
        gap: 0;
    }
    .journey__steps::before {
        display: block;
        top: 28px;
        bottom: 28px;
        left: 28px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, var(--purple-700) 0%, var(--blue) 60%, var(--blue-soft) 100%);
    }
    .journey-step {
        background: transparent;
        box-shadow: none;
        padding: 14px 0 14px 72px;
        text-align: left;
        margin-bottom: 4px;
        min-height: 64px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .journey-step:hover {
        transform: none;
        box-shadow: none;
    }
    .journey-step__num {
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 56px;
        height: 56px;
        font-size: 1.15rem;
        border-color: #fff;
    }
    .journey-step:hover .journey-step__num {
        transform: translateY(-50%) scale(1.05);
    }
}

/* ============================================================
   16) TESTIMONIALS (SEÇÃO 10)
   ============================================================ */
.testimonials {
    background: linear-gradient(180deg, #fff 0%, var(--purple-100) 100%);
    position: relative;
    overflow: hidden;
}
/* Aspas decorativas lavanda no fundo */
.testimonials::before,
.testimonials::after {
    content: "\201C"; /* aspas duplas em CSS */
    position: absolute;
    font-family: var(--font-display);
    font-weight: 900;
    color: rgba(78, 13, 105, 0.05);
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
}
.testimonials::before {
    top: 40px;
    left: 4%;
    font-size: clamp(8rem, 16vw, 14rem);
}
.testimonials::after {
    content: "\201D"; /* aspas de fechamento */
    bottom: 40px;
    right: 4%;
    font-size: clamp(8rem, 16vw, 14rem);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 980px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testimonials__grid { grid-template-columns: 1fr; gap: 16px; } }

/* Video Card (formato story / vertical) */
.video-card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: var(--gray-200);
    border: 0;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    display: block;
    width: 100%;
    font: inherit;
    color: inherit;
}
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.video-card__poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--purple-100);
}
.video-card__poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.65) 100%);
}
.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--purple-700);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition), background var(--transition);
    z-index: 2;
}
.video-card__play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}
.video-card:hover .video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}
.video-card__caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    z-index: 2;
}
@media (max-width: 560px) {
    .video-card__caption { font-size: 14px; }
    .video-card__play { width: 56px; height: 56px; }
    .video-card__play svg { width: 24px; height: 24px; }
}

/* CTA azul abaixo dos vídeos (estilo do screenshot) */
.testimonials__cta-wrap {
    margin-top: 40px;
    text-align: center;
}
.btn--cta-blue {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-soft) 100%);
    color: var(--purple-900);
    padding: 18px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 12px 32px rgba(0, 167, 225, 0.32);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.btn--cta-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 167, 225, 0.45);
}
.btn--cta-blue svg {
    width: 18px;
    height: 18px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    box-sizing: content-box;
    color: var(--purple-700);
}

/* Video modal (dialog) */
.video-modal {
    border: 0;
    padding: 0;
    background: transparent;
    max-width: 90vw;
    width: 800px;
    overflow: visible;
}
.video-modal::backdrop {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}
.video-modal__frame {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 85vh;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-modal__frame iframe,
.video-modal__frame video {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
}
.video-modal__close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background var(--transition);
}
.video-modal__close:hover { background: rgba(255, 255, 255, 0.2); }
@media (max-width: 720px) {
    .video-modal { width: 95vw; }
    .video-modal__frame { aspect-ratio: 9 / 16; max-height: 80vh; }
}

/* ============================================================
   17) FAQ (SEÇÃO 11)
   ============================================================ */
.faq {
    background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}
/* "?" decorativos lavanda watermark */
.faq::before,
.faq::after {
    content: "?";
    position: absolute;
    font-family: var(--font-display);
    font-weight: 900;
    color: rgba(78, 13, 105, 0.04);
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
}
.faq::before {
    top: 40px;
    right: 6%;
    font-size: clamp(8rem, 14vw, 12rem);
}
.faq::after {
    bottom: 60px;
    left: 5%;
    font-size: clamp(6rem, 10vw, 9rem);
    transform: rotate(-15deg);
}
.faq .container { position: relative; z-index: 1; }
.faq__list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 880px;
}
.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--purple-700);
    overflow: hidden;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.faq-item:hover {
    border-left-color: var(--blue);
    transform: translateX(2px);
}
.faq-item[open] {
    background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-800) 100%);
    border-color: transparent;
    border-left-color: var(--blue-soft);
    box-shadow: 0 12px 32px rgba(78, 13, 105, 0.28);
    transform: translateX(0);
}
.faq-item summary {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--purple-700);
    font-weight: 700;
    line-height: 1;
    transition: transform var(--transition), color var(--transition);
}
.faq-item[open] summary { color: #fff; }
.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--blue-soft);
}
.faq-item p {
    margin: 0;
    padding: 0 24px 20px;
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.55;
    transition: color var(--transition);
}
.faq-item[open] p { color: rgba(255, 255, 255, 0.92); }

/* ============================================================
   18) CTA FINAL (SEÇÃO 12)
   ============================================================ */
.cta-final {
    background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-800) 50%, var(--purple-900) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
/* Watermark "S" gigante */
.cta-final::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vmin;
    height: 80vmin;
    max-width: 700px;
    max-height: 700px;
    background-image: url("assets/selo-sorrix.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    filter: brightness(0) invert(1);
    z-index: 0;
    pointer-events: none;
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    margin: 0 0 16px;
    color: #fff;
    letter-spacing: -0.02em;
}
.cta-final__title em {
    font-style: normal;
    font-family: var(--font-display);
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    font-size: 0.85em;
}
.cta-final__lead {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin: 0 0 32px;
}

/* ============================================================
   19) FOOTER
   ============================================================ */
.footer {
    background: var(--purple-900);
    color: rgba(255,255,255,0.75);
    padding: 48px 0 0;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    padding-bottom: 32px;
}
@media (max-width: 880px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; max-width: 280px; }
.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 560px) { .footer__cols { grid-template-columns: 1fr; } }
.footer__cols h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 12px;
    font-weight: 700;
}
.footer__cols ul li { margin-bottom: 6px; }
.footer__cols a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: color var(--transition);
}
.footer__cols a:hover { color: #fff; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

/* =================================================================
   ============================================================
   MOBILE OPTIMIZATIONS — Hyper-responsive fine-tuning
   ============================================================
   ================================================================= */

/* Prevenções globais — sem scroll horizontal nunca */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
* { max-width: 100%; }
img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}

/* Touch targets garantidos (acessibilidade mobile) */
@media (hover: none) and (pointer: coarse) {
    .btn, button, a.btn, .hero__pill, .models__tab, .faq-item summary,
    .presence__chips button, .testimonials__arrow, .footer__cols a {
        min-height: 44px;
    }
}

/* ============================================================
   TABLET (≤ 880px)
   ============================================================ */
@media (max-width: 880px) {
    section { padding: clamp(40px, 8vw, 72px) 0; }
    .container { padding: 0 20px; }
    .section-title { font-size: clamp(1.5rem, 5.5vw, 2.4rem); }
    .section-lead { font-size: 0.95rem; }

    /* Hero */
    .hero { padding: 24px 0 56px; min-height: auto; }
    .hero__title { font-size: clamp(2rem, 7vw, 3.2rem); }
    .hero__top { gap: 12px; margin-bottom: 32px; }
    .hero__logo { height: 40px; }
    .hero__pill { font-size: 11px; padding: 7px 14px; }
    .hero__lead { font-size: 0.95rem; }
    .hero__tagline { margin-bottom: 28px; font-size: 11px; }

    /* Authority — reposiciona quote card */
    .authority__photo img { max-height: 480px; }

    /* Modelos featured — reset elevação que quebra layout stack */
    .model-card--featured { transform: none !important; }

    /* Diff cards mantém aspect-ratio 4:3 em todos viewports (consistência) */
}

/* ============================================================
   MOBILE PEQUENO (≤ 560px)
   ============================================================ */
@media (max-width: 560px) {
    section { padding: clamp(36px, 9vw, 56px) 0; }
    .container { padding: 0 16px; }

    /* ALINHAMENTO ESTRATÉGICO MOBILE — eyebrow + section-title + section-lead centralizados em TODAS as seções
       Conteúdo descritivo (parágrafos longos, cards, listas) mantém left por padrão */
    .eyebrow {
        font-size: 11px;
        letter-spacing: 0.14em;
        margin-bottom: 10px;
        justify-content: center;
        text-align: center;
    }
    .section-title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
        margin: 0 auto 12px;
        line-height: 1.18;
        text-align: center;
    }
    .section-lead {
        font-size: 0.95rem;
        margin: 0 auto 24px;
        text-align: center;
    }

    /* Botões — largura cheia + padding menor */
    .btn { padding: 14px 24px; font-size: 13px; }
    .btn--large { padding: 16px 28px; font-size: 14px; }

    /* HERO — TUDO centralizado no mobile (override do desktop que é left) */
    .hero { padding: 20px 0 48px; }
    .hero__inner { padding: 0 16px; }
    .hero__top {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .hero__logo { height: 36px; }
    .hero__copy {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero__title {
        font-size: clamp(1.9rem, 9.5vw, 2.8rem);
        margin: 0 auto 18px;
        text-align: center;
    }
    .hero__lead {
        font-size: 0.95rem;
        line-height: 1.55;
        margin: 0 auto 16px;
        text-align: center;
    }
    .hero__tagline {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero__stats {
        gap: 8px;
        max-width: 100%;
        margin: 0 auto;
    }
    .hero__stat {
        padding: 12px 6px 12px 6px;
        text-align: center;
        border-left: none;
        border-top: 2px solid var(--blue);
        align-items: center;
    }
    .hero__stat strong {
        font-size: clamp(0.85rem, 3.8vw, 1.1rem);
        margin-bottom: 4px;
        line-height: 1.1;
    }
    .hero__stat span {
        font-size: clamp(9px, 2.4vw, 11px);
        line-height: 1.3;
    }
    .hero__stat em {
        font-size: 0.95em;
    }
    /* Remove <br> visual: deixa o texto wrappar naturalmente em larguras pequenas */
    .hero__stat br {
        display: none;
    }

    /* Form */
    .form-card { padding: 22px 20px; border-radius: 16px; }
    .form-card__title { font-size: 17px; }
    .form-card__subtitle { font-size: 13px; }
    .form-input, .form-select { font-size: 14px; padding: 11px 14px; }

    /* Trust strip */
    .trust-strip { padding: 32px 0; }
    .trust-strip__list strong { font-size: 1.5rem; }
    .trust-strip__list span { font-size: 12px; }

    /* Authority — centralizar bloco de texto */
    .authority__inner { gap: 24px; }
    .authority__photo img { border-radius: 16px; max-height: 380px; }
    .authority__copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .authority__metrics { justify-content: center; }

    /* Presence — centralizar bloco de texto */
    .presence__copy { text-align: center; display: flex; flex-direction: column; align-items: center; }

    /* Liderança — manifesto centralizado (já é, garantir) */
    .leadership__manifesto { text-align: center; }
    .leadership__manifesto-text { margin-left: auto; margin-right: auto; }

    /* Models — section title centraliza, mas dentro dos cards mantém left (já é por padrão dentro do .model-block__info) */

    /* Modelos info card — texto descritivo PERFIL mantém left dentro do card (já é) */

    /* Diff cards — texto interno DOS CARDS mantém left por padrão (não afetado pelo .section-title geral) */

    /* FAQ items — pergunta/resposta DENTRO dos items mantém left (textos longos) */
    .faq-item summary, .faq-item p { text-align: left; }
    /* Journey steps mantém center (design original — descrições curtas) */
    .authority__metrics {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }
    .authority__metrics li {
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    .authority__metrics strong { font-size: 1.4rem; margin-bottom: 0; }

    /* Institucional video */
    .institutional__video { border-radius: 14px; }

    /* KPIs */
    .kpi-card { padding: 24px 20px; }
    .kpi-card__icon {
        width: 48px; height: 48px;
        padding: 6px;
    }
    .kpi-card__value { font-size: 1.4rem; }

    /* Awards — 2 colunas em mobile pequeno */
    .awards__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .awards__grid img { max-width: 110px; }

    /* Modelos — mobile stack vertical, MASTER ordem 1 */
    .models__grid { gap: 20px; }
    .model-card { padding: 24px 22px; }
    .model-card--featured {
        order: -1;
        transform: none !important;
    }
    .model-card__name { font-size: 1.6rem; }
    .model-card__price-value { font-size: 1.4rem; }

    /* Diferenciais mobile */
    .diff-card__body { padding: 18px 18px 22px; gap: 8px; }
    .diff-card__num { font-size: 15px; }
    .diff-card h3 { font-size: 14px; letter-spacing: 0.02em; }
    .diff-card p { font-size: 13px; }

    /* Presença — mapa menor */
    .presence__map img { max-width: 320px; }
    .presence__inner { gap: 24px; }

    /* Depoimentos em vídeo */
    .testimonials__grid { gap: 14px; }
    .video-card__caption { font-size: 13px; padding-left: 12px; padding-right: 12px; bottom: 14px; }
    .video-card__play { width: 52px; height: 52px; }
    .video-card__play svg { width: 22px; height: 22px; }

    /* FAQ */
    .faq-item summary { padding: 16px 18px; font-size: 14px; }
    .faq-item p { padding: 0 18px 18px; font-size: 13.5px; }

    /* CTA final */
    .cta-final { padding: 56px 0; }
    .cta-final__title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .cta-final__lead { font-size: 1rem; }

    /* Footer */
    .footer { padding: 36px 0 0; }
    .footer__inner { gap: 28px; padding: 0 16px; }
    .footer__cols { gap: 24px; }
    .footer__cols h4 { font-size: 12px; }
    .footer__cols a { font-size: 13px; }
}

/* ============================================================
   MOBILE MINI (≤ 380px) — iPhone SE / pequenos
   ============================================================ */
@media (max-width: 380px) {
    .container { padding: 0 14px; }
    .hero__inner { padding: 0 14px; }
    .hero__title { font-size: 1.85rem; }
    .form-card { padding: 18px 16px; }
    .btn { font-size: 12px; padding: 13px 20px; }
    .btn--large { font-size: 13px; padding: 14px 24px; }
    .section-title { font-size: 1.4rem; }
    .awards__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .awards__grid img { max-width: 100px; }
    .model-card__name { font-size: 1.4rem; }
    .footer__cols { grid-template-columns: 1fr; }
}

/* ============================================================
   IMAGENS PROTEGIDAS — sem distorção em qualquer tela
   ============================================================ */
.diff-card__photo,
.video-card__poster,
.testimonial img,
.authority__photo img,
.presence__map img,
.awards__grid img,
.kpi-card img,
.hero__logo,
.footer__brand img {
    object-fit: cover;
    object-position: center;
}
.awards__grid img,
.footer__brand img,
.hero__logo,
.presence__map img,
.selo-sorrix img {
    object-fit: contain;
}

/* ============================================================
   FORM — input zoom no iOS prevent (font ≥ 16px)
   ============================================================ */
@media (max-width: 980px) {
    .form-input, .form-select {
        font-size: 16px; /* previne zoom automático do iOS Safari */
    }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
