/* Reset & Base Variables */
:root {
    --bg-primary: #F4F2ED;
    --bg-dark: #111315;
    --primary-green: #24483D;
    --secondary-green: #3E7160;
    --text-gray: #5A6270;
    --white: #FFFFFF;
    
    --border-light: #E8E5DF;
    --border-dark: #2A2D30;

    --font-main: 'Manrope', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--bg-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.dark-section {
    background-color: var(--bg-dark);
    color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 1rem; }

.subheadline {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 1rem;
}
.dark-section .subheadline {
    color: #A0A5AA;
}

.center { text-align: center; }
.mt-4 { margin-top: 2rem; }

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

.section-padding {
    padding: 6rem 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-dark);
    border: 1px solid var(--bg-dark);
}
.dark-section .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}
.btn-secondary:hover {
    background-color: var(--bg-dark);
    color: var(--white);
}
.dark-section .btn-secondary:hover {
    background-color: var(--white);
    color: var(--bg-dark);
}

.btn-nav {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    padding: 1.25rem;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    background-color: rgba(244, 242, 237, 0.9);
    backdrop-filter: blur(8px);
    z-index: 100;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

/* Labels */
.label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-green);
    margin-bottom: 1rem;
    border: 1px solid var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}
.label-discrete {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.05em;
    margin: 1.5rem 0;
}

/* Hero Section */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.panel-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.panel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    font-weight: 600;
}
.panel-label {
    color: var(--text-gray);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.panel-value {
    font-size: 1.25rem;
}
.highlight-green .panel-value { color: var(--primary-green); }
.highlight-red .panel-value { color: #D64545; }

.panel-priority {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
}
.priority-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.panel-priority p {
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
}
.illustrative-label, .illustrative-center {
    display: block;
    font-size: 0.65rem;
    color: #5A6270;
    margin-top: 1rem;
    text-align: right;
    letter-spacing: 0.05em;
}
.illustrative-center { text-align: center; margin-top: 2rem; }
/* Inside dark vision tabs wrapper the bg is light, so use dark text */
.vision-tabs-wrapper .illustrative-center,
.vision-tabs-wrapper .illustrative-label {
    color: #111315 !important;
    font-weight: 600;
}

/* Identificação */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.premium-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.card-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}
.card-conclusion {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}
.card-conclusion .question {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.card-conclusion p {
    font-size: 0.85rem;
    color: var(--text-gray);
}
.mt-auto { margin-top: auto; }

/* Micro visuals in cards */
.funnel-anim .funnel-step {
    padding: 0.75rem;
    background: var(--white);
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}
.funnel-anim .funnel-arrow {
    text-align: center;
    color: var(--text-gray);
    padding: 0.25rem 0;
}
.funnel-anim .highlight { background: var(--bg-dark); color: var(--white); }

.product-comparison .prod-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}
.prod-name { font-size: 0.75rem; font-weight: 800; color: var(--text-gray); margin-bottom: 0.5rem; }
.prod-stat { font-weight: 700; font-size: 0.9rem; }
.prod-divider { text-align: center; font-size: 0.8rem; font-weight: 800; color: var(--text-gray); margin: 0.5rem 0; }

.clients-stats .stat-large {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}
.stat-label { font-size: 0.85rem; font-weight: 600; color: var(--text-gray); display: block; }
.stat-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: #FEECEB;
    color: #D64545;
    padding: 0.75rem;
    border-radius: 4px;
}
.alert-dot { width: 8px; height: 8px; background: #D64545; border-radius: 50%; }

/* Simulador */
.simulator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
}
.sim-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-dark);
}
.sim-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 1.25rem;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
}
.sim-tab.active {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-bottom: 2px solid var(--primary-green);
}
.sim-content-area {
    padding: 3rem;
    background: rgba(255,255,255,0.02);
}
.sim-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}
.sim-panel.active { display: block; }
.sim-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}
.sim-data-row {
    margin-bottom: 1.5rem;
}
.sim-data-row span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}
.sim-data-row strong {
    font-size: 1.5rem;
    font-weight: 800;
}
.sim-alert {
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--white);
    padding: 1.5rem;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
.sim-conclusion {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Prioridade */
.priority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.priority-item {
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.priority-item.dim { opacity: 0.5; }
.pi-title { font-weight: 800; font-size: 0.95rem; }
.pi-metrics { display: flex; gap: 0.5rem; }
.badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}
.impact-high { background: #E8F5E9; color: #2E7D32; }
.impact-med { background: #FFF8E1; color: #F57F17; }
.impact-unc { background: #F5F5F5; color: #616161; }
.diff-low { background: #E8F5E9; color: #2E7D32; }
.diff-med { background: #FFF8E1; color: #F57F17; }
.diff-high { background: #FFEBEE; color: #C62828; }

.priority-recommendation {
    background: var(--bg-dark);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
}
.rec-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}
.rec-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

/* -------------------------------------
   NEW: Sua Empresa pela Visão Klein
-------------------------------------- */
.positioning-statement {
    background: var(--bg-dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}
.positioning-statement strong { font-size: 1.25rem; display: block; margin-bottom: 0.5rem; }
.positioning-statement p { font-size: 0.95rem; color: #A0A5AA; }
.mt-6 { margin-top: 4rem; }
.mb-4 { margin-bottom: 2rem; }
.discrete { font-size: 0.85rem; color: var(--text-gray); }
.dark-section .discrete { color: #A8B0BA; }

.vision-tabs-wrapper {
    max-width: 1000px;
    margin: 4rem auto 0;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--bg-primary);
    overflow: hidden;
}
.v-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}
.v-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: #4A5260;
    padding: 1.25rem;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
}
.v-tab.active {
    background: var(--bg-primary);
    color: var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
}
.v-content-area {
    padding: 3rem;
}
.v-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}
.v-panel.active { display: block; }
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}
.panel-header h3 { margin: 0; font-size: 1.1rem; }

/* Dashboard inside Visão */
.dash-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.d-metric {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}
.d-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #3A4047;
    margin-bottom: 0.5rem;
}
.d-value { font-size: 1.25rem; font-weight: 800; color: var(--bg-dark); }
.dash-insights { margin-bottom: 2rem; }
.insight-title { font-size: 0.85rem; color: #3A4047; font-weight: 700; margin-bottom: 1rem; }
.insight-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.insight-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}
.insight-item .icon { font-weight: 800; font-size: 0.8rem; display: block; margin-bottom: 1rem; color: var(--primary-green); }
.insight-item p { font-size: 0.9rem; font-weight: 700; color: var(--bg-dark); }

.dash-priority-card {
    background: var(--bg-dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}
.dp-label { display: block; font-size: 0.75rem; font-weight: 800; color: #FFFFFF !important; margin-bottom: 1rem; letter-spacing: 0.1em; }
.dash-priority-card p { font-size: 1.1rem; font-weight: 800; margin: 0; }

/* Jornada */
.journey-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}
.j-step {
    padding: 1rem 2rem;
    background: var(--bg-primary);
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    width: 100%;
    max-width: 250px;
    text-align: center;
    border: 1px solid var(--border-light);
}
.j-step span { display: block; font-size: 1.5rem; margin-bottom: 0.25rem; color: var(--primary-green); }
.j-arrow { padding: 0.5rem 0; font-weight: 800; color: #3A4047; }
.j-step.highlight-alert { border: 2px solid #D64545; }
.j-step.highlight-alert span { color: #D64545; }
.j-arrow.highlight-alert-text { color: #D64545; font-size: 0.8rem; }
.j-step.dim, .j-arrow.dim { opacity: 0.4; }

.journey-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.j-insight, .j-action {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}
.j-insight strong, .j-action strong { display: block; font-size: 0.8rem; color: #3A4047; font-weight: 800; margin-bottom: 0.5rem; }
.j-action { border-left: 3px solid var(--primary-green); }

/* CRM */
.crm-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}
.c-step {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    background: var(--bg-primary);
    border-radius: 4px;
    border: 1px solid var(--border-light);
}
.c-step.highlight { background: var(--bg-dark); color: var(--white); border-color: var(--bg-dark); }
.c-step.dim { opacity: 0.5; }
.c-arrow { color: #3A4047; font-size: 0.85rem; font-weight: 800; }
.crm-disclaimer p { font-size: 0.85rem; color: #3A4047; font-style: italic; font-weight: 600; }

/* Playbook */
.playbook-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.playbook-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}
.playbook-card h4 { font-size: 0.75rem; color: #3A4047; font-weight: 800; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-light); padding-bottom: 0.5rem; }
.playbook-card h4 span { font-size: 1.25rem; color: var(--bg-dark); display: block; margin-top: 0.25rem; }
.playbook-card strong { display: block; font-size: 0.75rem; color: #3A4047; font-weight: 800; margin: 1rem 0 0.25rem 0; }
.playbook-card p, .playbook-card ul { font-size: 0.9rem; font-weight: 600; color: var(--bg-dark); }
.playbook-card ul { padding-left: 1.25rem; margin-top: 0.25rem; }

/* Build With Us */
.build-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.b-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}
.b-card h5 { font-size: 0.85rem; color: var(--primary-green); margin-bottom: 0.5rem; }
.b-card p { font-size: 0.85rem; font-weight: 600; color: var(--bg-dark); }

/* Structure vs Operation */
.structure-vs-operation {
    background: var(--bg-dark);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
}
.svo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.svo-col { flex: 1; text-align: center; }
.svo-title { font-size: 0.85rem; font-weight: 800; color: #A0A5AA; margin-bottom: 1rem; letter-spacing: 0.1em; }
.svo-words { font-size: 1rem; font-weight: 800; line-height: 1.6; }
.klein-side .svo-words { color: #6FCF97; }
.team-side .svo-words { color: var(--white); }
.svo-vs { font-weight: 800; font-size: 0.85rem; color: var(--text-gray); padding: 1rem; background: rgba(255,255,255,0.05); border-radius: 50px; }
.svo-conclusion { font-size: 0.9rem; color: #A0A5AA; font-style: italic; border-top: 1px solid #2A2D30; padding-top: 1.5rem; }

/* Practical Example */
.practical-example {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}
.pe-flow { display: flex; flex-direction: column; align-items: center; }
.pe-step {
    width: 100%;
    max-width: 600px;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-light);
}
.pe-step strong { display: block; font-size: 0.75rem; margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.pe-step p { font-size: 0.95rem; font-weight: 600; margin: 0; }
.pe-step.gray { background: var(--white); }
.pe-step.gray strong { color: var(--text-gray); }
.pe-step.dark { background: var(--bg-dark); color: var(--white); border-color: var(--bg-dark); }
.pe-step.dark strong { color: #A0A5AA; }
.pe-step.highlight { background: #E8F5E9; border-color: #C8E6C9; }
.pe-step.highlight strong { color: #2E7D32; }
.pe-arrow { padding: 0.5rem 0; color: var(--text-gray); font-weight: 800; }


/* Autoidentificação */
.self-id-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 4rem;
    border-radius: 12px;
}
.self-id-card h3 { text-align: center; margin-bottom: 2rem; }
.check-list { list-style: none; margin-bottom: 2rem; }
.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 800;
}
.self-id-conclusion {
    text-align: center;
    font-style: italic;
    font-weight: 600;
    color: var(--text-gray);
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

/* Projeto Klein — fundo escuro, cards em grafite médio */
.timeline {
    max-width: 620px;
    margin: 4rem auto;
    background: transparent;
}
.t-item {
    background: #1C2026;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-green);
    border-top: 1px solid #2A2D30;
    border-right: 1px solid #2A2D30;
    border-bottom: 1px solid #2A2D30;
    margin-bottom: 1rem;
}
.t-time { display: block; font-size: 0.75rem; color: #6FCF97; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: 0.08em; }
.t-title { display: block; font-size: 1.1rem; font-weight: 800; margin-bottom: 0.25rem; color: var(--white); }
.t-item p { font-size: 0.9rem; color: #A8B0BA; font-weight: 500; }
.t-arrow { text-align: center; color: #6FCF97; margin-bottom: 1rem; font-weight: 800; font-size: 1.2rem; }
.t-final { border-left-color: #6FCF97 !important; background: #162820 !important; }
.t-final .t-title { color: #6FCF97; }
.dark-section .label-discrete { color: #A8B0BA; }

/* Deliverables Enhancements */
.del-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; max-width: 800px; margin: 0 auto; }
.tag { font-size: 0.75rem; font-weight: 700; color: #D0D8E0; padding: 0.5rem 1rem; border: 1px solid #3A4047; border-radius: 50px; background: #1C2026; }

.presentation-sample {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 2rem auto;
}
.slide {
    background: var(--white);
    color: var(--bg-dark);
    padding: 1.5rem;
    width: 150px;
    min-width: 0;
    height: 100px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-top: 4px solid var(--primary-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 1;
}
.slide span { color: var(--text-gray); font-size: 0.65rem; margin-bottom: 0.5rem; }
/* Custom Revision Styles */
.highlight-insight { border-left: 3px solid var(--primary-green); }
.protagonist-block {
    background: var(--bg-dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}
.protagonist-block strong { color: #6FCF97; font-size: 0.9rem; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.protagonist-block p { font-size: 1rem; color: #D0D8E0; }
.j-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ba-col { padding: 1rem; background: var(--bg-primary); border-radius: 4px; }
.ba-col.after { background: #E8F5E9; border: 1px solid #C8E6C9; }
.ba-col.after strong { color: #2E7D32; }

.pe-main-title { font-size: 1.8rem; margin-bottom: 1rem; }
.protagonist-step { border: 2px solid var(--primary-green) !important; }
.process-before-after { max-width: 900px; margin: 4rem auto 0; padding: 3rem; background: var(--white); border-radius: 12px; border: 1px solid var(--border-light); }
.pba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.pba-col { padding: 2rem; border-radius: 8px; }
.pba-antes { background: var(--bg-primary); }
.pba-depois { background: var(--bg-dark); color: var(--white); }
.pba-col h4 { font-size: 0.9rem; margin-bottom: 1rem; }
.pba-depois h4 { color: #6FCF97; }
.pba-col ul { list-style: none; padding: 0; }
.pba-col ul li { padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.9rem; font-weight: 600; }
.pba-depois ul li { border-bottom: 1px solid rgba(255,255,255,0.1); }

.self-id-wrapper { max-width: 900px; margin: 0 auto; }
.self-id-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.si-card { background: var(--bg-primary); padding: 1.5rem; border-radius: 8px; font-weight: 800; font-size: 0.85rem; border: 1px solid var(--border-light); display: flex; align-items: center; text-align: center; justify-content: center; min-height: 120px; line-height: 1.4; }
.si-card.highlight { background: var(--bg-dark); color: var(--white); border-color: var(--bg-dark); }
.protagonist-card { background: var(--bg-dark); border-radius: 12px; padding: 2rem; color: var(--white); border: 2px solid var(--primary-green); box-shadow: 0 10px 30px rgba(46, 125, 50, 0.15); }
.protagonist-card .svo-words { color: var(--white); }

/* Polishing Part 2 Classes */
.bridge-phrase { background: var(--bg-primary); padding: 1.5rem; border-radius: 8px; font-size: 1.1rem; color: var(--bg-dark); }
.bridge-phrase strong { color: var(--primary-green); font-weight: 800; display: block; }
.executive-title { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.5px; }

.pre-project-bridge { background: var(--bg-dark); color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.1); }
.bridge-title { font-size: 2rem; color: var(--white); }
.highlight-text { color: #6FCF97; display: block; margin-top: 0.5rem; }
.bridge-subtitle { font-size: 1.2rem; color: #C5CDD6; font-style: italic; max-width: 700px; margin: 1rem auto 0; }

.del-grouped { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1000px; margin: 2rem auto; text-align: left; }
.del-group h5 { font-size: 0.85rem; color: #6FCF97; font-weight: 800; margin-bottom: 1rem; border-bottom: 2px solid #3A4047; padding-bottom: 0.5rem; }
.del-group .del-tags { justify-content: flex-start; }
.del-group .tag { margin-bottom: 0.5rem; }

.custom-scope { max-width: 900px; margin: 4rem auto; padding: 3rem; background: #1A1D21; border-radius: 12px; border: 1px solid #2A2D30; }
.custom-scope h3 { color: var(--white); }
.custom-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; text-align: left; }
.c-item { background: #22262C; padding: 1rem; border-radius: 6px; font-size: 0.85rem; border: 1px solid #2A2D30; color: #A8B0BA; }
.c-item strong { display: block; margin-top: 0.25rem; font-size: 0.95rem; color: var(--white); }

.accomp-flow { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; font-size: 0.85rem; font-weight: 800; background: rgba(0,0,0,0.4); padding: 2rem; border-radius: 8px; color: #D8DFE8; }
.accomp-flow span { display: block; }
.accomp-flow .arr { color: #6FCF97 !important; }
.conclusion-strong { color: var(--white) !important; font-size: 1.1rem !important; }

.integration-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.ig-card { background: var(--white); padding: 2rem 1.5rem; border-radius: 8px; border: 1px solid var(--border-light); font-size: 0.9rem; color: var(--bg-dark); box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.ig-card strong { font-size: 1.2rem; color: var(--primary-green); display: block; margin-bottom: 0.5rem; }

/* Investimento */
.investment-card {
    max-width: 600px;
    margin: 0 auto;
    background: #232830;
    border: 1px solid #383D44;
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    color: var(--white);
}
.investment-card h2 { margin-bottom: 0.5rem; color: var(--white); }
.inv-cycle { font-size: 0.85rem; font-weight: 800; color: #FFFFFF !important; margin-bottom: 2rem; letter-spacing: 0.05em; }
.inv-includes { font-size: 0.8rem; font-weight: 700; line-height: 1.8; padding: 1.5rem 0; border-top: 1px solid #383D44; border-bottom: 1px solid #383D44; margin-bottom: 2rem; color: #D0D8E4; }
.inv-price-area { margin-bottom: 2rem; }
.inv-label, .inv-from, .inv-per { display: block; font-size: 0.75rem; font-weight: 800; color: #B0BCC8; }
.inv-price { display: block; font-size: 4rem; font-weight: 800; color: #FFFFFF; line-height: 1; margin: 0.5rem 0; }
.inv-discrete { font-size: 0.85rem; color: #B0BCC8; margin-bottom: 2rem; font-style: italic; }
.objection-block { max-width: 600px; margin: 4rem auto 0; }

/* Sobre */
.about-content { max-width: 800px; }
.about-content p { font-size: 1.1rem; font-weight: 500; margin-bottom: 1rem; color: #4A5260; }
/* Dentro do protagonist-block, o p herda do block, não do about-content */
.about-content .protagonist-block p { color: #D0D8E0; }

/* Formulario */
.form-section { background: var(--bg-primary); }
.klein-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.5rem; }
.highlight-label { color: var(--primary-green); font-style: italic; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    background: var(--bg-primary);
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
}

/* CTA Final */
.cta-resume { margin-bottom: 3rem; }
.c-title { font-weight: 800; font-size: 1.5rem; }
.c-desc { font-size: 0.85rem; color: var(--text-gray); margin: 0.5rem 0; }
.c-price { font-weight: 800; color: var(--primary-green); }
.cta-actions { display: flex; justify-content: center; gap: 1rem; }

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-green);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-step {
    opacity: 0;
    animation: fadeInStep 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Ensure light containers reset text color when inside dark sections */
.vision-tabs-wrapper,
.b-card,
.practical-example,
.process-before-after {
    color: var(--bg-dark);
}

/* ==========================================================================
   RESPONSIVE DESIGN — Progressive Breakpoints
   320 → 360 → 375 → 390 → 412 → 430 → 480 → 768 → 820 → 1024 → 1280 → 1366 → 1440 → 1920 → 2560+
   ========================================================================== */

/* ── Ultrawide & Large Desktops (above 1920px) ── */
@media (min-width: 1921px) {
    .container { max-width: 1400px; }
    body { font-size: 1.05rem; }
    .section-padding { padding: 8rem 0; }
    .hero-grid { gap: 6rem; }
    .investment-card { max-width: 700px; padding: 5rem; }
    .self-id-card { max-width: 800px; padding: 5rem; }
    .klein-form { max-width: 800px; }
    .vision-tabs-wrapper { max-width: 1100px; }
}

/* ── Large Desktop (1440px–1920px) ── already well covered by base styles */
@media (min-width: 1441px) and (max-width: 1920px) {
    .container { max-width: 1280px; }
}

/* ── Standard Desktop (1280px–1440px) ── */
@media (min-width: 1281px) and (max-width: 1440px) {
    .container { max-width: 1180px; }
}

/* ── Small Desktop / Large Tablet Landscape (1024px–1280px) ── */
@media (max-width: 1280px) {
    .container { max-width: 1060px; }
    .hero-grid { gap: 3rem; }
    .priority-grid { gap: 3rem; }
    .structure-vs-operation { padding: 2.5rem; }
    .custom-scope { padding: 2.5rem; }
}

/* ── Tablet Landscape & Small Desktop (992px–1024px) ── */
@media (max-width: 1024px) {
    .container { max-width: 940px; padding: 0 2rem; }
    .section-padding { padding: 5rem 0; }
    .section-header { margin: 0 auto 3rem auto; }
    
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .cards-grid-3 { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .cards-grid-3 > *:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
    
    .playbook-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .journey-insights { grid-template-columns: 1fr 1fr; }
    
    .sim-content-area { padding: 2rem; }
    .sim-grid { gap: 2rem; }
    
    .inv-price { font-size: 3.5rem; }
}

/* ── Tablet Portrait (768px–991px) ── */
@media (max-width: 991px) {
    .container { padding: 0 1.5rem; }
    .section-padding { padding: 4.5rem 0; }
    .section-header { margin: 0 auto 2.5rem auto; }
    
    /* Hero: stack on tablet portrait */
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-content { text-align: center; }
    .hero-actions { flex-direction: row; justify-content: center; }
    .hero-actions .btn { min-width: 200px; }
    
    /* Cards: 2 col on tablet */
    .cards-grid-3 { grid-template-columns: 1fr 1fr; }
    .cards-grid-3 > *:last-child { grid-column: 1 / -1; max-width: 60%; margin: 0 auto; }
    
    /* Priority */
    .priority-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    
    /* Simulator */
    .sim-grid { grid-template-columns: 1fr; }
    .sim-tabs { flex-direction: column; }
    .sim-tab { border-bottom: 1px solid var(--border-dark); text-align: left; padding: 1rem 1.25rem; }
    .sim-tab.active { border-left: 3px solid var(--primary-green); border-bottom: 1px solid var(--border-dark); }
    
    /* Vision tabs */
    .v-tabs { flex-direction: column; }
    .v-tab { border-bottom: 1px solid var(--border-light); text-align: left; padding: 1rem 1.25rem; }
    .v-tab.active { border-left: 3px solid var(--primary-green); border-bottom: 1px solid var(--border-light); }
    .v-content-area { padding: 2rem; }
    
    /* Playbook */
    .playbook-grid { grid-template-columns: 1fr; }
    
    /* SVO */
    .svo-grid { flex-direction: column; gap: 1.5rem; }
    .svo-vs { padding: 0.75rem; }
    
    /* Journey */
    .journey-insights { grid-template-columns: 1fr; }
    
    /* CRM */
    .crm-flow { flex-direction: column; }
    .c-arrow { transform: rotate(90deg); margin: 0.5rem 0; }
    
    /* Before/After */
    .pba-grid { grid-template-columns: 1fr; }
    .j-before-after { grid-template-columns: 1fr; }
    
    /* Deliverables */
    .del-grouped { grid-template-columns: 1fr 1fr; }
    
    /* Form */
    .form-grid { grid-template-columns: 1fr 1fr; }
    
    /* CTA */
    .cta-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 1rem; }
    
    /* Investment */
    .inv-price { font-size: 3rem; }
    .investment-card { padding: 3rem; }
    
    /* Process before/after */
    .process-before-after { padding: 2rem; }
    
    /* Custom scope */
    .custom-scope { padding: 2rem; margin: 3rem auto; }
    
    /* Practical example */
    .practical-example { padding: 2rem; }
    
    /* Self ID */
    .self-id-card { padding: 3rem; }
}

/* ── Large Phone / Small Tablet (480px–767px) ── */
@media (max-width: 767px) {
    .section-padding { padding: 3.5rem 0; }
    .section-header { margin: 0 auto 2rem auto; }
    
    /* Navbar */
    .navbar { padding: 1rem 0; }
    .logo { font-size: 1.1rem; }
    .btn-nav { padding: 0.5rem 1rem; font-size: 0.75rem; }
    
    /* Typography scaling */
    h1 { font-size: 1.75rem; margin-bottom: 1rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.15rem; }
    
    .subheadline { font-size: 1rem; }
    .description { font-size: 0.9rem; }
    
    /* Hero */
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { min-width: unset; width: 100%; }
    
    /* Cards: single col */
    .cards-grid-3 { grid-template-columns: 1fr; }
    .cards-grid-3 > *:last-child { grid-column: auto; max-width: 100%; }
    .premium-card { padding: 2rem; }
    
    /* Panel card */
    .panel-card { padding: 1.75rem; }
    .panel-value { font-size: 1.1rem; }
    
    /* Simulator */
    .sim-content-area { padding: 1.5rem; }
    .sim-data-row strong { font-size: 1.25rem; }
    .sim-alert { font-size: 1rem; padding: 1.25rem; }
    
    /* Priority */
    .priority-recommendation { padding: 2rem; }
    .rec-text { font-size: 1.1rem; }
    
    /* Journey */
    .j-step { width: 100%; max-width: 280px; padding: 0.75rem 1rem; }
    .journey-flow { padding: 1.5rem; }
    
    /* CRM */
    .crm-flow { padding: 1.5rem; }
    
    /* Playbook */
    .playbook-card { padding: 1.5rem; }
    
    /* Structure vs Operation */
    .structure-vs-operation { padding: 2rem; }
    .svo-words { font-size: 0.9rem; }
    
    /* Practical example */
    .practical-example { padding: 1.5rem; }
    .pe-step { padding: 1rem; }
    
    /* Self ID */
    .self-id-card { padding: 2rem; }
    .si-card { min-height: 90px; font-size: 0.8rem; padding: 1.25rem; }
    
    /* Timeline */
    .timeline { margin: 2.5rem auto; }
    .t-item { padding: 1.25rem 1.5rem; }
    
    /* Presentation slides */
    .slide { width: 120px; height: 85px; padding: 1rem; font-size: 0.7rem; }
    
    /* Del tags */
    .del-grouped { grid-template-columns: 1fr; gap: 1.5rem; }
    .del-tags { gap: 0.4rem; }
    .tag { font-size: 0.7rem; padding: 0.4rem 0.8rem; }
    
    /* Custom scope */
    .custom-scope { padding: 1.5rem; margin: 2rem auto; }
    .custom-grid { grid-template-columns: 1fr; }
    
    /* Accomp flow */
    .accomp-flow { padding: 1.5rem; font-size: 0.8rem; }
    
    /* Integration grid */
    .integration-grid { grid-template-columns: 1fr 1fr; }
    
    /* Investment */
    .investment-card { padding: 2.5rem 2rem; }
    .inv-price { font-size: 2.5rem; }
    .inv-includes { font-size: 0.75rem; }
    
    /* Form */
    .form-grid { grid-template-columns: 1fr; }
    .klein-form { padding: 2rem; }
    .form-group input, .form-group select, .form-group textarea { 
        padding: 0.85rem; 
        font-size: 1rem; /* prevent zoom on iOS */
    }
    
    /* CTA */
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 400px; }
    .c-title { font-size: 1.25rem; }
    .c-desc { font-size: 0.8rem; }
    
    /* Buttons: touch targets */
    .btn { padding: 0.9rem 1.5rem; font-size: 0.85rem; min-height: 48px; }
    .btn-large { padding: 1rem 2rem; }
    .btn-block { padding: 1rem; }
    
    /* WhatsApp float */
    .whatsapp-float { 
        bottom: 1rem; 
        right: 1rem; 
        padding: 0.75rem 1.25rem; 
        font-size: 0.8rem; 
    }
    
    /* Executive title */
    .executive-title { font-size: 1.6rem; }
    .bridge-title { font-size: 1.6rem; }
    .bridge-subtitle { font-size: 1rem; }
    
    /* Process before/after */
    .process-before-after { padding: 1.5rem; margin: 2rem auto 0; }
    .pba-col { padding: 1.5rem; }
    
    /* Protagonist block */
    .protagonist-block { padding: 1.5rem; }
    
    /* Positioning statement */
    .positioning-statement { padding: 1.5rem; }
    .positioning-statement strong { font-size: 1.1rem; }
    
    /* About */
    .about-content p { font-size: 1rem; }
    
    /* PE main title */
    .pe-main-title { font-size: 1.4rem; }
    
    /* Build grid */
    .build-grid { grid-template-columns: 1fr; }
}

/* ── Standard Phones (430px and below) ── */
@media (max-width: 430px) {
    .container { padding: 0 1.25rem; }
    .section-padding { padding: 3rem 0; }
    
    /* Typography */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.05rem; }
    .subheadline { font-size: 0.95rem; }
    
    /* Label */
    .label { font-size: 0.65rem; padding: 0.2rem 0.6rem; }
    .label-discrete { font-size: 0.7rem; }
    
    /* Panel */
    .panel-card { padding: 1.5rem; }
    .panel-item { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .panel-priority { padding: 1.25rem; }
    
    /* Priority items */
    .priority-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1.25rem; }
    .pi-metrics { flex-wrap: wrap; }
    
    /* Sim data */
    .sim-data-row strong { font-size: 1.1rem; }
    
    /* Journey steps */
    .j-step { max-width: 100%; font-size: 0.8rem; padding: 0.75rem; }
    .j-step span { font-size: 1.25rem; }
    
    /* Cards */
    .premium-card { padding: 1.75rem; }
    
    /* Investment */
    .investment-card { padding: 2rem 1.5rem; }
    .inv-price { font-size: 2.25rem; }
    .inv-cycle { font-size: 0.8rem; }
    .inv-includes { line-height: 1.6; }
    
    /* Slides */
    .presentation-sample { gap: 0.5rem; }
    .slide { width: 100px; height: 70px; padding: 0.75rem; font-size: 0.6rem; }
    .slide span { font-size: 0.55rem; }
    
    /* Self ID */
    .self-id-card { padding: 1.75rem; }
    .self-id-grid { grid-template-columns: 1fr; }
    .si-card { min-height: 80px; }
    
    /* Integration */
    .integration-grid { grid-template-columns: 1fr; }
    
    /* Bridge phrase */
    .bridge-phrase { font-size: 0.95rem; padding: 1.25rem; }
    
    /* Executive title */
    .executive-title { font-size: 1.4rem; }
    .bridge-title { font-size: 1.4rem; }
    .bridge-subtitle { font-size: 0.9rem; }
    
    /* Tabs text */
    .v-tab { font-size: 0.75rem; padding: 0.85rem 1rem; }
    .sim-tab { font-size: 0.75rem; padding: 0.85rem 1rem; }
    
    /* WhatsApp */
    .whatsapp-float { font-size: 0.75rem; padding: 0.65rem 1rem; }
    
    /* About protagonist */
    .about-content p { font-size: 0.95rem; }
    
    /* Objection block */
    .objection-block { margin: 3rem auto 0; }
    
    /* Form */
    .klein-form { padding: 1.5rem; }
}

/* ── Small Phones (375px and below) ── */
@media (max-width: 375px) {
    .container { padding: 0 1rem; }
    .section-padding { padding: 2.5rem 0; }
    
    h1 { font-size: 1.35rem; }
    h2 { font-size: 1.2rem; }
    
    .hero-actions .btn { font-size: 0.8rem; padding: 0.85rem 1rem; }
    
    .panel-card { padding: 1.25rem; }
    .panel-value { font-size: 1rem; }
    
    .sim-content-area { padding: 1.25rem; }
    .sim-alert { font-size: 0.9rem; padding: 1rem; }
    
    .premium-card { padding: 1.5rem; }
    
    .investment-card { padding: 1.5rem 1.25rem; }
    .inv-price { font-size: 2rem; }
    
    .structure-vs-operation { padding: 1.5rem; }
    .svo-words { font-size: 0.85rem; }
    .svo-vs { font-size: 0.75rem; }
    
    .klein-form { padding: 1.25rem; }
    
    .t-item { padding: 1rem 1.25rem; }
    
    .slide { width: 90px; height: 65px; }
    
    .btn { min-height: 44px; font-size: 0.8rem; }
    .btn-large { padding: 0.85rem 1.5rem; font-size: 0.85rem; }
    
    .check-list li { padding-left: 1.5rem; font-size: 0.9rem; }
    
    .pe-main-title { font-size: 1.2rem; }
    .executive-title { font-size: 1.2rem; }
    .bridge-title { font-size: 1.2rem; }
}

/* ── Extra Small Phones (320px) ── */
@media (max-width: 340px) {
    .container { padding: 0 0.75rem; }
    .section-padding { padding: 2rem 0; }
    
    h1 { font-size: 1.2rem; }
    h2 { font-size: 1.1rem; }
    h3 { font-size: 0.95rem; }
    
    .logo { font-size: 0.95rem; }
    .btn-nav { font-size: 0.7rem; padding: 0.4rem 0.75rem; }
    
    .label { font-size: 0.6rem; }
    
    .panel-card { padding: 1rem; }
    .premium-card { padding: 1.25rem; }
    .sim-content-area { padding: 1rem; }
    
    .investment-card { padding: 1.25rem 1rem; }
    .inv-price { font-size: 1.75rem; }
    .inv-cycle { font-size: 0.7rem; }
    
    .klein-form { padding: 1rem; }
    .form-group input, .form-group select, .form-group textarea { padding: 0.75rem; }
    
    .self-id-card { padding: 1.25rem; }
    
    .slide { width: 80px; height: 55px; font-size: 0.55rem; }
    
    .whatsapp-float { bottom: 0.75rem; right: 0.75rem; padding: 0.5rem 0.75rem; font-size: 0.7rem; }
    
    .tag { font-size: 0.6rem; padding: 0.3rem 0.6rem; }
    
    .c-title { font-size: 1.1rem; }
    .bridge-title { font-size: 1.1rem; }
    .executive-title { font-size: 1.1rem; }
}

/* ── Landscape Phone ── */
@media (max-height: 500px) and (orientation: landscape) {
    .section-padding { padding: 2.5rem 0; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-content { text-align: left; }
    .hero-actions { flex-direction: row; }
    .hero-actions .btn { width: auto; min-width: unset; }
    .navbar { padding: 0.75rem 0; }
    .whatsapp-float { bottom: 0.5rem; right: 0.5rem; padding: 0.5rem 0.75rem; font-size: 0.7rem; }
}

/* ── Touch device improvements ── */
@media (hover: none) and (pointer: coarse) {
    .btn { min-height: 48px; }
    .v-tab, .sim-tab { min-height: 48px; }
    .premium-card:hover { transform: none; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    .whatsapp-float:hover { transform: none; }
    .form-group input, .form-group select, .form-group textarea {
        font-size: 1rem; /* prevent auto-zoom on iOS */
    }
}

/* ── Prevent horizontal scroll globally ── */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ── Safari specific fixes ── */
@supports (-webkit-touch-callout: none) {
    .btn { -webkit-appearance: none; }
    input, select, textarea { -webkit-appearance: none; border-radius: 4px; }
}

/* ── Print ── */
@media print {
    .whatsapp-float, .navbar { display: none; }
    .section-padding { padding: 2rem 0; }
    .reveal { opacity: 1; transform: none; }
}
/* CORREÇÃO MOBILE - evita blocos vazios e animações travadas */
@media (max-width: 767px) {
@media (min-width: 992px) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .fade-in-step {
        opacity: 1 !important;
        animation: none !important;
    }
}
        animation: none !important;
        transition: none !important;
    }

    .dark-section,
    .vision-klein,
    .project-klein,
    .pre-project-bridge,
    .investment,
    .cta-final {
        min-height: auto !important;
        height: auto !important;
    }

    .section-padding {
        padding: 3rem 0 !important;
    }

    .mt-6 {
        margin-top: 2rem !important;
    }
}
/* =========================================================
   CORREÇÃO DE SEGURANÇA — CONTEÚDO SEMPRE VISÍVEL
   ========================================================= */

.reveal {
    opacity: 1 !important;
    transform: none !important;
}
/* =========================================================
   REVEAL SEGURO — conteúdo nunca desaparece se o JS falhar
   ========================================================= */

/* Estado padrão: SEMPRE visível */
.reveal {
    opacity: 1;
    transform: none;
}

/* Animação só é habilitada pelo JavaScript no desktop */
@media (min-width: 992px) {
    html.reveal-enabled .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition:
            opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
            transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    html.reveal-enabled .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile/tablet: sem reveal para evitar seções invisíveis */
@media (max-width: 991px) {
    .reveal,
    .reveal.active {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .fade-in-step {
        opacity: 1 !important;
        animation: none !important;
    }
}
/* =========================================================
   CORREÇÃO FINAL DAS ANIMAÇÕES
   Desktop anima / Mobile permanece sempre visível
   ========================================================= */

/* DESKTOP */
@media (min-width: 992px) {

    html.reveal-enabled body .reveal {
        opacity: 0 !important;
        transform: translateY(30px) !important;

        transition:
            opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
            transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }

    html.reveal-enabled body .reveal.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* CELULAR E TABLET */
@media (max-width: 991px) {

    .reveal,
    .reveal.active {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .fade-in-step {
        opacity: 1 !important;
        animation: none !important;
    }
}
/* =========================================================
   CONFIGURAÇÃO DEFINITIVA DAS ANIMAÇÕES
   Desktop = anima
   Mobile/tablet = sempre visível
   ========================================================= */

/* Segurança: conteúdo visível por padrão */
html body .reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* Somente quando o JavaScript confirmar que está funcionando */
@media (min-width: 992px) {

    html.desktop-animations body .reveal:not(.active) {
        opacity: 0 !important;
        transform: translateY(30px) !important;
        transition:
            opacity 0.75s cubic-bezier(0.25, 0.8, 0.25, 1),
            transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }

    html.desktop-animations body .reveal.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Mobile e tablet nunca dependem da animação */
@media (max-width: 991px) {

    html body .reveal,
    html body .reveal.active {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* =========================================================
   POLIMENTO FINAL MOBILE
   Apenas celular — não altera desktop
   ========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------
       BASE / RESPIRAÇÃO
       ----------------------------------------- */
    body {
        font-size: 0.96rem;
    }

    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .section-padding {
        padding-top: 2.6rem !important;
        padding-bottom: 2.6rem !important;
    }

    .section-header {
        margin-bottom: 1.75rem !important;
    }

    .mt-6 {
        margin-top: 2rem !important;
    }

    .mt-4 {
        margin-top: 1.25rem !important;
    }

    .mb-4 {
        margin-bottom: 1.25rem !important;
    }

    /* -----------------------------------------
       TIPOGRAFIA
       ----------------------------------------- */
    h1 {
        font-size: clamp(1.6rem, 7vw, 2rem) !important;
        line-height: 1.12 !important;
    }

    h2 {
        font-size: clamp(1.35rem, 6vw, 1.7rem) !important;
        line-height: 1.18 !important;
    }

    h3 {
        font-size: 1.08rem !important;
        line-height: 1.25 !important;
    }

    .subheadline {
        font-size: 0.98rem !important;
        line-height: 1.5 !important;
    }

    .description {
        font-size: 0.9rem !important;
        line-height: 1.55 !important;
    }

    /* -----------------------------------------
       NAVBAR
       ----------------------------------------- */
    .navbar {
        padding: 0.8rem 0 !important;
    }

    .navbar .container {
        gap: 0.75rem;
    }

    .logo {
        font-size: 0.95rem !important;
        letter-spacing: 0.08em !important;
    }

    .btn-nav {
        padding: 0.55rem 0.8rem !important;
        font-size: 0.68rem !important;
        white-space: nowrap;
    }

    /* -----------------------------------------
       HERO
       ----------------------------------------- */
    .hero-grid {
        gap: 1.75rem !important;
    }

    .hero-content {
        text-align: left !important;
    }

    .hero-actions {
        gap: 0.75rem !important;
    }

    .hero-actions .btn {
        width: 100% !important;
    }

    .panel-card {
        padding: 1.25rem !important;
        border-radius: 10px !important;
    }

    .panel-item {
        padding: 0.8rem 0 !important;
    }

    .panel-priority {
        padding: 1rem !important;
        margin-top: 1rem !important;
    }

    /* -----------------------------------------
       CARDS INICIAIS
       ----------------------------------------- */
    .cards-grid-3 {
        gap: 1rem !important;
    }

    .premium-card {
        padding: 1.4rem !important;
        border-radius: 10px !important;
    }

    .card-tag {
        margin-bottom: 1.2rem !important;
    }

    .card-conclusion {
        margin-top: 1.5rem !important;
        padding-top: 1rem !important;
    }

    /* -----------------------------------------
       SIMULADOR
       ----------------------------------------- */
    .simulator-wrapper {
        border-radius: 10px !important;
    }

    .sim-tabs {
        gap: 0 !important;
    }

    .sim-tab {
        padding: 0.85rem 1rem !important;
        font-size: 0.72rem !important;
    }

    .sim-content-area {
        padding: 1.2rem !important;
    }

    .sim-grid {
        gap: 1rem !important;
    }

    .sim-alert {
        padding: 1rem !important;
        font-size: 0.95rem !important;
    }

    /* -----------------------------------------
       PRIORIDADES
       ----------------------------------------- */
    .priority-grid {
        gap: 1.5rem !important;
    }

    .priority-item {
        padding: 1rem !important;
        gap: 0.6rem !important;
    }

    .priority-recommendation {
        padding: 1.5rem !important;
        border-radius: 10px !important;
    }

    /* -----------------------------------------
       VISÃO KLEIN / DASHBOARD
       ----------------------------------------- */
    .vision-klein .section-header {
        margin-bottom: 1.5rem !important;
    }

    .positioning-statement {
        padding: 1.25rem !important;
        margin-top: 1.25rem !important;
    }

    .vision-tabs-wrapper {
        margin-top: 1.75rem !important;
        border-radius: 10px !important;
    }

    .v-tabs {
        position: relative;
    }

    .v-tab {
        padding: 0.85rem 1rem !important;
        font-size: 0.72rem !important;
    }

    .v-content-area {
        padding: 1rem !important;
    }

    .panel-header {
        align-items: flex-start !important;
        gap: 0.75rem !important;
        flex-direction: column !important;
    }

    .dash-metrics {
        grid-template-columns: 1fr !important;
        gap: 0.7rem !important;
    }

    .d-metric {
        padding: 1rem !important;
    }

    .d-value {
        font-size: 1.2rem !important;
    }

    .insight-list {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .insight-item {
        padding: 1rem !important;
    }

    .dash-priority-card {
        padding: 1.25rem !important;
    }

    /* -----------------------------------------
       JORNADA
       ----------------------------------------- */
    .journey-flow {
        padding: 1rem !important;
    }

    .j-step {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0.8rem !important;
    }

    .journey-insights {
        gap: 1rem !important;
    }

    .j-insight,
    .j-action {
        padding: 1rem !important;
    }

    /* -----------------------------------------
       CRM
       ----------------------------------------- */
    .crm-flow {
        padding: 1rem !important;
        gap: 0.35rem !important;
    }

    .c-step {
        width: 100%;
        text-align: center;
        padding: 0.75rem !important;
    }

    .crm-help {
        padding: 1.2rem !important;
    }

    /* -----------------------------------------
       PLAYBOOK
       ----------------------------------------- */
    .playbook-grid {
        gap: 1rem !important;
    }

    .playbook-card {
        padding: 1.2rem !important;
    }

    .playbook-card h4 {
        margin-bottom: 1rem !important;
    }

    /* -----------------------------------------
       O QUE A KLEIN PODE ESTRUTURAR
       ----------------------------------------- */
    .build-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    .b-card {
        padding: 1.1rem !important;
    }

    .b-card h5 {
        margin-bottom: 0.35rem !important;
    }

    /* -----------------------------------------
       KLEIN X EQUIPE
       ----------------------------------------- */
    .structure-vs-operation {
        padding: 1.25rem !important;
        border-radius: 10px !important;
    }

    .svo-grid {
        gap: 0.9rem !important;
    }

    .svo-col {
        width: 100%;
    }

    .protagonist-card {
        padding: 1.2rem !important;
    }

    .svo-words {
        line-height: 1.4 !important;
        font-size: 0.85rem !important;
    }

    .svo-vs {
        padding: 0.55rem 0.85rem !important;
    }

    .svo-conclusion {
        margin-top: 1.25rem !important;
        padding-top: 1rem !important;
    }

    /* -----------------------------------------
       COMO ACONTECE NA PRÁTICA
       ----------------------------------------- */
    .practical-example {
        padding: 1rem
        
        @media (max-width: 767px) {
    .mobile-reveal {
        opacity: 0;
        transform: translateY(16px);
        transition:
            opacity 0.55s ease-out,
            transform 0.55s ease-out;
    }

    .mobile-reveal.mobile-active {
        opacity: 1;
        transform: translateY(0) !important;
    }
}

/* =========================================================
   CONFIGURAÇÃO DEFINITIVA DAS ANIMAÇÕES
   Desktop = anima
   Mobile/tablet = sempre visível
   ========================================================= */

/* Segurança: conteúdo visível por padrão */
html body .reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* Desktop */
@media (min-width: 992px) {

    html.desktop-animations body .reveal:not(.active) {
        opacity: 0 !important;
        transform: translateY(30px) !important;

        transition:
            opacity 0.75s cubic-bezier(0.25, 0.8, 0.25, 1),
            transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    }

    html.desktop-animations body .reveal.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Mobile/tablet */
@media (max-width: 991px) {

    html body .reveal,
    html body .reveal.active {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}