/* ===== INNER PAGE HERO ===== */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--color-dark);
    overflow: hidden;
    padding-top: 80px;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(219,161,89,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(6,182,212,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero__bg--support {
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(219,161,89,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(219,161,89,0.04) 0%, transparent 50%);
}

/* ===== HERO BACKGROUND IMAGES ===== */

/* Projetos — homem de costas olhando para o mobile */
.page-hero--projetos .page-hero__bg {
    background:
        linear-gradient(to right, #0f172a 30%, rgba(15,23,42,0.80) 58%, rgba(15,23,42,0.20) 100%),
        url('https://images.pexels.com/photos/6248967/pexels-photo-6248967.jpeg?auto=compress&cs=tinysrgb&w=1600') right center / cover no-repeat;
}

/* Suporte — Brooklyn Bridge + skyline NYC noturna */
.page-hero--suporte .page-hero__bg {
    background:
        linear-gradient(to right, #0f172a 30%, rgba(15,23,42,0.80) 58%, rgba(15,23,42,0.20) 100%),
        url('https://images.pexels.com/photos/1755680/pexels-photo-1755680.jpeg?auto=compress&cs=tinysrgb&w=1600') right center / cover no-repeat;
}

/* Sites IA — mão robótica + rede neural azul */
.page-hero--ia .page-hero__bg {
    background:
        linear-gradient(to right, #0f172a 30%, rgba(15,23,42,0.80) 58%, rgba(15,23,42,0.20) 100%),
        url('https://images.pexels.com/photos/8386440/pexels-photo-8386440.jpeg?auto=compress&cs=tinysrgb&w=1600') right center / cover no-repeat;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 56px;
    padding-bottom: 80px;
    text-align: left;
    width: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero__title,
.page-hero__subtitle {
    max-width: 760px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    margin-bottom: 32px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--color-accent);
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 24px;
}

.page-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 40px;
}

.page-hero__content > .btn {
    align-self: flex-start;
    width: auto;
}

.page-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.page-hero__trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.trust-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ===== INNER SECTIONS ===== */
.inner-section {
    padding: var(--section-padding);
    background: var(--color-dark);
}

.inner-section--alt {
    background: var(--color-dark-2);
}

.text--white {
    color: var(--color-white);
}

.text--muted-dark {
    color: rgba(255,255,255,0.45);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.features-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(219,161,89,0.2);
    background: rgba(219,161,89,0.03);
    transform: translateY(-2px);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(219,161,89,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: start;
    margin-top: 16px;
}

.process-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    padding: 32px 24px;
}

.process-step__num {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

.process-step__arrow {
    font-size: 1.5rem;
    color: rgba(219,161,89,0.3);
    padding-top: 48px;
    align-self: flex-start;
}

/* ===== PLANS GRID ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.plan-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-card--featured {
    border-color: rgba(219,161,89,0.3);
    background: rgba(219,161,89,0.04);
    box-shadow: 0 0 40px rgba(219,161,89,0.06);
}

.plan-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.plan-card__name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.plan-card__desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.plan-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.plan-card__features li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.plan-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.875rem;
}

/* ===== INNER CTA ===== */
.inner-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #0c2840 100%);
    position: relative;
    overflow: hidden;
}

.inner-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(219,161,89,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.inner-cta__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.inner-cta__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.inner-cta__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

/* ===== SERVICE PAGES ===== */
.page-hero--servico .page-hero__bg,
.page-hero--como-funciona .page-hero__bg {
    background: none;
}

.page-hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26,26,26,0.85) 0%,
        rgba(26,26,26,0.6) 55%,
        rgba(26,26,26,0.25) 100%
    );
}

.page-hero__bg-overlay--strong {
    background: linear-gradient(
        to bottom,
        rgba(26,26,26,0.65) 0%,
        rgba(26,26,26,0.82) 100%
    );
}

.page-hero__content--center {
    text-align: center;
    align-items: center;
}

.page-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    transition: var(--transition);
    text-decoration: none;
}

.page-hero__back:hover {
    color: var(--color-accent);
}

/* Sections */
.page-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.page-section--light {
    background: var(--color-white);
}

.page-section--mint {
    background: var(--color-light);
}

.page-section__inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-section__inner--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.page-section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 16px 0 20px;
}

.page-section__text {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.page-section__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.page-section__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}


/* Infographics */
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.infographic-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.infographic-card:hover {
    border-color: rgba(219,161,89,0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(219,161,89,0.08);
}

.infographic-card__number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
}

.infographic-card__number span {
    font-size: 1.75rem;
}

.infographic-card__label {
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 12px;
}

.infographic-card__source {
    font-size: 0.75rem;
    color: var(--color-muted);
    font-style: italic;
}

/* Abordagem grid */
.abordagem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.abordagem-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.abordagem-card:hover {
    border-color: rgba(219,161,89,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(219,161,89,0.07);
}

.abordagem-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.abordagem-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.abordagem-card p {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.65;
}

/* Tags grid */
.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.tag-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
}

.tag-item:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Page CTA */
.page-cta {
    background: var(--gradient-accent);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.page-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-cta__inner {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.page-cta__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-cta__text {
    font-size: 1.0625rem;
    color: rgba(7,22,32,0.65);
    margin-bottom: 36px;
    line-height: 1.65;
}

/* Como Funciona page */
.cf-intro {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cf-intro__text {
    font-size: 1.125rem;
    color: var(--color-muted);
    line-height: 1.75;
}

.cf-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 56px 0;
    border-bottom: 1px solid var(--color-border);
}

.cf-step:last-child {
    border-bottom: none;
}

.cf-step__number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: center;
    padding-top: 8px;
}

.cf-step__content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: center;
    min-width: 0;
}

.cf-step__text,
.cf-step__visual {
    min-width: 0;
}

.cf-step--reverse .cf-step__content {
    grid-template-columns: 360px 1fr;
}

.cf-step--reverse .cf-step__text {
    order: 2;
}

.cf-step--reverse .cf-step__visual {
    order: 1;
}

.cf-step__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 12px 0 16px;
}

.cf-step__text p {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.cf-step__stat-card {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
}

.cf-stat__num {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
}

.cf-stat__num span {
    font-size: 2.5rem;
}

.cf-stat__label {
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.cf-step__img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.cf-step__img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVE — NEW REKINTSU COMPONENTS ===== */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {

    /* Page section 2-col */
    .page-section__inner--2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-section__img {
        max-height: 340px;
        object-fit: cover;
        border-radius: var(--radius-lg);
        width: 100%;
    }

    /* Infographic grid 4→2 */
    .infographic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Abordagem grid 4→2 */
    .abordagem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CF Step layout */
    .cf-step__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cf-step--reverse .cf-step__text {
        order: 0;
    }

    .cf-step--reverse .cf-step__visual {
        order: 1;
    }

    /* Processo steps 2→1 */
    .processo-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Mobile (≤ 640px) */
@media (max-width: 640px) {

    /* Infographic grid 2→1 */
    .infographic-grid {
        grid-template-columns: 1fr;
    }

    .infographic-card {
        padding: 28px 24px;
    }

    .infographic-card__number {
        font-size: 3rem;
    }

    /* Abordagem grid 2→1 */
    .abordagem-grid {
        grid-template-columns: 1fr;
    }

    /* Tags grid */
    .tags-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CF Step */
    .cf-step {
        padding: 40px 0;
        grid-template-columns: 56px 1fr;
        gap: 20px;
    }

    .cf-step__number {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }

    .cf-step__title {
        font-size: 1.625rem;
    }

    .cf-step__stat-card {
        padding: 32px 20px;
    }

    .cf-stat__num {
        font-size: 2.75rem;
    }

    /* Page hero on servico/como-funciona */
    .page-hero--servico,
    .page-hero--como-funciona {
        min-height: 55vh;
    }

    .page-hero__title {
        font-size: 2.25rem;
    }

    /* Page CTA */
    .page-cta__inner {
        padding: 60px 24px;
    }

    .page-cta__title {
        font-size: 1.875rem;
    }
}

/* ===== RESPONSIVE INNER PAGES ===== */
@media (max-width: 1024px) {
    .features-grid,
    .features-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step__arrow {
        display: none;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .features-grid,
    .features-grid--3 {
        grid-template-columns: 1fr;
    }

    .page-hero__title {
        font-size: 2.5rem;
    }

    .page-hero__actions {
        flex-direction: column;
    }

    .inner-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .page-hero__trust {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===== BLOG ===== */

/* Hero blog */
.page-hero--blog .page-hero__bg {
    background:
        radial-gradient(ellipse 70% 60% at 70% 40%, rgba(219,161,89,0.09) 0%, transparent 60%),
        var(--color-dark);
}

/* Filtros */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.blog-filter {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-muted);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.blog-filter:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-filter--active {
    background: var(--gradient-accent);
    color: var(--color-dark) !important;
    border-color: transparent;
    font-weight: 600;
}

/* Grid de posts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Card */
.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.09);
    border-color: rgba(219,161,89,0.25);
}

.blog-card__image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--color-light);
    flex-shrink: 0;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.04);
}

.blog-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-border);
}

.blog-card__category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-accent);
    color: var(--color-dark);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.blog-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
    font-size: 0.8125rem;
    color: var(--color-muted);
}

.blog-card__meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card__readmore {
    margin-left: auto;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Estado vazio */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--color-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.blog-empty svg {
    color: var(--color-border);
}

/* ===== POST SINGLE ===== */

/* Hero do post */
.post-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    background: var(--color-dark);
    overflow: hidden;
    padding-top: 80px;
}

.post-hero__bg {
    position: absolute;
    inset: 0;
}

.post-hero__bg--plain {
    background: radial-gradient(ellipse 60% 70% at 60% 40%, rgba(219,161,89,0.07) 0%, transparent 60%);
}

.post-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26,26,26,0.96) 0%,
        rgba(26,26,26,0.75) 45%,
        rgba(26,26,26,0.3) 100%
    );
}

.post-hero__content {
    position: relative;
    z-index: 1;
    padding-bottom: 56px;
    padding-top: 40px;
    width: 100%;
    text-align: left;
}

.post-hero__title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 16px 0 24px;
    max-width: 820px;
}

.post-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
}

.post-hero__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Layout post */
.post-body-section {
    padding: 80px 0;
    background: var(--color-white);
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

/* Conteúdo do artigo */
.post-content {
    font-size: 1.0625rem;
    color: var(--color-text);
    line-height: 1.8;
    max-width: 720px;
    min-width: 0;
    overflow: hidden;
    text-align: left;
}

/* Força alinhamento esquerdo — sobrescreve inline styles do editor CMS */
.post-content p,
.post-content li,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content div,
.post-content span {
    text-align: left !important;
}

.post-content img,
.post-content figure,
.post-content video,
.post-content iframe,
.post-content table {
    max-width: 100%;
    height: auto;
    display: block;
}

.post-content h2 {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border);
}

.post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 32px 0 12px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul, .post-content ol {
    margin: 0 0 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-content ul li {
    list-style: none;
    padding-left: 20px;
    position: relative;
    color: var(--color-text);
}

.post-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.post-content ol li {
    list-style: decimal;
    color: var(--color-text);
}

.post-content a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content strong {
    font-weight: 700;
    color: var(--color-text);
}

/* Sidebar */
.post-sidebar {
    position: sticky;
    top: 100px;
}

.post-sidebar__card {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.post-sidebar__avatar {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-dark);
}

.post-sidebar__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}

.post-sidebar__role {
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 500;
}

.post-sidebar__bio {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Responsivo blog */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .post-layout {
        grid-template-columns: 1fr;
    }
    .post-sidebar {
        position: static;
        max-width: 480px;
    }
}

@media (max-width: 640px) {
    .blog-grid,
    .blog-grid--3 {
        grid-template-columns: 1fr;
    }
    .blog-card__image {
        height: 180px;
    }
    .post-hero__title {
        font-size: 1.75rem;
    }
    .post-hero__meta {
        gap: 12px;
    }
    .post-content h2 {
        font-size: 1.375rem;
    }
}

/* ===== PÁGINA SOBRE A CLÍNICA ===== */

/* Hero com vídeo */
.page-hero__bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.page-hero--clinica .page-hero__bg-img {
    object-position: center 30%;
}

/* Currículo */
.clinica-curriculum {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clinica-curriculum__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.clinica-curriculum__icon {
    width: 36px;
    height: 36px;
    background: rgba(219,161,89,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.clinica-curriculum__item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.35;
    margin-bottom: 3px;
}

.clinica-curriculum__item span {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.55;
}

/* Seção vídeo */
.clinica-video-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
}

.clinica-video-section__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.clinica-video-section__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.clinica-video-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(26,26,26,0.96) 0%,
        rgba(26,26,26,0.88) 50%,
        rgba(26,26,26,0.3) 100%
    );
}

.clinica-video-section__inner {
    position: relative;
    z-index: 1;
    padding: 96px 0;
}

.clinica-video-section__content {
    max-width: 580px;
}

.clinica-video-section__title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 16px 0 20px;
}

.clinica-video-section__text {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 28px;
}

.clinica-video-section__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.clinica-video-section__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
}

.clinica-video-section__feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Galeria */
.clinica-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
}

.clinica-gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.clinica-gallery__item--large {
    height: 480px;
}

.clinica-gallery__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.clinica-gallery__col .clinica-gallery__item {
    flex: 1;
    height: 232px;
}

.clinica-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.clinica-gallery__item:hover img {
    transform: scale(1.03);
}

/* ===== RESPONSIVE SOBRE A CLÍNICA ===== */
@media (max-width: 768px) {
    .clinica-gallery {
        grid-template-columns: 1fr;
    }

    .clinica-gallery__item--large {
        height: 280px;
    }

    .clinica-gallery__col {
        flex-direction: row;
    }

    .clinica-gallery__col .clinica-gallery__item {
        height: 180px;
        flex: 1;
    }

    .clinica-video-section__overlay {
        background: rgba(26,26,26,0.88);
    }

    .clinica-video-section__content {
        max-width: 100%;
    }

    .clinica-curriculum__item {
        gap: 10px;
    }
}

/* ===== SIDEBAR RELATED POSTS ===== */
.post-sidebar__section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.post-sidebar__related-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    transition: opacity 0.2s;
}

.post-sidebar__related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-sidebar__related-item:hover {
    opacity: 0.8;
}

.post-sidebar__related-img {
    width: 64px;
    height: 48px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.post-sidebar__related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-sidebar__related-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.post-sidebar__related-cat {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.post-sidebar__related-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.35;
}


/* ================================================================
   REKINTSU FLOW — Redesign Editorial
   Palette: Cream / Ink / Copper
   Typography: Cormorant Garamond + Inter Tight
   ================================================================ */

/* ── Variáveis da paleta Flow ──────────────────────────────── */
.flow-page {
    --flow-cream:      #F2EDE4;
    --flow-cream-deep: #E8E0D2;
    --flow-ink:        #16140F;
    --flow-ink-soft:   #3A352B;
    --flow-copper:     #B26A48;
    --flow-copper-deep:#8C4F33;
    --flow-sage:       #7A8674;
    --flow-line:       rgba(22, 20, 15, 0.15);
    background: var(--flow-cream);
    font-family: 'Inter Tight', 'Inter', sans-serif;
}

/* ── Eyebrow ───────────────────────────────────────────────── */
.flow-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--flow-copper);
    margin-bottom: 20px;
}

.flow-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--flow-copper);
    flex-shrink: 0;
}

/* ── Section title ──────────────────────────────────────────── */
.flow-section-title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--flow-ink);
    margin-bottom: 40px;
}

.flow-section-title em {
    font-style: italic;
    color: var(--flow-copper);
}

/* ── Sections ─────────────────────────────────────────────────── */
.flow-section           { padding: 96px 0; }
.flow-section--cream    { background: var(--flow-cream); }
.flow-section--cream-deep { background: var(--flow-cream-deep); }

.flow-section-header { margin-bottom: 56px; }

/* ── HERO ────────────────────────────────────────────────────── */
.flow-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--flow-ink);
    overflow: hidden;
}

.flow-hero__video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.flow-hero__video-el {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
    pointer-events: none;
    display: block;
}

.flow-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(22,20,15,0.82) 0%,
        rgba(22,20,15,0.60) 55%,
        rgba(22,20,15,0.45) 100%
    );
    z-index: 1;
}

.flow-hero__inner {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
}

.flow-hero__content { max-width: 640px; }

.flow-hero__title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(4.5rem, 9vw, 9rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--flow-cream);
    margin: 0 0 28px;
}

.flow-hero__title em {
    font-style: italic;
    color: var(--flow-copper);
    display: block;
}

.flow-hero__subtitle {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    color: rgba(242,237,228,0.7);
    line-height: 1.55;
    margin-bottom: 36px;
    max-width: 480px;
}

.flow-hero__subtitle em { font-style: italic; }

.flow-btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(242,237,228,0.6);
    transition: color 0.2s;
}

.flow-btn-arrow:hover { color: var(--flow-copper); }

/* Stats strip */
.flow-hero__stats {
    position: relative;
    z-index: 3;
    background: rgba(242,237,228,0.96);
    backdrop-filter: blur(8px);
}

.flow-hero__stats-inner {
    display: flex;
    align-items: center;
    padding: 28px 0;
}

.flow-stat {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.flow-stat__num {
    display: block;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--flow-ink);
    line-height: 1;
    margin-bottom: 6px;
}

.flow-stat__label {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--flow-sage);
}

.flow-stat__divider {
    width: 1px;
    height: 40px;
    background: var(--flow-line);
    flex-shrink: 0;
}

/* ── CONCEITO ──────────────────────────────────────────────── */
.flow-concept {
    background: var(--flow-cream-deep);
    padding: 96px 0;
}

.flow-concept .flow-eyebrow { color: var(--flow-copper-deep); }
.flow-concept .flow-eyebrow::before { background: var(--flow-copper-deep); }

.flow-concept__statement {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.75;
    color: var(--flow-ink-soft);
    max-width: 780px;
    margin-bottom: 20px;
}

.flow-concept__statement em {
    font-style: italic;
    color: var(--flow-copper);
}

.flow-concept__sub {
    font-size: 1rem;
    color: var(--flow-sage);
    line-height: 1.8;
    max-width: 720px;
}

/* ── DARK STATEMENT ─────────────────────────────────────────── */
.flow-dark-statement {
    background: var(--flow-ink);
    padding: 96px 0;
}

.flow-dark-statement .flow-eyebrow { color: var(--flow-copper); }
.flow-dark-statement .flow-eyebrow::before { background: var(--flow-copper); }

.flow-big-statement {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--flow-cream);
    max-width: 860px;
}

.flow-big-statement em {
    font-style: italic;
    color: var(--flow-copper);
}

/* ── INFO BLOCKS (Para Quem) ─────────────────────────────────── */
.flow-info-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 32px;
    border-top: 1px solid var(--flow-line);
    border-left: 1px solid var(--flow-line);
}

.flow-info-block {
    padding: 36px 32px;
    border-right: 1px solid var(--flow-line);
    border-bottom: 1px solid var(--flow-line);
}

.flow-info-block__label {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--flow-copper);
    margin-bottom: 12px;
}

.flow-info-block__title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--flow-ink);
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.flow-info-block p {
    font-size: 0.9375rem;
    color: var(--flow-sage);
    line-height: 1.65;
}

.flow-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--flow-ink-soft);
    line-height: 1.65;
    padding: 16px 20px;
    border: 1px solid var(--flow-line);
    max-width: 780px;
}

.flow-note svg {
    flex-shrink: 0;
    color: var(--flow-copper);
    margin-top: 1px;
}

/* ── FEATURES GRID ──────────────────────────────────────────── */
.flow-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--flow-line);
    border-left: 1px solid var(--flow-line);
}

.flow-feature {
    padding: 36px 32px;
    border-right: 1px solid var(--flow-line);
    border-bottom: 1px solid var(--flow-line);
    transition: background 0.2s;
}

.flow-feature__num {
    display: block;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--flow-line);
    line-height: 1;
    margin-bottom: 16px;
}

.flow-feature h3 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--flow-ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.flow-feature p {
    font-size: 0.9375rem;
    color: var(--flow-sage);
    line-height: 1.65;
}

.flow-feature--accent {
    background: var(--flow-copper);
}

.flow-feature--accent .flow-feature__num { color: rgba(242,237,228,0.25); }
.flow-feature--accent h3 { color: var(--flow-cream); }
.flow-feature--accent p  { color: rgba(242,237,228,0.75); }

/* ── PRICING ────────────────────────────────────────────────── */
.flow-pricing {
    background: var(--flow-ink);
    padding: 96px 0;
}

.flow-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto 32px;
    border: 1px solid rgba(242,237,228,0.1);
}

.flow-plan {
    padding: 48px 40px;
    background: rgba(242,237,228,0.03);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    border-right: 1px solid rgba(242,237,228,0.08);
}

.flow-plan:last-child { border-right: none; }

.flow-plan--featured {
    background: rgba(178,106,72,0.07);
    border-right: none;
    border: 1px solid rgba(178,106,72,0.22);
}

.flow-plan__badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--flow-copper);
    color: var(--flow-cream);
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    padding: 7px;
}

.flow-plan__tag {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--flow-copper);
}

.flow-plan--featured .flow-plan__tag { margin-top: 28px; }

.flow-plan__freq {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--flow-cream);
}

.flow-plan__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flow-plan__original {
    font-size: 0.875rem;
    color: rgba(242,237,228,0.25);
    text-decoration: line-through;
}

.flow-plan__price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.flow-plan__amount {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--flow-cream);
    letter-spacing: -0.02em;
    line-height: 1;
}

.flow-plan__period {
    font-size: 1rem;
    color: rgba(242,237,228,0.35);
}

.flow-plan__economy {
    display: inline-block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--flow-copper);
    border: 1px solid rgba(178,106,72,0.35);
    padding: 3px 10px;
    letter-spacing: 0.03em;
}

.flow-plan__per-class {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(242,237,228,0.45);
    letter-spacing: -0.01em;
}

.flow-plan__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    border-top: 1px solid rgba(242,237,228,0.07);
    padding-top: 20px;
}

.flow-plan__list li {
    font-size: 0.9375rem;
    color: rgba(242,237,228,0.5);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.flow-plan__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--flow-copper);
}

.flow-plan__list li strong { color: var(--flow-copper); }

.flow-plan__btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.flow-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(242,237,228,0.6);
    border: 1px solid rgba(242,237,228,0.2);
    transition: all 0.2s;
}

.flow-btn-ghost:hover {
    color: var(--flow-cream);
    border-color: rgba(242,237,228,0.5);
}

.flow-btn-copper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--flow-copper);
    color: var(--flow-cream);
    transition: background 0.2s;
}

.flow-btn-copper:hover { background: var(--flow-copper-deep); }

.flow-pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(242,237,228,0.2);
    max-width: 480px;
    margin: 0 auto;
    font-family: 'Inter Tight', sans-serif;
}

/* ── COMPARATIVO ────────────────────────────────────────────── */
.flow-comparison-wrap {
    overflow-x: auto;
    border: 1px solid var(--flow-line);
    margin-bottom: 28px;
}

.flow-comparison {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    background: var(--flow-cream);
}

.flow-comparison thead tr { background: var(--flow-cream-deep); }

.flow-comparison th {
    padding: 20px 24px;
    text-align: left;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--flow-ink);
    border-bottom: 1px solid var(--flow-line);
    vertical-align: top;
    line-height: 1.4;
}

.flow-comparison th small {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--flow-sage);
    margin-top: 4px;
}

.flow-comparison__th-empty { width: 22%; }

.flow-comparison__th-highlight {
    background: rgba(178,106,72,0.05);
    border-left: 2px solid var(--flow-copper);
}

.flow-comparison__you-badge {
    display: inline-block;
    background: var(--flow-copper);
    color: var(--flow-cream);
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 8px;
}

.flow-comparison td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--flow-line);
    color: var(--flow-sage);
    line-height: 1.55;
}

.flow-comparison tbody tr:last-child td { border-bottom: none; }

.flow-comparison tbody td:nth-child(2) {
    background: rgba(178,106,72,0.04);
    border-left: 2px solid rgba(178,106,72,0.15);
    color: var(--flow-ink-soft);
    font-weight: 500;
}

.flow-comparison__label {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--flow-ink) !important;
}

.flow-comparison-note {
    text-align: center;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-size: 1.0625rem;
    color: var(--flow-sage);
    max-width: 600px;
    margin: 0 auto;
}

/* ── VAGAS (tabela editorial) ────────────────────────────────── */
.flow-vagas {
    background: var(--flow-cream);
    padding: 96px 0;
    scroll-margin-top: 80px;
}

.flow-vagas__header { margin-bottom: 56px; }

.flow-vagas__title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.02em;
    color: var(--flow-ink);
    margin-bottom: 20px;
}

.flow-vagas__title em {
    font-style: italic;
    color: var(--flow-copper);
}

.flow-vagas__sub {
    font-size: 1rem;
    color: var(--flow-sage);
    line-height: 1.65;
}

.flow-vagas__table {
    border: 1px solid var(--flow-line);
    margin-bottom: 4px;
}

.flow-vagas-row {
    display: grid;
    grid-template-columns: 1fr 100px auto auto;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-bottom: 1px solid var(--flow-line);
    transition: background 0.2s;
}

.flow-vagas-row:last-child { border-bottom: none; }
.flow-vagas-row:hover { background: var(--flow-cream-deep); }

.flow-vagas-row--ultima { background: rgba(178,106,72,0.04); }

.flow-vagas-row--fechada { opacity: 0.45; }

.flow-vagas-row__turma {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flow-vagas-row__dias {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--flow-ink);
    line-height: 1;
}

.flow-vagas-row__sub {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--flow-sage);
}

.flow-vagas-row__hora {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--flow-ink);
    letter-spacing: -0.02em;
    line-height: 1;
    text-align: center;
}

.flow-vagas-row__status {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.flow-vagas-dots {
    display: flex;
    gap: 5px;
    align-items: center;
}

.flow-vaga-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.flow-vaga-dot--ocupada {
    background: var(--flow-copper);
}

.flow-vaga-dot--livre {
    background: rgba(22, 20, 15, 0.12);
}

.flow-vagas-row__num {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--flow-copper);
    line-height: 1;
}

.flow-vagas-row__num--poucas { color: var(--flow-copper-deep); }

.flow-vagas-row__num-label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--flow-sage);
}

.flow-badge {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
}

.flow-badge--ultima {
    background: var(--flow-copper);
    color: var(--flow-cream);
}

.flow-badge--fechada {
    color: var(--flow-sage);
    border: 1px solid var(--flow-line);
}

.flow-vagas-row__btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 18px;
    background: #25D366;
    color: #fff;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s;
}

.flow-vagas-row__btn-wa:hover { background: #1EAF55; }

.flow-vagas-row--fechada .flow-vagas-row__btn-wa {
    background: rgba(22,20,15,0.1);
    color: var(--flow-sage);
    pointer-events: none;
}

.flow-vagas__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    background: var(--flow-ink);
    text-decoration: none;
    margin-bottom: 24px;
    transition: background 0.2s;
}

.flow-vagas__cta:hover { background: var(--flow-ink-soft); }

.flow-vagas__cta-title {
    display: block;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--flow-cream);
    line-height: 1.1;
    margin-bottom: 4px;
}

.flow-vagas__cta-sub {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242,237,228,0.35);
}

.flow-vagas__cta svg { color: var(--flow-copper); flex-shrink: 0; }

.flow-vagas__note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.8125rem;
    color: var(--flow-sage);
}

.flow-vagas__note svg { flex-shrink: 0; color: var(--flow-sage); }

/* ── HAYLA ───────────────────────────────────────────────────── */
.flow-hayla {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.flow-hayla__visual { overflow: hidden; }

.flow-hayla__visual img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.flow-hayla__content p {
    font-size: 1rem;
    color: var(--flow-ink-soft);
    line-height: 1.8;
    margin-bottom: 24px;
}

.flow-quote {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.125rem;
    color: var(--flow-ink);
    line-height: 1.65;
    border-left: 2px solid var(--flow-copper);
    padding: 16px 20px;
    margin: 24px 0;
    background: rgba(178,106,72,0.05);
}

.flow-quote em {
    font-style: italic;
    color: var(--flow-copper);
}

.flow-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flow-check-list li {
    font-size: 0.9375rem;
    color: var(--flow-ink-soft);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.flow-check-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--flow-copper);
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.flow-faq {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--flow-line);
}

.flow-faq-item {
    border-bottom: 1px solid var(--flow-line);
    overflow: hidden;
}

.flow-faq-item:last-child { border-bottom: none; }

.flow-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--flow-ink);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: color 0.2s;
}

.flow-faq-item summary::-webkit-details-marker { display: none; }
.flow-faq-item summary:hover { color: var(--flow-copper); }

.flow-faq-item summary svg {
    flex-shrink: 0;
    color: var(--flow-copper);
    transition: transform 0.25s;
}

.flow-faq-item[open] summary svg { transform: rotate(180deg); }

.flow-faq-item p {
    padding: 20px 28px 24px;
    font-size: 0.9375rem;
    color: var(--flow-sage);
    line-height: 1.75;
    border-top: 1px solid var(--flow-line);
}

/* ── FINAL CTA ──────────────────────────────────────────────── */
.flow-final-cta {
    background: var(--flow-ink);
    padding: 80px 0;
}

.flow-final-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.flow-final-cta__title {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 500;
    color: var(--flow-cream);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.flow-final-cta__sub {
    font-size: 1rem;
    color: rgba(242,237,228,0.4);
    line-height: 1.65;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .flow-hayla {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .flow-hayla__visual img { height: 380px; }

    .flow-plans {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .flow-plan { border-right: none !important; }
    .flow-plan--featured { margin-top: 0; }
}

@media (max-width: 768px) {
    .flow-hero__stats-inner {
        flex-direction: column;
        gap: 20px;
        padding: 32px 0;
    }
    .flow-stat__divider { width: 40px; height: 1px; }

    .flow-info-blocks { grid-template-columns: 1fr; }
    .flow-features-grid { grid-template-columns: repeat(2, 1fr); }

    .flow-vagas-row {
        grid-template-columns: 1fr auto;
        gap: 12px 16px;
    }
    .flow-vagas-row__hora {
        font-size: 2rem;
        grid-row: 1;
        grid-column: 2;
    }
    .flow-vagas-row__status {
        grid-row: 2;
        grid-column: 2;
        justify-content: flex-end;
    }
    .flow-vagas-row__btn-wa {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .flow-section        { padding: 64px 0; }
    .flow-concept        { padding: 64px 0; }
    .flow-dark-statement { padding: 64px 0; }
    .flow-pricing        { padding: 64px 0; }
    .flow-vagas          { padding: 64px 0; }
    .flow-final-cta      { padding: 60px 0; }

    .flow-hero__title { font-size: 4.5rem; }
    .flow-big-statement { font-size: 2.25rem; }
    .flow-vagas__title  { font-size: 3rem; }

    .flow-features-grid { grid-template-columns: 1fr; }

    .flow-vagas-row {
        grid-template-columns: 1fr auto;
        padding: 20px;
    }
    .flow-vagas-row__hora {
        font-size: 1.875rem;
        grid-row: 1;
        grid-column: 2;
    }
    .flow-vagas-row__status {
        grid-row: 2;
        grid-column: 1 / span 2;
        justify-content: flex-start;
    }
    .flow-vagas-row__btn-wa {
        grid-column: 1 / -1;
        justify-content: center;
        padding: 12px;
        font-size: 0.75rem;
    }

    .flow-vagas__cta { padding: 24px 20px; }
    .flow-vagas__cta-title { font-size: 1.5rem; }

    .flow-final-cta__inner { flex-direction: column; }

    .flow-comparison th,
    .flow-comparison td {
        padding: 12px 16px;
        font-size: 0.875rem;
    }
    .flow-hayla__visual img { height: 280px; }

    .flow-info-block { padding: 24px 20px; }
    .flow-plan { padding: 36px 28px; }
}
