/* ============================================================
   NABARRETE — style.css
   Estética: Brutalista / Dark / Tipografia dominante
   logob.png = fundo preto, texto branco (header e footer)
   ============================================================ */

:root {
    --bg:         #080808;
    --bg-alt:     #0f0f0f;
    --bg-light:   #141414;
    --white:      #f5f5f0;
    --white-dim:  rgba(245,245,240,0.55);
    --white-faint:rgba(245,245,240,0.12);
    --accent:     #e8e0d0;
    --green:      #25D366;
    --font-head:  'Syne', sans-serif;
    --font-body:  'DM Sans', sans-serif;
    --ease:       cubic-bezier(0.16, 1, 0.3, 1);
    --border:     1px solid rgba(245,245,240,0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    max-width: 100%;
    background-color: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

html {
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; line-height: 1; letter-spacing: -0.03em; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Remove bordas globais de separação que criam o 'corte seco' */
section {
    border-top: none !important;
    border-bottom: none !important;
    position: relative;
}

/* Transição suave entre seções de cores diferentes */
/* Exemplo: da Hero (Preto) para a seção Tensão (Cinza Escuro) */
.tensao::before {
    content: "";
    position: absolute;
    top: -100px; /* Ajuste conforme a necessidade de suavização */
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--bg), var(--bg-alt));
    z-index: 1;
}

/* Aplique o mesmo conceito onde houver mudança de cor de fundo */
.diferencial::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, var(--bg-alt), var(--bg));
    z-index: 1;
}

/* Cursor Customizado */
@media (hover: none) and (pointer: coarse) {
    .cursor-particle { display: none !important; }
}

.cursor-particle {
    width: 14px;
    height: 14px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    mix-blend-mode: difference;
}

.cursor-particle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 50% 50% 50% 50%;
    animation: particle-morph 1.4s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes particle-morph {
    0%   { border-radius: 50% 40% 55% 45% / 50% 55% 45% 50%; transform: scale(1)    rotate(0deg);   }
    20%  { border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; transform: scale(1.08) rotate(18deg);  }
    40%  { border-radius: 60% 40% 45% 55% / 40% 60% 50% 50%; transform: scale(0.95) rotate(36deg);  }
    60%  { border-radius: 40% 60% 55% 45% / 60% 40% 45% 55%; transform: scale(1.1)  rotate(54deg);  }
    80%  { border-radius: 55% 45% 60% 40% / 45% 55% 60% 40%; transform: scale(0.97) rotate(72deg);  }
    100% { border-radius: 48% 52% 44% 56% / 52% 48% 56% 44%; transform: scale(1.05) rotate(90deg);  }
}

/* Não escondemos mais o cursor padrão, apenas adicionamos a partícula */
body {
    cursor: auto; 
}

/* =====================
   SECTION LABEL
   ===================== */
.section-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white-dim);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--white-dim);
}
.section-label.light { color: rgba(245,245,240,0.4); }
.section-label.light::before { background: rgba(245,245,240,0.3); }

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background-color: var(--white);
    color: var(--bg);
}
.btn-primary:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(245,245,240,0.25);
}
.btn-ghost:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--green);
    color: #fff;
    padding: 18px 36px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    transition: all 0.25s var(--ease);
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* =====================
   HEADER
   ===================== */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background-color: rgba(8,8,8,0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: var(--border);
    transition: all 0.3s var(--ease);
}
.header.scrolled { border-bottom-color: rgba(245,245,240,0.12); }
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.logo img {
    height: 30px;
    width: auto;
    display: block;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-link {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-dim);
    transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }
.btn-nav {
    background: var(--white);
    color: var(--bg);
    padding: 10px 20px;
    border-radius: 2px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.2s;
}
.btn-nav:hover { background: var(--accent); color: var(--bg); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger { display: block; width: 22px; height: 1.5px; background: var(--white); position: relative; transition: all 0.3s; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 100%; height: 1.5px; background: var(--white); left: 0; transition: all 0.3s; }
.hamburger::before { top: -6px; }
.hamburger::after  { bottom: -6px; }

/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255,255,255,0.025) 0%, transparent 70%);
    pointer-events: none;
}
.hero-eyebrow {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white-dim);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--white-dim);
}
.hero-headline {
    display: block;
    margin-bottom: 40px;
}
.hero-headline .line {
    display: block;
    font-size: clamp(2.2rem, 6.5vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--white);
    opacity: 0;
    transform: translateY(40px);
    white-space: nowrap;
}
.hero-headline .line:nth-child(1) { animation: fadeUp 0.9s var(--ease) 0.2s forwards; }
.hero-headline .line:nth-child(2) { animation: fadeUp 0.9s var(--ease) 0.35s forwards; }
.hero-headline .line:nth-child(3) { animation: fadeUp 0.9s var(--ease) 0.5s forwards; }

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--white-dim);
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.75s forwards;
}
.hero-scroll {
    opacity: 0;
    animation: fadeUp 0.9s var(--ease) 0.9s forwards;
}
/* =====================
   A TENSÃO
   ===================== */
.tensao {
    padding: 120px 0;
    background: var(--bg-alt);
    border-top: var(--border);
}
.tensao-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.tensao-left h2 {
    font-size: clamp(1.6rem, 3vw, 3rem);
    margin-top: 8px;
    color: var(--white);
    word-break: break-word;
}
.tensao-lista {
    margin-bottom: 48px;
}
.tensao-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: var(--border);
    font-size: 1.05rem;
    color: var(--white-dim);
}
.tensao-dash { color: var(--white-dim); flex-shrink: 0; }
.tensao-resultado { margin-bottom: 40px; }
.resultado-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 20px;
}
.resultado-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.resultado-item {
    background: var(--white-faint);
    border: var(--border);
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--white);
    border-radius: 2px;
}
.tensao-conclusao {
    font-size: 1.1rem;
    color: var(--white-dim);
    padding-top: 32px;
    border-top: var(--border);
    line-height: 1.8;
}
.tensao-conclusao strong { color: var(--white); }

/* =====================
   A VIRADA
   ===================== */
.virada {
    padding: 120px 0;
    background: var(--white);
    color: var(--bg);
}
.virada-inner { max-width: 880px; }
.virada .section-label { color: rgba(8,8,8,0.4); }
.virada .section-label::before { background: rgba(8,8,8,0.3); }
.virada-headline {
    font-size: clamp(1.6rem, 3.5vw, 3.5rem);
    color: var(--bg);
    margin-bottom: 32px;
    line-height: 1.05;
    word-break: break-word;
}
.virada-sub {
    font-size: 1.1rem;
    color: rgba(8,8,8,0.6);
    margin-bottom: 56px;
}
.virada-steps { margin-bottom: 56px; }
.virada-step {
    display: flex;
    gap: 32px;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid rgba(8,8,8,0.1);
}
.step-num {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(8,8,8,0.35);
    flex-shrink: 0;
    width: 32px;
}
.step-text {
    font-size: 1.15rem;
    color: rgba(8,8,8,0.7);
}
.step-text strong { color: var(--bg); }
.virada-fecho {
    font-size: 1.3rem;
    color: rgba(8,8,8,0.7);
    padding-top: 40px;
    line-height: 1.8;
}
.virada-fecho strong { color: var(--bg); }

/* =====================
   SERVIÇOS
   ===================== */
.servicos {
    padding: 120px 0;
    background: var(--bg);
    border-top: var(--border);
}
.servicos h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 64px;
    max-width: 640px;
    color: var(--white);
    line-height: 1.1;
}
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: var(--border);
}
.servico-card {
    padding: 40px 32px;
    border-right: var(--border);
    transition: background 0.3s;
}
.servico-card:last-child { border-right: none; }
.servico-card:hover { background: var(--white-faint); }
.servico-num {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white-dim);
    margin-bottom: 32px;
}
.servico-card h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.3;
    text-transform: uppercase;
}
.servico-card ul li {
    font-size: 0.875rem;
    color: var(--white-dim);
    padding: 8px 0;
    border-bottom: var(--border);
    line-height: 1.5;
}
.servico-card ul li:last-child { border-bottom: none; }

/* =====================
   MODELO — ESTRUTURA CONSOLIDADA
   ===================== */

.modelo {
    padding: 120px 0;
    background: var(--bg-alt);
    border-top: var(--border);
}

.modelo h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 64px;
    color: var(--white);
}

.modelo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.modelo-card--1,
.modelo-card--2 {
    border: var(--border);
    border-radius: 2px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
    min-width: 0;
    word-break: break-word;
    height: 100%;
}

.modelo-card--1 { background: var(--bg-light); }
.modelo-card--2 {
    background: linear-gradient(135deg, #0b2b26 0%, #0f3d36 60%, #0b2b26 100%);
    border-color: rgba(245,245,240,0.12);
}
.modelo-card--1:hover { border-color: rgba(245,245,240,0.25); }
.modelo-card--2:hover { border-color: rgba(245,245,240,0.3); }

.modelo-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.modelo-fase-badge {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-dim);
    border: var(--border);
    padding: 6px 14px;
    border-radius: 2px;
}

.modelo-card--2 .modelo-fase-badge {
    border-color: rgba(245,245,240,0.2);
    color: rgba(245,245,240,0.7);
}

.modelo-card h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 20px;
    word-break: break-word;
    hyphens: auto;
}

.modelo-card p {
    font-size: 0.95rem;
    color: var(--white-dim);
    line-height: 1.7;
    margin-bottom: 36px;
}

.modelo-itens {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
    flex: 1;
}

.modelo-item {
    display: flex;
    gap: 14px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: var(--border);
    font-size: 0.9rem;
    color: var(--white-dim);
}
.modelo-card--2 .modelo-item { border-bottom-color: rgba(245,245,240,0.08); }
.modelo-item span { color: rgba(245,245,240,0.3); font-size: 0.8rem; flex-shrink: 0; }

.modelo-card-footer {
    padding-top: 24px;
    border-top: var(--border);
    margin-top: auto;
}
.modelo-card--2 .modelo-card-footer { border-top-color: rgba(245,245,240,0.1); }

.modelo-ticket {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-dim);
}

.modelo-nota {
    font-size: 0.8rem;
    color: var(--white-dim);
    text-align: center;
    border-top: var(--border);
    padding-top: 24px;
    letter-spacing: 0.03em;
}

/* =====================
   DIFERENCIAL
   ===================== */
.diferencial {
    padding: 120px 0;
    background: var(--bg);
    border-top: var(--border);
}
.diferencial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.diferencial-left h2 {
    font-size: clamp(1.6rem, 3vw, 3rem);
    margin-bottom: 48px;
    color: var(--white);
    word-break: break-word;
}
.nao-list { margin-bottom: 0; }
.nao-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: var(--border);
    font-size: 1rem;
    color: var(--white-dim);
}
.nao-x { color: rgba(245,245,240,0.25); font-size: 0.8rem; flex-shrink: 0; }
.trabalhamos-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 32px;
    margin-top: 56px;
}
.sim-list { display: flex; flex-direction: column; gap: 0; }
.sim-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: var(--border);
    font-family: var(--font-head);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    text-transform: uppercase;
}
.sim-check { color: var(--white-dim); font-size: 0.9rem; }

/* =====================
   PARA QUEM É
   ===================== */
.para-quem {
    padding: 120px 0;
    background: var(--bg-alt);
    border-top: var(--border);
}
.para-quem h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 64px;
    color: var(--white);
}
.paraquem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: var(--border);
}
.paraquem-item {
    padding: 40px 32px;
    border-right: var(--border);
    transition: background 0.3s;
}
.paraquem-item:last-child { border-right: none; }
.paraquem-item:hover { background: var(--white-faint); }
.paraquem-num {
    display: block;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white-dim);
    margin-bottom: 20px;
}
.paraquem-item p {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}

/* =====================
   PROVA DE VISÃO
   ===================== */
.visao {
    padding: 140px 0;
    background: var(--bg);
    border-top: var(--border);
}
.visao-inner {
    max-width: 880px;
}
.visao-quote {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 64px;
    font-style: normal;
    word-break: break-word;
}
.visao-quote strong { color: var(--white); }
.visao-divisor {
    width: 40px;
    height: 1px;
    background: var(--white-dim);
    margin-bottom: 64px;
}
.visao-pre {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 24px;
}
.visao-lista {
    display: flex;
    gap: 0;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.visao-lista span {
    font-family: var(--font-head);
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    padding: 10px 20px;
    border: var(--border);
    color: var(--white);
    margin-right: -1px;
    margin-bottom: -1px;
}
.visao-pos {
    font-size: 1.1rem;
    color: var(--white-dim);
    line-height: 1.8;
    padding-top: 48px;
    border-top: var(--border);
}
.visao-pos strong { color: var(--white); }

/* =====================
   CONTATO
   ===================== */
.contato {
    padding: 120px 0;
    background: var(--bg-alt);
    border-top: var(--border);
}
.contato-header {
    margin-bottom: 80px;
}
.contato-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 3.5rem);
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.05;
    word-break: break-word;
}
.contato-header p {
    font-size: 1.05rem;
    color: var(--white-dim);
    max-width: 600px;
    line-height: 1.8;
}
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}
.contato-info { padding-top: 8px; }
.contato-ou {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--white-dim);
    line-height: 1.6;
}
.contato-form {
    background: var(--bg-light);
    padding: 48px;
    border: var(--border);
    border-radius: 2px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: var(--border);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: transparent;
    color: var(--white);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,245,240,0.2); }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(245,245,240,0.35);
}
.contato-form .btn { width: 100%; }
.form-erro {
    background: rgba(200,0,0,0.1);
    border: 1px solid rgba(200,0,0,0.3);
    color: #ff6b6b;
    padding: 12px 16px;
    border-radius: 2px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

/* =====================
   FOOTER
   ===================== */
/* =====================
   PRÉ-FOOTER CTA
   ===================== */
.prefooter {
    background: var(--bg-alt);
    border-top: var(--border);
    padding: 56px 0;
    position: relative;
    z-index: 2;
}
.prefooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.prefooter-text {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--white);
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--bg);
    border-top: var(--border);
    padding: 72px 0 0;
    position: relative;
    z-index: 2;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 64px;
    padding-bottom: 64px;
}
.footer-logo {
    height: 26px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.footer-tagline {
    font-size: 0.8rem;
    color: var(--white-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-head);
    margin-bottom: 16px;
}
.footer-local {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(245,245,240,0.3);
}
.footer-col-title {
    font-family: var(--font-head);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 20px;
    opacity: 0.5;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav a {
    font-size: 0.9rem;
    color: var(--white-dim);
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--white-dim);
    transition: color 0.2s;
    line-height: 1.4;
}
.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item:hover svg { opacity: 1; }
.footer-bottom {
    border-top: var(--border);
    padding: 20px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(245,245,240,0.25);
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .prefooter-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }
}

/* =====================
   ANIMAÇÕES
   ===================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* @keyframes scrollLine removido — substituído pelo blueprint SVG */

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* =====================
   RESPONSIVO GERAL
   ===================== */
@media (max-width: 1024px) {
    .servicos-grid,
    .paraquem-grid { grid-template-columns: repeat(2, 1fr); }
    .servico-card:nth-child(2),
    .paraquem-item:nth-child(2) { border-right: none; }
    .servico-card:nth-child(3),
    .paraquem-item:nth-child(3) { border-top: var(--border); }
    .servico-card:nth-child(4),
    .paraquem-item:nth-child(4) { border-top: var(--border); border-right: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .mobile-menu-btn { display: block; }
    .nav-list {
        position: fixed;
        top: 72px; left: 0;
        width: 100%;
        background: var(--bg);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        border-bottom: var(--border);
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.4s var(--ease);
    }
    .nav-list.active { clip-path: circle(150% at 100% 0); }
    .tensao-grid,
    .diferencial-grid,
    .contato-grid { grid-template-columns: 1fr; gap: 48px; }
    .servicos-grid,
    .paraquem-grid { grid-template-columns: 1fr; }
    .servico-card,
    .paraquem-item { border-right: none; border-top: var(--border); }
    .servico-card:first-child,
    .paraquem-item:first-child { border-top: none; }
    .contato-form { padding: 32px 20px; }

    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; }
    .virada-inner { max-width: 100%; }
    .visao-lista span { padding: 10px 18px; }

    /* Correção Modelo Mobile */
    .modelo-grid {
        grid-template-columns: 1fr;
    }
    .modelo-card--1,
    .modelo-card--2 {
        padding: 32px 24px;
    }
}

/* =====================
   ATUALIZAÇÕES — LOGOS, CORES
   ===================== */

/* Logo versão escura no header (fundo escuro) */
.logo-dark { filter: none; }

/* Logo versão clara na seção virada (fundo claro) */
.virada-logo {
    height: 28px;
    width: auto;
    margin-bottom: 40px;
    opacity: 0.5;
}


/* =====================
   DIVISORES ENTRE SEÇÕES
   ===================== */

.sec-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0;
    position: relative;
    z-index: 2;
}

.sec-divider svg {
    display: block;
    overflow: visible;
}

/* Stroke base compartilhado */
.sec-divider line,
.sec-divider polyline,
.sec-divider rect,
.sec-divider circle,
.sec-divider polygon,
.sec-divider path {
    stroke: rgba(245, 245, 240, 0.2);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* ── D1: Setas em cascata (Hero → Tensão) ── */
.div-d1 svg { width: 56px; height: 34px; }
.d1-a, .d1-b, .d1-c { stroke-dasharray: 60; stroke-dashoffset: 60; }
.d1-arrow { stroke-dasharray: 40; stroke-dashoffset: 40; }

.div-d1.visible .d1-a     { animation: draw 0.5s ease forwards 0.1s, glow-d1 2.5s ease-in-out infinite 1s; }
.div-d1.visible .d1-b     { animation: draw 0.5s ease forwards 0.3s, glow-d1 2.5s ease-in-out infinite 1.1s; }
.div-d1.visible .d1-c     { animation: draw 0.5s ease forwards 0.5s, glow-d1 2.5s ease-in-out infinite 1.2s; }
.div-d1.visible .d1-arrow { animation: draw 0.4s ease forwards 0.7s, glow-d1 2.5s ease-in-out infinite 1.3s; }

@keyframes glow-d1 {
    0%, 100% { stroke: rgba(245,245,240,0.15); }
    50%       { stroke: rgba(245,245,240,0.55); }
}

/* ── D2: Barras de progresso (Tensão → Virada) ── */
.div-d2 svg { width: 80px; height: 30px; }
.d2-bar { stroke: none; fill: rgba(245,245,240,0.15); }
.d2-b1 { transform-origin: 18px 28px; }
.d2-b2 { transform-origin: 48px 28px; }
.d2-b3 { transform-origin: 78px 28px; }

.div-d2.visible .d2-b1 { animation: bar-b1 0.5s ease forwards 0.1s,  bar-pulse 2.8s ease-in-out infinite 1s; }
.div-d2.visible .d2-b2 { animation: bar-b2 0.5s ease forwards 0.35s, bar-pulse 2.8s ease-in-out infinite 1.15s; }
.div-d2.visible .d2-b3 { animation: bar-b3 0.5s ease forwards 0.6s,  bar-pulse 2.8s ease-in-out infinite 1.3s; }

@keyframes bar-b1 { from { height: 0; y: 28px; } to { height: 8px;  y: 20px; } }
@keyframes bar-b2 { from { height: 0; y: 28px; } to { height: 16px; y: 12px; } }
@keyframes bar-b3 { from { height: 0; y: 28px; } to { height: 28px; y: 0px;  } }

@keyframes bar-pulse {
    0%, 100% { fill: rgba(245,245,240,0.12); }
    50%       { fill: rgba(245,245,240,0.40); }
}

/* ── D3: Rede de nós (Virada → Serviços) ── */
.div-d3 svg { width: 88px; height: 36px; }
.d3-node { fill: rgba(245,245,240,0.2); stroke: none; }
.d3-edge { stroke-dasharray: 80; stroke-dashoffset: 80; }

.div-d3.visible .d3-node  { animation: node-pop 0.3s ease forwards; }
.div-d3.visible .d3-e1    { animation: draw 0.4s ease forwards 0.2s; }
.div-d3.visible .d3-e2    { animation: draw 0.4s ease forwards 0.45s; }
.div-d3.visible .d3-e3    { animation: draw 0.4s ease forwards 0.7s; }
.div-d3.visible .d3-node  { animation: node-pop 0.3s ease forwards, node-pulse 3s ease-in-out infinite 1.2s; }

@keyframes node-pop {
    0%   { r: 0; opacity: 0; }
    70%  { r: 3.5; }
    100% { r: 2.5; opacity: 1; }
}
@keyframes node-pulse {
    0%, 100% { fill: rgba(245,245,240,0.18); }
    50%       { fill: rgba(245,245,240,0.6); }
}

/* ── D4: Funil estratégico (Serviços → Modelo) ── */
.div-d4 svg { width: 80px; height: 37px; }
.d4-f { stroke-dasharray: 200; stroke-dashoffset: 200; }
.d4-f1 { animation: none; }
.d4-f2 { animation: none; }
.d4-f3 { animation: none; }

.div-d4.visible .d4-f1 { animation: draw 0.6s ease forwards 0.1s, glow-d4 3s ease-in-out infinite 1.2s; }
.div-d4.visible .d4-f2 { animation: draw 0.5s ease forwards 0.55s, glow-d4 3s ease-in-out infinite 1.4s; }
.div-d4.visible .d4-f3 { animation: draw 0.3s ease forwards 0.95s, glow-d4 3s ease-in-out infinite 1.6s; }

.d4-f1 { stroke: rgba(245,245,240,0.22); }
.d4-f2 { stroke: rgba(245,245,240,0.30); }
.d4-f3 { stroke: rgba(245,245,240,0.40); }

@keyframes glow-d4 {
    0%, 100% { stroke-opacity: 0.8; }
    50%       { stroke-opacity: 0.25; }
}

/* ── D5: Losango irradiando (Modelo → Diferencial) ── */
.div-d5 svg { width: 80px; height: 37px; }
.d5-diamond { stroke-dasharray: 160; stroke-dashoffset: 160; }
.d5-ray     { stroke-dasharray: 20;  stroke-dashoffset: 20; stroke: rgba(245,245,240,0.15); }

.div-d5.visible .d5-diamond { animation: draw 0.7s ease forwards 0.1s, glow-d5 3.5s ease-in-out infinite 1.2s; }
.div-d5.visible .d5-r1      { animation: draw 0.3s ease forwards 0.7s, ray-pulse 3.5s ease-in-out infinite 1.4s; }
.div-d5.visible .d5-r2      { animation: draw 0.3s ease forwards 0.85s, ray-pulse 3.5s ease-in-out infinite 1.5s; }
.div-d5.visible .d5-r3      { animation: draw 0.3s ease forwards 1.0s, ray-pulse 3.5s ease-in-out infinite 1.6s; }
.div-d5.visible .d5-r4      { animation: draw 0.3s ease forwards 1.1s, ray-pulse 3.5s ease-in-out infinite 1.7s; }

@keyframes glow-d5 {
    0%, 100% { stroke: rgba(245,245,240,0.22); }
    50%       { stroke: rgba(245,245,240,0.6); }
}
@keyframes ray-pulse {
    0%, 100% { stroke: rgba(245,245,240,0.12); }
    50%       { stroke: rgba(245,245,240,0.45); }
}

/* ── D6: Alvo/Target (Diferencial → Para Quem) ── */
.div-d6 svg { width: 80px; height: 37px; }
.d6-ring  { stroke-dasharray: 200; stroke-dashoffset: 200; }
.d6-cross { stroke-dasharray: 20; stroke-dashoffset: 20; stroke: rgba(245,245,240,0.15); }

.d6-r1 { stroke: rgba(245,245,240,0.15); }
.d6-r2 { stroke: rgba(245,245,240,0.22); }
.d6-r3 { stroke: rgba(245,245,240,0.40); fill: rgba(245,245,240,0.15); }

.div-d6.visible .d6-r1    { animation: draw 0.6s ease forwards 0.1s,  ring-pulse 3s ease-in-out infinite 1.2s; }
.div-d6.visible .d6-r2    { animation: draw 0.5s ease forwards 0.45s, ring-pulse 3s ease-in-out infinite 1.35s; }
.div-d6.visible .d6-r3    { animation: draw 0.4s ease forwards 0.75s, ring-pulse 3s ease-in-out infinite 1.5s; }
.div-d6.visible .d6-cross { animation: draw 0.3s ease forwards 1.0s,  cross-pulse 3s ease-in-out infinite 1.6s; }

@keyframes ring-pulse {
    0%, 100% { stroke-opacity: 0.7; }
    50%       { stroke-opacity: 0.2; }
}
@keyframes cross-pulse {
    0%, 100% { stroke: rgba(245,245,240,0.12); }
    50%       { stroke: rgba(245,245,240,0.40); }
}

/* ── D7: Escada de crescimento (Para Quem → Visão) ── */
.div-d7 svg { width: 88px; height: 37px; }
.d7-step  { stroke-dasharray: 300; stroke-dashoffset: 300; }
.d7-arrow { stroke-dasharray: 20;  stroke-dashoffset: 20; }

.div-d7.visible .d7-step  { animation: draw 0.9s ease forwards 0.1s, step-pulse 3s ease-in-out infinite 1.5s; }
.div-d7.visible .d7-arrow { animation: draw 0.3s ease forwards 0.9s, step-pulse 3s ease-in-out infinite 1.6s; }

@keyframes step-pulse {
    0%, 100% { stroke: rgba(245,245,240,0.22); }
    50%       { stroke: rgba(245,245,240,0.60); }
}

/* Keyframe compartilhado de draw */
@keyframes draw {
    to { stroke-dashoffset: 0; }
}

/* ── Scroll reveal para os divisores ── */
.sec-divider {
    opacity: 0;
    transition: opacity 0.6s ease;
}
.sec-divider.visible {
    opacity: 1;
}

/* =====================
   INTERCALAÇÃO DE CORES / SEÇÕES
   ===================== */

/* Diferencial com degradê verde */
.diferencial--verde {
    background: linear-gradient(180deg, #0b2b26 0%, #0d2f29 40%, #0a0a0a 100%);
}

/* Para quem — escuro alternado, sem linha visível com vizinhos verdes */
.para-quem--dark {
    background: #0a0a0a;
}

/* Visão com toque de verde sutil */
.visao--verde {
    background: linear-gradient(180deg, #0a0a0a 0%, #091f1c 50%, #0b2b26 100%);
}

/* Seção contato — continuação direta do verde da visão */
.contato {
    background: linear-gradient(180deg, #0b2b26 0%, #080c0b 60%) !important;
}

/* =====================
   CORREÇÕES GERAIS DE OVERFLOW
   ===================== */

/* Previne qualquer elemento de vazar horizontalmente */
*, *::before, *::after {
    max-width: 100%;
}

h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* =====================
   MOBILE ABRANGENTE (480px)
   ===================== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Hero */
    .hero { padding: 120px 0 80px; }
    .hero-headline .line { font-size: 11.5vw; white-space: nowrap; }
    .hero-sub { font-size: 0.95rem; }
    .hero-sub br { display: none; }

    /* Tensão */
    .tensao { padding: 80px 0; }
    .tensao-grid { grid-template-columns: 1fr; gap: 40px; }
    .resultado-grid { grid-template-columns: 1fr; }

    /* Virada */
    .virada { padding: 80px 0; }
    .virada-headline { font-size: clamp(1.4rem, 7vw, 2.2rem); }
    .virada-headline br { display: none; }

    /* Serviços */
    .servicos { padding: 80px 0; }
    .servicos-grid { grid-template-columns: 1fr; }
    .servico-card { border-right: none; border-top: var(--border); }
    .servico-card:first-child { border-top: none; }

    /* Modelo */
    .modelo { padding: 80px 0; }
    .modelo-grid { grid-template-columns: 1fr; gap: 16px; }
    .modelo-card--1,
    .modelo-card--2 { padding: 28px 20px; }
    .modelo-card h3 { font-size: clamp(1.4rem, 8vw, 2rem); }
    .modelo-card-top { flex-wrap: wrap; gap: 12px; }

    /* Diferencial */
    .diferencial { padding: 80px 0; }
    .diferencial-grid { grid-template-columns: 1fr; gap: 40px; }
    .sim-item { font-size: 1.1rem; }

    /* Para quem */
    .para-quem { padding: 80px 0; }
    .paraquem-grid { grid-template-columns: 1fr; }
    .paraquem-item { border-right: none; border-top: var(--border); }
    .paraquem-item:first-child { border-top: none; }

    /* Visão */
    .visao { padding: 80px 0; }
    .visao-quote { font-size: clamp(1.4rem, 7vw, 2rem); }
    .visao-quote br { display: none; }
    .visao-lista { gap: 0; }
    .visao-lista span { font-size: 0.9rem; padding: 8px 14px; }

    /* Contato */
    .contato { padding: 80px 0; }
    .contato-grid { grid-template-columns: 1fr; gap: 40px; }
    .contato-header h2 { font-size: clamp(1.4rem, 7vw, 2rem); }
    .contato-header h2 br { display: none; }
    .contato-form { padding: 20px 16px; box-sizing: border-box; width: 100%; }
    .contato-form input,
    .contato-form textarea,
    .contato-form .btn { box-sizing: border-box; max-width: 100%; }

    /* Footer */

}
/* para-quem "não é" removido a pedido */

/* =====================
   PROCESSO / LINHA DO TEMPO
   ===================== */

.processo {
    padding: 120px 0;
    background: var(--bg);
}

.processo-sub {
    color: var(--white-dim);
    margin-top: 12px;
    margin-bottom: 64px;
    max-width: 520px;
    line-height: 1.7;
}

.processo-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.processo-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    position: relative;
}

.processo-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.processo-num {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(245,245,240,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.75rem;
    color: var(--white-dim);
    flex-shrink: 0;
    background: var(--bg);
    position: relative;
    z-index: 1;
    transition: border-color 0.3s, color 0.3s;
}

.processo-item--last .processo-num {
    border-color: var(--accent);
    color: var(--accent);
}

.processo-line {
    width: 1px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(to bottom, rgba(245,245,240,0.15), rgba(245,245,240,0.05));
    margin-top: 4px;
}

.processo-content {
    padding-bottom: 56px;
}

.processo-item--last .processo-content { padding-bottom: 0; }

.processo-tempo {
    font-family: var(--font-head);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.processo-content h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.processo-content p {
    color: var(--white-dim);
    line-height: 1.75;
    font-size: 0.97rem;
    max-width: 520px;
}

.processo-item:hover .processo-num {
    border-color: rgba(245,245,240,0.5);
    color: var(--white);
}

@media (max-width: 600px) {
    .processo-item { grid-template-columns: 52px 1fr; gap: 20px; }
    .processo-num  { width: 36px; height: 36px; font-size: 0.65rem; }
}

/* =====================
   FORMULÁRIO INTELIGENTE
   ===================== */

.form-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.form-option {
    padding: 12px 14px;
    border: 1px solid rgba(245,245,240,0.15);
    background: transparent;
    color: var(--white-dim);
    font-family: var(--font-body);
    font-size: 0.88rem;
    cursor: pointer;
    border-radius: 2px;
    text-align: left;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    line-height: 1.4;
}

.form-option:hover {
    border-color: rgba(245,245,240,0.4);
    color: var(--white);
}

.form-option.selected {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(232,224,208,0.05);
}

.label-opt {
    font-size: 0.8rem;
    opacity: 0.5;
    font-weight: 400;
}

@media (max-width: 600px) {
    .form-options { grid-template-columns: 1fr; }
}


    .blog-card--destaque { grid-row: auto; }
}

/* =====================
   FLUXO ORGÂNICO DE SCROLL
   ===================== */

#flow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* canvas ativo em mobile — 1 linha, alpha ajustado no JS */

/* Elementos interativos ficam acima do canvas */
header, .contato-form, .btn, input, textarea, select, .form-option {
    position: relative;
    z-index: 3;
}

/* =====================
   PARALLAX — overflow control
   ===================== */

/* Clip só horizontal para não vazar nas laterais,
   sem afetar o canvas fixed nem o conteúdo vertical */
.hero,
.tensao,
.virada,
.servicos,
.modelo,
.diferencial,
.para-quem,
.visao,
.processo {
    overflow-x: clip;
}

/* =====================================================================
   INSTAGRAM WEBVIEW FIX v5 — cole no FINAL do style.css substituindo
   tudo a partir de "CORREÇÕES MOBILE — HEADLINE E FORMULÁRIO"
   ===================================================================== */

/* ─── 1. BASE GLOBAL ─────────────────────────────────────────────────── */

html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

img, video, canvas, iframe, svg {
    max-width: 100%;
    height: auto;
}

/* ─── 2. HEADINGS — nunca quebram palavras no meio ───────────────────── */

h1, h2, h3, h4,
.hero-headline .line,
.virada-headline,
.visao-quote,
.tensao-left h2,
.diferencial-left h2,
.contato-header h2,
.prefooter-text,
.sim-item,
.modelo-card h3,
.servicos h2,
.para-quem h2,
.modelo h2,
.processo-content h3 {
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    white-space: normal;
}

/* ─── 3. MOBILE ABRANGENTE (≤ 600px) ────────────────────────────────── */

@media (max-width: 600px) {

    /* Container */
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }

    /* ── Hero ── */
    .hero { padding: 120px 0 80px; }

    .hero-headline .line {
        font-size: clamp(1.5rem, 7vw, 3.5rem) !important;
        line-height: 0.95;
        letter-spacing: -0.06em;
        display: block;
        width: 100%;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
    }

    .hero-sub {
        font-size: 0.95rem;
        max-width: 100%;
    }
    .hero-sub br { display: none; }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-ctas .btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 16px 20px;
        font-size: 0.75rem;
    }

    /* ── Botões globais ── */
    .btn {
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        text-align: center;
    }
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 0.75rem;
        box-sizing: border-box;
    }

    /* ── Tensão ── */
    .tensao { padding: 80px 0; }
    .tensao-grid { grid-template-columns: 1fr; gap: 40px; }
    .tensao-left h2 { font-size: clamp(1.2rem, 5.5vw, 2.2rem); }
    .resultado-grid { grid-template-columns: 1fr; }
    .resultado-item { padding: 12px 14px; font-size: 0.875rem; }

    /* ── Virada ──
       <br> mantido ativo: cada frase fica em sua própria linha.
       "Não só gerenciamos redes." → linha 1
       "Nós estruturamos crescimento." → linha 2
    */
    .virada { padding: 80px 0; }
    .virada-headline {
        font-size: clamp(1.2rem, 5vw, 2rem) !important;
        /* br NÃO ocultado — quebra de linha intencional preservada */
    }
    .virada-sub { font-size: 1rem; }

    /* ── Serviços ("O Que Fazemos") ── */
    .servicos { padding: 80px 0; }
    .servicos h2 { font-size: clamp(1.2rem, 5.5vw, 2rem); }
    .servicos-grid {
        grid-template-columns: 1fr;
        border: var(--border);
    }
    .servico-card {
        padding: 28px 24px;
        border-right: none;
        border-bottom: var(--border);
    }
    .servico-card:last-child { border-bottom: none; }

    /* ── Modelo ── */
    .modelo { padding: 80px 0; }
    .modelo h2 { font-size: clamp(1.2rem, 5.5vw, 2rem); }
    .modelo-grid { grid-template-columns: 1fr; gap: 16px; }
    .modelo-card--1,
    .modelo-card--2 {
        padding: 24px 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden;
    }
    .modelo-card h3 {
        font-size: clamp(1.2rem, 6.5vw, 1.8rem) !important;
        line-height: 1.1;
    }
    .modelo-card p, .modelo-item { font-size: 0.875rem; }
    .modelo-card-top { flex-wrap: wrap; gap: 10px; }
    .modelo-fase-badge { font-size: 0.6rem; padding: 5px 10px; }

    /* ── Diferencial ── */
    .diferencial { padding: 80px 0; }
    .diferencial-grid { grid-template-columns: 1fr; gap: 40px; }
    .diferencial-left h2 { font-size: clamp(1.2rem, 5.5vw, 2rem); }
    .sim-item { font-size: clamp(0.85rem, 4vw, 1.2rem); }

    /* ── Para quem ── */
    .para-quem { padding: 80px 0; }
    .para-quem h2 { font-size: clamp(1.2rem, 5.5vw, 2rem); }
    .paraquem-grid {
        grid-template-columns: 1fr;
        border: var(--border);
    }
    .paraquem-item {
        padding: 28px 24px;
        border-right: none;
        border-bottom: var(--border);
    }
    .paraquem-item:last-child { border-bottom: none; }
    .paraquem-item:first-child { border-top: none; }
    .paraquem-item p { font-size: 0.95rem; }

    /* ── Visão ──
       <br> mantido ativo: cada frase começa numa linha nova.
       "Presença digital não é sobre aparecer." → linha 1
       "É sobre construir ativo." → linha 2
    */
    .visao { padding: 80px 0; }
    .visao-quote {
        font-size: clamp(1.2rem, 5.5vw, 2rem) !important;
        /* br NÃO ocultado — quebra de linha intencional preservada */
    }
    .visao-lista { flex-wrap: wrap; gap: 0; }
    .visao-lista span {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
        padding: 8px 12px;
    }

    /* ── Contato / Formulário ── */
    .contato { padding: 80px 0; }
    .contato-grid { grid-template-columns: 1fr; gap: 40px; }
    .contato-header h2 { font-size: clamp(1.2rem, 5vw, 2rem) !important; }
    .contato-header h2 br { display: none; }
    .contato-header p { font-size: 0.95rem; }

    .contato-form {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 24px 16px !important;
        overflow: hidden;
    }
    .form-group input,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
    }
    .form-options {
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 100%;
    }
    .form-option {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: normal;
        font-size: 0.85rem;
    }
    .contato-form .btn,
    .contato-form button[type="submit"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal;
        font-size: 0.75rem;
        padding: 16px 12px;
        text-align: center;
    }

    /* ── Pré-footer ── */
    .prefooter { padding: 40px 0; }
    .prefooter-inner { flex-direction: column; text-align: center; gap: 24px; }
    .prefooter-text { font-size: clamp(1rem, 5vw, 1.5rem); }
    .prefooter .btn { width: 100%; box-sizing: border-box; }

    /* ── Footer ── */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }
    .footer-contact-item { font-size: 0.8rem; }

    /* ── Processo ── */
    .processo-item { grid-template-columns: 48px 1fr; gap: 16px; }
    .processo-num { width: 36px; height: 36px; font-size: 0.65rem; }
    .processo-content p { font-size: 0.9rem; }

}

/* ─── 4. TELAS MUITO ESTREITAS (≤ 360px) ────────────────────────────── */

@media (max-width: 360px) {

    .container { padding: 0 12px; }

    .hero-headline .line {
        font-size: clamp(1.3rem, 7vw, 2rem) !important;
        letter-spacing: -0.06em;
    }

    .tensao-left h2,
    .virada-headline,
    .servicos h2,
    .modelo h2,
    .modelo-card h3,
    .diferencial-left h2,
    .para-quem h2,
    .visao-quote,
    .contato-header h2,
    .prefooter-text {
        font-size: clamp(1rem, 5vw, 1.6rem) !important;
    }

    .btn, .btn-primary, .btn-ghost, .btn-whatsapp {
        font-size: 0.7rem;
        padding: 14px 12px;
        letter-spacing: 0.04em;
    }
    .contato-form .btn,
    .contato-form button[type="submit"] {
        font-size: 0.7rem;
        padding: 14px 10px;
    }

}