/* ==========================================================
   Do it! Print — CSS base do site público
   Consome as variáveis de theme.css (gerado pelo painel Aparência)
   ========================================================== */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.site {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--size-base);
    line-height: 1.6;
    background: var(--c-bg);
    color: var(--c-text);
}

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; }

img { max-width: 100%; height: auto; }

/* ---------- Marca ---------- */

.logo-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    background: var(--c-secondary);
    color: #fff;
    border-radius: 999px;
    padding: 7px 16px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.02em;
    text-decoration: none;
}
.logo-it { color: var(--c-primary); }
.logo-print { font-weight: 600; font-size: .8em; border-bottom: 3px solid var(--c-primary); padding-bottom: 1px; }

/* ---------- Estrutura de página (page builder) ---------- */

.pb-section { position: relative; }

.pb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: calc(var(--space) * 3);
    padding-right: calc(var(--space) * 3);
}
.pb-container.pb-full { max-width: none; padding: 0; }

.pb-row { display: flex; gap: calc(var(--space) * 4); }
.pb-col { flex: 1; min-width: 0; }

@media (max-width: 768px) {
    .pb-row { flex-direction: column; }
    .pb-col { flex-basis: auto !important; }
}

/* Visibilidade por dispositivo */
@media (min-width: 1025px) { .pb-hide-desktop { display: none !important; } }
@media (min-width: 769px) and (max-width: 1024px) { .pb-hide-tablet { display: none !important; } }
@media (max-width: 768px) { .pb-hide-mobile { display: none !important; } }

/* Seções escuras invertem o texto */
.pb-dark { color: #fff; }
.pb-dark h1, .pb-dark h2, .pb-dark h3, .pb-dark h4 { color: #fff; }

/* ---------- Blocos ---------- */

.blk-heading { margin: 0 0 calc(var(--space) * 2); letter-spacing: -.02em; }
.blk-heading h1, h1.blk-heading { font-size: clamp(2rem, 4.5vw, 3rem); }
h2.blk-heading { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; }
/* Kicker: h4 usado como etiqueta acima do título da seção */
h4.blk-heading {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--c-primary);
    margin-bottom: 10px;
}

.blk-text { margin: 0 0 calc(var(--space) * 2); }
.blk-text p { margin: 0 0 1em; }
.blk-text p:last-child { margin-bottom: 0; }
.blk-text a { color: var(--c-primary); }

.blk-image { margin: 0 0 calc(var(--space) * 2); }
.blk-image figcaption { font-size: .85em; color: var(--c-muted); margin-top: 6px; }
.blk-image-placeholder {
    padding: 40px;
    text-align: center;
    background: var(--c-surface);
    border: 2px dashed var(--c-muted);
    border-radius: var(--radius);
    color: var(--c-muted);
}

.blk-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s, filter .15s, background .15s, box-shadow .2s, color .15s;
}
.blk-btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.blk-btn-primary {
    background: var(--c-primary);
    color: var(--c-secondary);
    box-shadow: 0 6px 18px rgba(140,198,63,.35);
}
.blk-btn-primary:hover { box-shadow: 0 10px 26px rgba(140,198,63,.45); }
.blk-btn-secondary { background: var(--c-secondary); color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.blk-btn-outline { background: transparent; color: inherit; border-color: currentColor; }
.blk-btn-outline:hover { background: var(--c-primary); border-color: var(--c-primary); color: var(--c-secondary); filter: none; }
.blk-btn-sm { padding: 8px 18px; font-size: 13px; }
.blk-btn-lg { padding: 15px 34px; font-size: 17px; }
.blk-button-wrap { margin: 0 0 calc(var(--space) * 2); }

/* Hero */
.blk-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    overflow: hidden;
    margin: calc(var(--space) * -7) 0; /* compensa o padding da seção */
    padding: calc(var(--space) * 10) calc(var(--space) * 3);
}
.blk-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.5)); }
/* Glow verde da marca + textura de pontos sutil */
.blk-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 78% 18%, rgba(140,198,63,.22), transparent 65%),
        radial-gradient(ellipse 50% 45% at 12% 88%, rgba(140,198,63,.14), transparent 60%);
    pointer-events: none;
}
.blk-hero::after {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1.5px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 70%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 70%);
    pointer-events: none;
}
.blk-hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    gap: calc(var(--space) * 2.5);
    color: #fff;
}
.blk-hero-title {
    font-size: clamp(2.2rem, 5.4vw, 4rem);
    margin: 0;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    text-wrap: balance;
}
.blk-hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    margin: 0;
    opacity: .88;
    line-height: 1.6;
    max-width: 640px;
    text-wrap: balance;
}
.blk-hero-content[style*="center"] .blk-hero-subtitle { margin-inline: auto; }
.blk-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: inherit; margin-top: 6px; }

/* ---------- Header do site ---------- */

.site-header {
    background: rgba(13,13,13,.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
    color: #D9D9D9;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: .01em;
    position: relative;
    transition: color .15s;
}
.site-nav a:not(.site-nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: -6px;
    height: 2px;
    background: var(--c-primary);
    border-radius: 2px;
    transition: right .2s ease;
}
.site-nav a:not(.site-nav-cta):hover::after { right: 0; }
.site-nav a:hover { color: #fff; }
.site-nav-cta { color: var(--c-secondary) !important; }
.site-nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }

@media (max-width: 860px) {
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--c-secondary);
        flex-direction: column;
        padding: 18px;
        gap: 14px;
    }
    body.nav-open .site-nav { display: flex; }
    .site-nav-toggle { display: block; }
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--c-secondary);
    color: #B9BDB2;
    margin-top: 72px;
    border-top: 3px solid var(--c-primary);
    position: relative;
}
.site-footer::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 60% at 85% 0%, rgba(140,198,63,.07), transparent 60%);
    pointer-events: none;
}
.site-footer-inner {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 40px;
    padding-top: 56px;
    padding-bottom: 40px;
}
.site-footer h4 {
    color: #fff;
    margin: 0 0 14px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.site-footer h4::after {
    content: "";
    display: block;
    width: 26px; height: 2px;
    background: var(--c-primary);
    border-radius: 2px;
    margin-top: 8px;
}
.site-footer a { display: block; color: #B9BDB2; text-decoration: none; margin-bottom: 9px; font-size: 14px; transition: color .15s, transform .15s; }
.site-footer a:hover { color: var(--c-primary); transform: translateX(2px); }
.site-footer-about { font-size: 14px; margin-top: 16px; max-width: 320px; line-height: 1.7; }
.site-footer-bottom {
    position: relative;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    padding: 18px;
    font-size: 13px;
    color: #8A8E84;
}
@media (max-width: 768px) { .site-footer-inner { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- WhatsApp flutuante ---------- */

.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
    z-index: 60;
    transition: transform .15s;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ==========================================================
   FASE 4 — Biblioteca de blocos
   ========================================================== */

/* Grade reutilizável */
.blk-grid { display: grid; gap: calc(var(--space) * 3); }
.blk-cols-2 { grid-template-columns: repeat(2, 1fr); }
.blk-cols-3 { grid-template-columns: repeat(3, 1fr); }
.blk-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .blk-cols-3, .blk-cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blk-grid { grid-template-columns: 1fr !important; } }

.blk-video-empty {
    display: flex; align-items: center; justify-content: center;
    height: 100%; min-height: 120px;
    background: rgba(0,0,0,.04); border: 1px dashed var(--c-muted);
    border-radius: var(--radius); color: var(--c-muted); text-align: center; padding: 20px;
}

/* Cards */
.blk-cards { margin: 0 0 calc(var(--space) * 2); }
.blk-card {
    display: block; text-decoration: none; color: inherit;
    padding: calc(var(--space) * 3); border-radius: var(--radius);
    transition: transform .15s, box-shadow .15s;
}
.blk-cards-boxed .blk-card { border: 1px solid #E7EAE2; background: #fff; }
.blk-cards-boxed .blk-card:hover { border-color: var(--c-primary); }
.blk-cards-shadow .blk-card {
    background: #fff;
    border: 1px solid #EEF0EA;
    box-shadow: 0 2px 10px rgba(13,13,13,.05);
}
.blk-cards-shadow .blk-card:hover { border-color: rgba(140,198,63,.5); box-shadow: 0 14px 34px rgba(13,13,13,.1); }
.pb-dark .blk-cards-shadow .blk-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.blk-card { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.blk-card:hover { transform: translateY(-4px); }
.blk-card-icon {
    width: 58px; height: 58px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; line-height: 1;
    background: rgba(140,198,63,.13);
    border-radius: 16px;
    margin-bottom: 16px;
    color: #5a8b1e;
}
.blk-card-icon svg { width: 27px; height: 27px; }
.blk-card:hover .blk-card-icon { background: var(--c-primary); color: var(--c-secondary); transition: background .18s, color .18s; }
.pb-dark .blk-card-icon { background: rgba(140,198,63,.18); color: var(--c-primary); }
.blk-card-img { width: 100%; border-radius: calc(var(--radius) - 4px); margin-bottom: 14px; aspect-ratio: 16/10; object-fit: cover; }
.blk-card-title { margin: 0 0 8px; font-size: 1.15rem; }
.blk-card-text { margin: 0; color: var(--c-muted); }
.pb-dark .blk-card-text { color: rgba(255,255,255,.75); }

/* FAQ */
.blk-faq { max-width: 780px; margin: 0 auto; }
.blk-faq-item { border-bottom: 1px solid #e5e7eb; }
.pb-dark .blk-faq-item { border-color: rgba(255,255,255,.15); }
.blk-faq-q {
    cursor: pointer; list-style: none; padding: 18px 40px 18px 0; position: relative;
    font-weight: 600; font-family: var(--font-heading);
}
.blk-faq-q::-webkit-details-marker { display: none; }
.blk-faq-icon { position: absolute; right: 4px; top: 50%; width: 14px; height: 14px; transform: translateY(-50%); }
.blk-faq-icon::before, .blk-faq-icon::after { content: ""; position: absolute; background: var(--c-primary); border-radius: 2px; }
.blk-faq-icon::before { left: 0; right: 0; top: 6px; height: 2px; }
.blk-faq-icon::after { top: 0; bottom: 0; left: 6px; width: 2px; transition: transform .2s; }
.blk-faq-item[open] .blk-faq-icon::after { transform: scaleY(0); }
.blk-faq-a { padding: 0 0 18px; color: var(--c-muted); }
.pb-dark .blk-faq-a { color: rgba(255,255,255,.75); }

/* Tabs */
.blk-tabs { margin: 0 0 calc(var(--space) * 2); }
.blk-tabs-nav { display: flex; flex-wrap: wrap; gap: 4px; border-bottom: 2px solid #e5e7eb; margin-bottom: 20px; }
.blk-tabs-tab {
    border: none; background: none; cursor: pointer; padding: 12px 20px;
    font-weight: 600; font-family: var(--font-heading); color: var(--c-muted);
    border-bottom: 2px solid transparent; margin-bottom: -2px; font-size: 1rem;
}
.blk-tabs-tab.is-active { color: var(--c-text); border-bottom-color: var(--c-primary); }
.blk-tabs-panel { display: none; }
.blk-tabs-panel.is-active { display: block; animation: blk-fade .25s ease; }
@keyframes blk-fade { from { opacity: 0; transform: translateY(6px); } }

/* Depoimentos */
.blk-testimonials { margin: 0 0 calc(var(--space) * 2); }
.blk-testimonial {
    margin: 0; padding: calc(var(--space) * 3.5); background: #fff;
    border: 1px solid #EEF0EA;
    border-radius: 16px; box-shadow: 0 2px 10px rgba(13,13,13,.05);
    position: relative;
}
.blk-testimonial::before {
    content: "\201C";
    position: absolute;
    top: 10px; right: 22px;
    font-family: Georgia, serif;
    font-size: 4.6rem;
    line-height: 1;
    color: rgba(140,198,63,.28);
}
.pb-dark .blk-testimonial { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.blk-testimonial-quote { margin: 0 0 18px; font-size: 1.02rem; line-height: 1.7; }
.blk-testimonial-quote::before { content: none; }
.blk-testimonial-author { display: flex; align-items: center; gap: 12px; }
.blk-testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.blk-testimonial-initial {
    display: flex; align-items: center; justify-content: center;
    background: rgba(140,198,63,.16);
    color: #5a8b1e;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
}
.pb-dark .blk-testimonial-initial { color: var(--c-primary); }
.blk-testimonial-author strong { display: block; }
.blk-testimonial-author em { color: var(--c-muted); font-style: normal; font-size: .9em; }

/* Logos */
.blk-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: calc(var(--space) * 5); }
.blk-logo img { max-height: 54px; width: auto; }
.blk-logos-gray .blk-logo img { filter: grayscale(1); opacity: .6; transition: .2s; }
.blk-logos-gray .blk-logo:hover img { filter: none; opacity: 1; }

/* Timeline */
.blk-timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 28px; }
.blk-timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: #e5e7eb; }
.pb-dark .blk-timeline::before { background: rgba(255,255,255,.2); }
.blk-tl-item { position: relative; padding-bottom: 26px; }
.blk-tl-marker { position: absolute; left: -28px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--c-primary); box-shadow: 0 0 0 4px var(--c-bg); }
.blk-tl-date { font-size: .8rem; font-weight: 700; color: var(--c-primary); text-transform: uppercase; letter-spacing: .03em; }
.blk-tl-title { margin: 4px 0 6px; font-size: 1.1rem; }
.blk-tl-text { margin: 0; color: var(--c-muted); }

/* Equipe */
.blk-team { margin: 0 0 calc(var(--space) * 2); text-align: center; }
.blk-team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); margin-bottom: 12px; }
.blk-team-photo-empty { display: flex; align-items: center; justify-content: center; font-size: 54px; background: rgba(0,0,0,.05); }
.blk-team-name { margin: 0 0 2px; font-size: 1.1rem; }
.blk-team-role { margin: 0 0 8px; color: var(--c-primary); font-weight: 600; }
.blk-team-bio { margin: 0; color: var(--c-muted); font-size: .92em; }

/* Preços */
.blk-pricing { margin: 0 0 calc(var(--space) * 2); align-items: stretch; }
.blk-price {
    position: relative; padding: calc(var(--space) * 4) calc(var(--space) * 3);
    border: 1px solid #e5e7eb; border-radius: var(--radius); background: #fff;
    display: flex; flex-direction: column; text-align: center;
}
.pb-dark .blk-price { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.15); }
.blk-price-featured { border-color: var(--c-primary); border-width: 2px; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.blk-price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--c-primary); color: var(--c-secondary); font-size: .72rem; font-weight: 700; padding: 4px 14px; border-radius: 999px; text-transform: uppercase; }
.blk-price-name { margin: 0 0 10px; }
.blk-price-value { font-size: 2.2rem; font-weight: 800; font-family: var(--font-heading); margin-bottom: 18px; }
.blk-price-period { font-size: .9rem; font-weight: 500; color: var(--c-muted); }
.blk-price-features { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; flex: 1; }
.blk-price-features li { padding: 8px 0 8px 26px; position: relative; border-bottom: 1px solid #f0f0f0; }
.pb-dark .blk-price-features li { border-color: rgba(255,255,255,.1); }
.blk-price-features li::before { content: "\2714"; position: absolute; left: 0; color: var(--c-primary); font-weight: 700; }

/* Downloads */
.blk-downloads { list-style: none; padding: 0; margin: 0 0 calc(var(--space) * 2); display: flex; flex-direction: column; gap: 10px; }
.blk-download-link { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border: 1px solid #e5e7eb; border-radius: var(--radius); text-decoration: none; color: inherit; transition: .15s; }
.blk-download-link:hover { border-color: var(--c-primary); background: rgba(140,198,63,.06); }
.blk-download-icon { display: inline-flex; color: var(--c-muted); }
.blk-download-icon svg { width: 26px; height: 26px; }
.blk-download-arrow { display: inline-flex; }
.blk-download-arrow svg { width: 20px; height: 20px; }
.blk-download-info { flex: 1; }
.blk-download-info strong { display: block; }
.blk-download-info em { color: var(--c-muted); font-style: normal; font-size: .85em; }
.blk-download-arrow { color: var(--c-primary); font-size: 20px; }

/* Galeria */
.blk-gallery { margin: 0 0 calc(var(--space) * 2); }
.blk-gallery-grid, .blk-gallery-masonry { display: grid; gap: 12px; }
.blk-gallery-grid.blk-cols-2, .blk-gallery-masonry.blk-cols-2 { grid-template-columns: repeat(2, 1fr); }
.blk-gallery-grid.blk-cols-3, .blk-gallery-masonry.blk-cols-3 { grid-template-columns: repeat(3, 1fr); }
.blk-gallery-grid.blk-cols-4, .blk-gallery-masonry.blk-cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 560px) { .blk-gallery-grid, .blk-gallery-masonry { grid-template-columns: repeat(2, 1fr) !important; } }
.blk-gallery-item { margin: 0; overflow: hidden; border-radius: var(--radius); position: relative; }
.blk-gallery-grid .blk-gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.blk-gallery-item img { width: 100%; display: block; cursor: zoom-in; transition: transform .3s; }
.blk-gallery-item:hover img { transform: scale(1.04); }
.blk-gallery-item figcaption { font-size: .82rem; color: var(--c-muted); padding: 6px 2px; }
.blk-gallery-carousel { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; }
.blk-gallery-carousel .blk-gallery-item { flex: 0 0 min(80%, 340px); scroll-snap-align: start; }

/* Vídeo */
.blk-video { margin: 0 0 calc(var(--space) * 2); }
.blk-video-frame { position: relative; height: 0; overflow: hidden; border-radius: var(--radius); background: #000; }
.blk-video-frame iframe, .blk-video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* CTA */
.blk-cta {
    border-radius: 20px;
    padding: calc(var(--space) * 7) calc(var(--space) * 5);
    background:
        radial-gradient(ellipse 60% 80% at 85% 15%, rgba(140,198,63,.2), transparent 60%),
        linear-gradient(150deg, #0D0D0D 40%, #16200C 100%);
    color: #fff;
    margin: 0 0 calc(var(--space) * 2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(13,13,13,.18);
}
.blk-cta-accent {
    background:
        radial-gradient(ellipse 60% 80% at 85% 15%, rgba(255,255,255,.25), transparent 60%),
        linear-gradient(135deg, var(--c-primary), #79B32E);
    color: var(--c-secondary);
    box-shadow: 0 20px 50px rgba(140,198,63,.3);
}
.blk-cta-center { text-align: center; }
.blk-cta-center .blk-cta-body { max-width: 640px; margin: 0 auto 22px; }
.blk-cta-split { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.blk-cta-split .blk-cta-body { margin: 0; }
.blk-cta-title { margin: 0 0 8px; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.blk-cta-accent .blk-cta-title { color: var(--c-secondary); }
.blk-cta-text { margin: 0; opacity: .9; }
@media (max-width: 640px) { .blk-cta-split { flex-direction: column; text-align: center; } }

/* Ícone */
.blk-icon { display: flex; margin: 0 0 calc(var(--space) * 2); }
.blk-icon-inner { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: inherit; }
.blk-icon-glyph { display: inline-flex; color: var(--c-primary); }
.blk-icon-glyph svg { width: 1em; height: 1em; }
.blk-icon-label { font-weight: 600; }

/* Contato do rodapé com ícones */
.site-footer-contact { display: flex !important; align-items: flex-start; gap: 10px; }
.site-footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--c-primary); }
p.site-footer-contact { margin: 0; font-size: 14px; }

/* Contadores */
.blk-stats { margin: 0 0 calc(var(--space) * 2); text-align: center; }
.blk-stat { padding: 8px 0; }
.blk-stats.blk-grid { gap: 0; }
.blk-stat + .blk-stat { border-left: 1px solid rgba(140,198,63,.25); }
@media (max-width: 560px) { .blk-stat + .blk-stat { border-left: none; border-top: 1px solid rgba(140,198,63,.25); } }
.blk-stat-num { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; font-family: var(--font-heading); color: var(--c-primary); line-height: 1; letter-spacing: -.02em; }
.blk-stat-label {
    margin-top: 10px;
    color: var(--c-muted);
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.pb-dark .blk-stat-label { color: rgba(255,255,255,.65); }

/* Antes / Depois */
.blk-ba { margin: 0 0 calc(var(--space) * 2); }
.blk-ba-wrap { position: relative; overflow: hidden; border-radius: var(--radius); user-select: none; touch-action: none; }
.blk-ba-wrap img { display: block; width: 100%; }
.blk-ba-after { width: 100%; }
.blk-ba-before { position: absolute; inset: 0; width: 50%; overflow: hidden; border-right: 3px solid #fff; }
.blk-ba-before img { width: 100vw; max-width: none; height: 100%; object-fit: cover; }
.blk-ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--c-secondary); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,.3); cursor: ew-resize; font-size: 16px; }
.blk-ba-tag { position: absolute; bottom: 12px; padding: 4px 12px; background: rgba(0,0,0,.6); color: #fff; font-size: .78rem; border-radius: 999px; }
.blk-ba-tag-l { left: 12px; }
.blk-ba-tag-r { right: 12px; }

/* Lista */
.blk-list { list-style: none; padding: 0; margin: 0 0 calc(var(--space) * 2); }
.blk-list-item { display: flex; gap: 12px; padding: 7px 0; align-items: flex-start; }
.blk-list-marker { color: var(--c-primary); font-weight: 700; flex: none; display: inline-flex; margin-top: 2px; }
.blk-list-marker svg { width: 19px; height: 19px; }

/* Tabela */
.blk-table-wrap { overflow-x: auto; margin: 0 0 calc(var(--space) * 2); }
.blk-table { width: 100%; border-collapse: collapse; }
.blk-table th, .blk-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #e5e7eb; }
.pb-dark .blk-table th, .pb-dark .blk-table td { border-color: rgba(255,255,255,.15); }
.blk-table th { background: var(--c-secondary); color: #fff; font-family: var(--font-heading); }
.blk-table-striped tbody tr:nth-child(even) { background: rgba(0,0,0,.03); }

/* Mapa */
.blk-map { margin: 0 0 calc(var(--space) * 2); border-radius: var(--radius); overflow: hidden; }
.blk-map iframe { width: 100%; height: 100%; display: block; }

/* Formulário (placeholder Fase 5) */
.blk-form { max-width: 560px; margin: 0 auto calc(var(--space) * 2); }
.blk-form-title { margin: 0 0 16px; }
.blk-form-fields { display: flex; flex-direction: column; gap: 12px; }
.blk-form-fields input, .blk-form-fields textarea { padding: 12px 14px; border: 1px solid #d1d5db; border-radius: 8px; font: inherit; }
.blk-form-note { margin: 10px 0 0; font-size: .85em; color: var(--c-muted); }

/* Lightbox (galeria) */
.blk-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); display: flex; align-items: center; justify-content: center; z-index: 200; padding: 30px; cursor: zoom-out; }
.blk-lightbox img { max-width: 100%; max-height: 100%; border-radius: 6px; }

/* ---------- Animações de entrada (progressive enhancement) ----------
   Só ativam quando o site.js marca <html class="js-anim">, então sem JS
   (e no preview do editor) nada fica oculto. */
@media (prefers-reduced-motion: no-preference) {
    .js-anim main .pb-section:not(:first-child) .pb-row {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .6s ease, transform .6s ease;
    }
    .js-anim main .pb-section.sect-in .pb-row {
        opacity: 1;
        transform: none;
    }
}

/* ---------- Formulários (Fase 5) ---------- */
.blk-form-note-top { color: var(--c-muted); margin: 0 0 18px; }
.blk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.blk-form-real { display: flex; flex-direction: column; gap: 16px; max-width: 560px; }
.blk-form-field { display: flex; flex-direction: column; gap: 6px; }
.blk-form-label { font-weight: 600; font-size: .95em; }
.blk-form-req { color: #C62828; }
.blk-form-real input, .blk-form-real select, .blk-form-real textarea {
    padding: 12px 14px; border: 1px solid #d1d5db; border-radius: 8px; font: inherit;
    background: #fff; color: #141414; width: 100%;
}
.blk-form-real input:focus, .blk-form-real select:focus, .blk-form-real textarea:focus {
    outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(140,198,63,.25);
}
.blk-form-real textarea { resize: vertical; }
.blk-form-check label { display: flex; align-items: center; gap: 8px; font-weight: 400; cursor: pointer; }
.blk-form-check input { width: auto; }
.blk-form-submit { align-self: flex-start; border: none; cursor: pointer; margin-top: 4px; }
.blk-form-error { color: #C62828; font-size: .85em; }
.blk-form-field input:invalid { border-color: inherit; } /* só marca erro no submit */
.blk-form-alert { background: #FDECEC; color: #B91C1C; padding: 12px 16px; border-radius: 8px; margin: 0 0 18px; }
.blk-form-preview { padding: 16px; border: 1px dashed var(--c-muted); border-radius: var(--radius); color: var(--c-muted); }

/* Tela de sucesso */
.blk-form-success { text-align: center; padding: 20px 0; }
.blk-form-success-icon { font-size: 56px; }
.blk-form-success-wa { margin: 22px 0 12px; color: var(--c-muted); }
