/* ============================================================
   Nexus Consultoria — CSS
   ============================================================ */

:root {
    --primary: #0f172a;
    --primary-hover: #1e293b;
    --primary-soft: rgba(15, 23, 42, 0.08);
    --accent: #f97316;
    --accent-hover: #ea580c;
    --whatsapp: #25D366;

    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --bg-dark-soft: #1e293b;

    --text: #1e293b;
    --text-dim: #64748b;
    --text-bright: #ffffff;
    --text-light: #cbd5e1;

    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --border-dark: #334155;

    --font-head: 'Manrope', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-accent: 0 8px 30px rgba(249, 115, 22, 0.3);

    --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; font-weight: 700; }
h3 { font-size: 1.35rem; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Top bar ---------- */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 13px;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-info svg { color: var(--accent); }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-mark {
    width: 48px;
    height: 48px;
    background: var(--bg-dark);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.logo-text em {
    display: block;
    font-style: normal;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 4px;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}
.nav a {
    color: var(--text-dim);
    position: relative;
    padding: 4px 0;
}
.nav a:hover { color: var(--accent); }
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--t);
}
.nav a:hover::after { width: 100%; }

.menu-toggle { display: none; }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all var(--t);
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-block { width: 100%; }
.btn-lg { padding: 17px 36px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-soft);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}
.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
}
.pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(2); opacity: 0; }
}

.hero-title {
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.05;
}
.hero-title em {
    font-style: normal;
    color: var(--accent);
    position: relative;
    display: inline-block;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(249, 115, 22, 0.15);
    z-index: -1;
    border-radius: 4px;
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.stat strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.stat span {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    font-weight: 600;
}

/* ---------- Hero image ---------- */
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    filter: saturate(1.1);
}
.hero-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-card strong {
    display: block;
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--text);
    margin-bottom: 2px;
    font-weight: 700;
}
.hero-card span {
    font-size: 12.5px;
    color: var(--text-dim);
}

/* ---------- Trust bar ---------- */
.trust-bar {
    background: var(--bg-dark);
    color: #fff;
    padding: 32px 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.trust-item {
    display: flex;
    gap: 14px;
    align-items: center;
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-item strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.trust-item span {
    font-size: 12.5px;
    color: var(--text-light);
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-header .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 14px;
}
.section-header h2 em {
    font-style: normal;
    color: var(--accent);
}
.section-header p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-top: 12px;
}

/* ---------- Soluções ---------- */
.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.solucao {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px 32px;
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.solucao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}
.solucao:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.solucao:hover::before { transform: scaleX(1); }

.solucao-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all var(--t);
}
.solucao:hover .solucao-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}
.solucao h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 10px;
}
.solucao p {
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.65;
}

/* ---------- Metodologia ---------- */
.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.metodologia-step {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 28px 32px;
    position: relative;
    transition: all var(--t);
    border: 1px solid var(--border);
}
.metodologia-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}
.step-num {
    position: absolute;
    top: -20px;
    left: 28px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
}
.metodologia-step h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin: 12px 0 12px;
}
.metodologia-step p {
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 16px;
}
.step-time {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-soft);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- Números ---------- */
.numeros {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    color: #fff;
}
.numeros .section-header h2 { color: #fff; }
.numeros .section-header .eyebrow { color: var(--accent); }
.numeros .section-header h2 em { color: var(--accent); }

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.numero-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--t);
}
.numero-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    transform: translateY(-4px);
}
.numero-valor {
    display: block;
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}
.numero-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
}

/* ---------- Cases ---------- */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.case {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 30px 28px;
    border: 1px solid var(--border);
    transition: all var(--t);
    display: flex;
    flex-direction: column;
}
.case:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.case-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}
.case-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.case-header h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 2px;
}
.case-header span {
    font-size: 12.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.case-text {
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}
.case-resultado {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.15));
    border-left: 3px solid var(--accent);
    padding: 14px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 20px;
}
.case-resultado strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -1px;
}
.case-resultado span {
    font-size: 13px;
    color: var(--text-dim);
}
.case-metricas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.case-metricas > div {
    text-align: center;
}
.case-metricas strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.case-metricas span {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ---------- Equipe ---------- */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.consultor {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--t);
    border: 1px solid var(--border);
}
.consultor:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.consultor-foto {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    filter: grayscale(30%);
    transition: filter var(--t);
}
.consultor:hover .consultor-foto { filter: grayscale(0%); }

.consultor-info {
    padding: 24px 22px 28px;
    text-align: center;
}
.consultor-info h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 4px;
}
.consultor-info > span {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}
.consultor-info p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ---------- Contato / Formulário ---------- */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.contato-text .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 14px;
}
.contato-text h2 { margin-bottom: 20px; }
.contato-text h2 em {
    font-style: normal;
    color: var(--accent);
}
.contato-text > p {
    color: var(--text-dim);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.contato-list {
    display: grid;
    gap: 20px;
}
.contato-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contato-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contato-item strong {
    display: block;
    font-size: 14.5px;
    color: var(--text);
    margin-bottom: 2px;
    font-weight: 700;
}
.contato-item span {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.5;
}

.contato-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contato-form h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 8px;
}
.contato-form > p {
    color: var(--text-dim);
    font-size: 14.5px;
    margin-bottom: 28px;
}

/* ---------- Form ---------- */
.form-field { margin-bottom: 18px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-field label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text);
    transition: all var(--t);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
.form-field textarea {
    resize: vertical;
    min-height: 90px;
    font-family: inherit;
}

.form-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--text-dim);
    margin-top: 16px;
    justify-content: center;
}
.form-privacy svg { color: var(--accent); }

/* ---------- Depoimentos ---------- */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.depoimento {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    transition: all var(--t);
    border-top: 4px solid var(--accent);
}
.depoimento:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.depoimento .stars {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}
.depoimento p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text);
}
.depoimento strong {
    display: block;
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 2px;
}
.depoimento span {
    font-size: 12.5px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---------- CTA Final ---------- */
.cta-final {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--accent) 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-final .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 16px;
}
.cta-final h2 {
    color: #fff;
    margin-bottom: 20px;
}
.cta-final h2 em {
    font-style: normal;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}
.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-final .btn-primary {
    background: #fff;
    color: var(--accent);
    border-color: #fff;
}
.cta-final .btn-primary:hover {
    background: var(--bg-dark);
    color: #fff;
    border-color: var(--bg-dark);
}
.cta-final .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.cta-final .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-dark);
}
.footer-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    color: var(--text-light);
}
.footer h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-light);
}
.footer a:hover { color: var(--accent); }
.logo-footer .logo-mark {
    background: var(--accent);
    color: var(--bg-dark);
}
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text em { color: var(--accent); }
.footer-bottom {
    padding: 24px 0;
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom a { color: var(--accent); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--t);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

/* ---------- Demo banner ---------- */
.demo-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    z-index: 90;
}
.demo-banner a {
    color: var(--accent);
    font-weight: 700;
}
.demo-banner a:hover { color: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 991px) {
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .header-actions { display: none; }

    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-image { max-width: 400px; margin: 0 auto; }
    .hero-card { left: 10px; }

    .contato-grid { grid-template-columns: 1fr; gap: 50px; }
    .depoimentos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 575px) {
    .container { padding: 0 18px; }
    .section { padding: 60px 0; }
    .hero { padding: 50px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 24px; }
    .stat strong { font-size: 1.6rem; }

    .form-row { grid-template-columns: 1fr; }
    .contato-form { padding: 32px 24px; }

    .numeros-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .numero-card { padding: 28px 18px; }
    .numero-valor { font-size: 2rem; }

    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .demo-banner { bottom: 12px; left: 12px; right: 90px; font-size: 11px; }
    .whatsapp-float { bottom: 12px; right: 12px; width: 52px; height: 52px; }
}