/* =====================================================
   SuperPage — main.css
   Design system + all section styles
   ===================================================== */

/* ─────────────────────────────────────────────────────
   SITE HEADER / NAVBAR
───────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-block: 1.25rem;
    background: rgba(245, 240, 236, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    padding-block: 0.875rem;
    background: rgba(245, 240, 236, 0.96);
    border-bottom-color: var(--color-border);
    box-shadow: 0 4px 24px rgba(61, 53, 48, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* Logo / Site Name */
.site-branding {
    flex-shrink: 0;
}

.site-branding img,
.site-branding .custom-logo {
    height: 44px;
    width: auto;
}

.site-name {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

/* Navigation Menu */
.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-menu li a {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-muted);
    text-decoration: none;
    padding: 0.375rem 0;
    position: relative;
    transition: color var(--transition);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cta);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--color-text);
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    width: 100%;
}

/* Header CTA */
.header-btn {
    padding: 0.625rem 1.25rem;
    font-size: var(--fs-sm);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: var(--color-bg);
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-neuro);
    padding: 8px;
    cursor: pointer;
    margin-left: auto;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 53, 48, 0.4);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.mobile-overlay.is-open {
    display: block;
}

/* Site Wrapper (push content below fixed header) */
.site-wrapper {
    padding-top: 88px;
}


/* ─────────────────────────────────────────────────────
   BLOCO 1 — HERO SECTION
───────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-block: var(--space-3xl) calc(var(--space-3xl) + 60px);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-blob--peach {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    top: -100px;
    right: -80px;
}

.hero-blob--blue {
    width: 380px;
    height: 380px;
    background: var(--color-secondary);
    bottom: -60px;
    left: -60px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, var(--fs-5xl));
    font-weight: var(--fw-bold);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-block: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-dk) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--fs-lg);
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-btn-primary {
    font-size: var(--fs-lg);
    padding: 1rem 2.25rem;
}

/* Trust Badges */
.hero-badges {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: fit-content;
}

.badge-item {
    text-align: center;
}

.badge-item strong {
    display: block;
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
}

.badge-item span {
    font-size: var(--fs-xs);
    color: var(--color-muted);
}

.badge-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neuro);
    margin-bottom: var(--space-sm);
}

.hero-card-label {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
}

.hero-card-number {
    font-family: var(--font-heading);
    font-size: var(--fs-5xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-card-desc {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    margin-bottom: var(--space-sm);
}

.hero-card-bar {
    height: 8px;
    background: var(--color-bg);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-neuro-inset);
}

.hero-card-bar-fill {
    height: 100%;
    background: var(--gradient-cta);
    border-radius: 99px;
}

.hero-card-growth {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    color: #5B8A6A;
}

/* Wave Divider */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}


/* ─────────────────────────────────────────────────────
   BLOCO 2 — QUEM SOMOS
───────────────────────────────────────────────────── */
.quem-somos-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.qs-lead {
    font-size: var(--fs-lg);
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.qs-body {
    color: var(--color-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.qs-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.qs-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.qs-check {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--gradient-cta);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: var(--fw-bold);
    margin-top: 1px;
}

/* Quem somos visual card */
.qs-card {
    background: var(--color-bg);
}

.qs-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.qs-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-lg);
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
}

.qs-icon-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.qs-icon-item p {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text);
}


/* ─────────────────────────────────────────────────────
   BLOCO 3 — O QUE É O SUPERPAGE
───────────────────────────────────────────────────── */
.oque-section {
    position: relative;
}

.oque-wave-top,
.oque-wave-bottom {
    line-height: 0;
}

.oque-wave-top svg,
.oque-wave-bottom svg {
    width: 100%;
    height: 60px;
}

.oque-wave-top {
    margin-bottom: -1px;
}

.oque-wave-bottom {
    margin-top: -1px;
}

.oque-header {
    margin-bottom: var(--space-2xl);
}

.oque-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.oque-card {
    position: relative;
}

.oque-card--featured {
    background: linear-gradient(160deg, #fff 0%, #f9f0ec 100%);
    border: 2px solid var(--color-primary);
    transform: translateY(-8px);
}

.oque-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-cta);
    color: white;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    padding: 0.25rem 0.875rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.oque-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.oque-card-icon--peach {
    background: rgba(234, 184, 160, 0.18);
    color: var(--color-primary-dk);
}

.oque-card-icon--blue {
    background: rgba(168, 196, 212, 0.18);
    color: var(--color-secondary-dk);
}

.oque-card-icon--rose {
    background: rgba(212, 165, 181, 0.18);
    color: var(--color-accent);
}

.oque-card h3 {
    font-size: var(--fs-xl);
    margin-bottom: 0.75rem;
}

.oque-card p {
    color: var(--color-muted);
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.oque-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.oque-features li {
    font-size: var(--fs-sm);
    color: var(--color-text);
    padding-left: 1.25rem;
    position: relative;
}

.oque-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}


/* ─────────────────────────────────────────────────────
   BLOCO 4 — DIFERENCIAIS
───────────────────────────────────────────────────── */
.diferenciais-header {
    max-width: 640px;
    margin-bottom: var(--space-2xl);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.diferencial-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
}

.dif-number {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-border);
    line-height: 1;
    min-width: 36px;
}

.dif-content h3 {
    font-size: var(--fs-lg);
    margin-bottom: 0.5rem;
}

.dif-content p {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.7;
}


/* ─────────────────────────────────────────────────────
   BLOCO 5 — COMO CONTRATAR
───────────────────────────────────────────────────── */
.como-contratar-section {
    position: relative;
    background: var(--color-bg);
}

.cc-wave-top {
    line-height: 0;
    margin-bottom: -1px;
}

.cc-wave-top svg {
    width: 100%;
    height: 60px;
}

.cc-header {
    margin-bottom: var(--space-2xl);
}

/* Steps */
.cc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.cc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.cc-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-cta);
    color: white;
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.cc-step-number--blue {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dk));
}

.cc-step-number--rose {
    background: linear-gradient(135deg, var(--color-accent), #C08898);
}

.cc-step-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: var(--color-border);
    background-image: repeating-linear-gradient(90deg, var(--color-primary) 0, var(--color-primary) 6px,
            transparent 6px, transparent 14px);
}

.cc-step-connector--hidden {
    display: none;
}

.cc-step-content {
    padding: var(--space-lg);
}

.cc-step-content h3 {
    font-size: var(--fs-lg);
    margin-bottom: 0.75rem;
}

.cc-step-content p {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.cc-step-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: var(--fs-xs);
    color: var(--color-muted);
}

.cc-step-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: var(--fw-semi);
    color: var(--color-primary-dk);
}

/* Final CTA Block */
.cc-cta-card {
    background: linear-gradient(135deg, rgba(234, 184, 160, 0.15), rgba(168, 196, 212, 0.15));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cc-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(234, 184, 160, 0.2), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(168, 196, 212, 0.2), transparent 60%);
    pointer-events: none;
}

.cc-cta-card h3 {
    font-size: var(--fs-3xl);
    margin-bottom: 0.75rem;
    position: relative;
}

.cc-cta-card p {
    color: var(--color-muted);
    margin-bottom: var(--space-xl);
    position: relative;
}

.cc-cta-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
    position: relative;
}

.cc-btn-main {
    font-size: var(--fs-lg);
    padding: 1rem 2.25rem;
}

.cc-btn-whatsapp {
    background: #25D366;
    color: white;
}

.cc-btn-whatsapp:hover {
    background: #1da851;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.cc-cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--fs-xs);
    color: var(--color-muted);
    position: relative;
}


/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.75);
}

.footer-top {
    padding-block: var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: white;
}

.footer-tagline {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    color: white;
    margin-bottom: var(--space-md);
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav-list li a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-nav-list li a:hover {
    color: var(--color-primary);
}

.footer-contact p {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-cta-btn {
    background: var(--gradient-cta);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: var(--space-md);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.copyright,
.footer-credits {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.45);
}


/* ─────────────────────────────────────────────────────
   BLOG — POST GRID
───────────────────────────────────────────────────── */
.page-header {
    background: var(--gradient-hero);
    padding-block: var(--space-2xl);
    text-align: center;
}

.page-title {
    font-size: var(--fs-4xl);
    margin-block: var(--space-xs) var(--space-sm);
}

.page-subtitle {
    font-size: var(--fs-lg);
    color: var(--color-muted);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.post-card {
    padding: 0;
    overflow: hidden;
}

.post-card-thumbnail {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.post-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-thumbnail img {
    transform: scale(1.04);
}

.post-card-body {
    padding: var(--space-lg);
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.post-badge {
    font-size: var(--fs-xs);
    font-weight: var(--fw-semi);
    color: var(--color-primary-dk);
    background: rgba(234, 184, 160, 0.18);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.post-date {
    font-size: var(--fs-xs);
    color: var(--color-muted);
}

.post-author-name {
    font-size: var(--fs-xs);
    color: var(--color-muted);
}

.post-card-title {
    font-size: var(--fs-xl);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.post-card-title a {
    color: var(--color-text);
}

.post-card-title a:hover {
    color: var(--color-primary-dk);
}

.post-card-excerpt {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-read-more {
    padding: 0.5rem 1.125rem;
    font-size: var(--fs-sm);
}

.post-reading-time {
    font-size: var(--fs-xs);
    color: var(--color-muted);
}

/* Pagination */
.blog-pagination {
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    box-shadow: var(--shadow-neuro);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--gradient-cta);
    color: white;
    box-shadow: var(--shadow-card);
}


/* ─────────────────────────────────────────────────────
   SINGLE POST
───────────────────────────────────────────────────── */
.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-2xl);
    align-items: start;
}

.post-header {
    margin-bottom: var(--space-xl);
}

.post-header-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.post-single-title {
    font-size: clamp(1.75rem, 3vw, var(--fs-4xl));
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.post-single-excerpt {
    font-size: var(--fs-lg);
    color: var(--color-muted);
    line-height: 1.7;
}

.post-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-card);
}

.post-featured-image img {
    width: 100%;
    object-fit: cover;
}

.post-body {
    max-width: 720px;
}

.post-body h2 {
    font-size: var(--fs-2xl);
    margin-block: var(--space-xl) var(--space-sm);
}

.post-body h3 {
    font-size: var(--fs-xl);
    margin-block: var(--space-lg) var(--space-xs);
}

.post-body p {
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    line-height: 1.8;
}

.post-body ul,
.post-body ol {
    margin-left: 1.5rem;
    margin-bottom: var(--space-sm);
}

.post-body li {
    margin-bottom: 0.375rem;
}

.post-body blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: var(--space-md);
    font-style: italic;
    color: var(--color-muted);
    margin-block: var(--space-lg);
}

.post-footer {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.post-tags-label {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-tag {
    font-size: var(--fs-xs);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: var(--color-bg);
    box-shadow: var(--shadow-neuro);
    color: var(--color-muted);
}

.post-navigation {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.post-nav-label {
    display: block;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-bottom: 0.375rem;
}

.post-nav-title {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: var(--fw-semi);
    color: var(--color-text);
    transition: color var(--transition);
    display: block;
}

.post-nav-title:hover {
    color: var(--color-primary-dk);
}

.post-nav-next {
    text-align: right;
}

/* Sidebar */
.single-sidebar {
    position: sticky;
    top: 108px;
}

.sidebar-cta h3 {
    font-size: var(--fs-lg);
    margin-bottom: 0.75rem;
}

.sidebar-cta p {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.7;
}


/* ─────────────────────────────────────────────────────
   RESPONSIVE — TABLET (≤ 1024px)
───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-badges {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .quem-somos-inner {
        grid-template-columns: 1fr;
    }

    .oque-grid {
        grid-template-columns: 1fr;
    }

    .oque-card--featured {
        transform: none;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cc-steps {
        grid-template-columns: 1fr;
    }

    .cc-step-connector {
        display: none;
    }

    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-post-layout {
        grid-template-columns: 1fr;
    }

    .single-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* ─────────────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤ 768px)
───────────────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Header */
    .primary-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile nav */
    .primary-nav.is-open {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: var(--color-surface);
        box-shadow: -8px 0 32px rgba(61, 53, 48, 0.12);
        z-index: 999;
        padding: var(--space-2xl) var(--space-lg);
        flex-direction: column;
    }

    .primary-nav.is-open .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .primary-nav.is-open .nav-menu li a {
        font-size: var(--fs-lg);
    }

    /* Blocks */
    .hero-section {
        min-height: auto;
        padding-block: var(--space-2xl) calc(var(--space-2xl) + 60px);
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .badge-divider {
        width: 100%;
        height: 1px;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .post-nav-links {
        grid-template-columns: 1fr;
    }

    .cc-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cc-btn-main,
    .cc-btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ─────────────────────────────────────────────────────
   ANIMATIONS (delay support via CSS custom prop)
───────────────────────────────────────────────────── */
.fade-in {
    transition-delay: var(--delay, 0s);
}