/* ===== HERO (topo — ref. mockup) ===== */
.hero {
    position: relative;
    padding: 48px 0 0;
    background: var(--cream);
    overflow: hidden;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    grid-template-areas:
        "content image"
        "actions image";
    gap: 18px 48px;
    align-items: start;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px 32px;
}

.hero__content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 690px;
}

.hero__image-wrap { grid-area: image; align-self: center; }
.hero__actions { grid-area: actions; }

.hero__label {
    font-family: var(--font-sans);
    font-size: 1.0625rem; /* 17px */
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #4F7F7C;
    line-height: 1.4;
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-heading, var(--font-serif));
    font-size: 3.25rem; /* 52px — ≥1200px */
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #173F47;
    margin: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: none;
}

.hero__age {
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
    font-style: normal;
    letter-spacing: 0;
}

.hero__script {
    font-family: var(--font-script);
    font-size: 1.1em;
    font-weight: 600;
    font-style: normal;
    color: #E27662;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.hero__line {
    width: 72px;
    height: 3px;
    background: #E27662;
    border-radius: 999px;
    margin-top: 28px;
    margin-bottom: 28px;
    flex-shrink: 0;
}

.hero__text {
    font-family: var(--font-sans);
    font-size: 1.25rem; /* 20px */
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
    color: var(--color-text-secondary, #46515A);
    max-width: 620px;
    margin: 0;
}

.hero__actions {
    margin-top: 8px;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}

/* .btn--hero inherits .btn (17px, min-height) */
.hero__actions .btn--hero {
    box-shadow: 0 8px 20px rgba(226, 118, 98, 0.28);
}

.btn--wa .wa-icon,
.btn--wa .btn__wa-icon {
    flex-shrink: 0;
}

.btn--wa .btn__wa-icon {
    mix-blend-mode: normal;
}

/* Imagem do banner hero — PNG com forma orgânica já integrada */
.hero__image-wrap {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero__photo {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
}

/* Barra de features integrada ao hero */
.hero__features {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding: 0 28px 52px;
}

.features-bar {
    background: #FFFFFF;
    border: 1px solid rgba(23, 63, 71, 0.07);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(23, 63, 71, 0.06);
    padding: 18px 28px;
    max-width: var(--container);
    margin: 0 auto;
}

.features-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 0;
}

.feature-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 0 20px;
}

.feature-item:first-child {
    padding-left: 0;
}

.feature-item:last-child {
    padding-right: 0;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 54px;
    background: rgba(226, 118, 98, 0.22);
}

.feature-item__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #EEF4F1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D646D;
}

.feature-item__icon svg {
    display: block;
}

.feature-item__icon .feature-item__brazil {
    display: block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.feature-item__content {
    min-width: 0;
    text-align: left;
}

.feature-item__title {
    font-family: var(--font-sans);
    font-size: 1rem; /* 16px floor */
    font-weight: 700;
    line-height: 1.25;
    color: #253D43;
    margin-bottom: 2px;
}

.feature-item__desc {
    font-family: var(--font-sans);
    font-size: 1rem; /* 16px floor */
    font-weight: 400;
    line-height: 1.45;
    color: #5F696E;
}

/* legado — features-strip removido do HTML */
.features-strip {
    display: none;
}

/* ===== SOBRE ===== */
.sobre {
    padding: 32px 0;
}

.sobre__wrapper {
    position: relative;
}

.sobre__grid {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 40px;
    align-items: stretch;
}

.sobre__photo {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
    align-self: stretch;
}

.sobre__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% 58%;
    display: block;
}

.sobre__content {
    min-width: 0;
}

.sobre__content .sobre__intro {
    font-family: var(--font-body);
    font-size: 1.125rem; /* 18px — igual ao texto do corpo */
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    line-height: 1.7;
    margin: 0 0 12px;
    color: var(--color-text-primary, #2B2927);
}

.sobre__content .sobre__intro strong {
    font-weight: 700;
}

.sobre__crp-card {
    display: inline-block;
    max-width: 100%;
    margin: 24px 0 0;
    padding: 14px 20px 14px 18px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 5px solid var(--teal-dark);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.sobre__crp-card-name {
    margin: 0 0 4px;
    font-family: var(--font-body);
    font-size: 1.0625rem; /* 17px */
    font-weight: 700;
    line-height: 1.35;
    color: var(--teal-dark);
}

.sobre__crp-card-meta {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9375rem; /* 15px */
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-muted);
}

.sobre__text {
    font-size: 1.125rem; /* 18px */
    line-height: 1.7;
    max-width: 68ch;
    margin-bottom: 16px;
}

.sobre__callout {
    max-width: 68ch;
    margin: 8px 0 20px;
    padding: 18px 20px 18px 22px;
    background: #F4F7F8;
    border-left: 4px solid var(--teal-dark);
    border-radius: 8px;
}

.sobre__callout p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem; /* 17px */
    line-height: 1.7;
    color: var(--color-text-secondary, #494541);
}

.sobre__callout strong {
    font-weight: 700;
    color: var(--color-text-primary, #2B2927);
}

.sobre__checklist {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sobre__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.0625rem; /* 17px */
    line-height: 1.6;
}

.sobre__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 2px;
}

/* ===== COMO FUNCIONA ===== */
.como-funciona {
    background: transparent;
    padding: 32px 0 36px;
    margin-top: 0;
    border-radius: 0;
}

.como-funciona__box {
    position: relative;
    background: #FBF7F2;
    border: 1px solid rgba(23, 63, 71, 0.04);
    border-radius: 36px;
    padding: 36px 28px 30px;
    overflow: visible;
    box-shadow: none;
}

.como-funciona__deco {
    position: absolute;
    top: 50%;
    right: -4px;
    width: 64px;
    height: auto;
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
    transform: translate(42%, -58%) rotate(8deg);
}

.como-funciona__header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto 26px;
    max-width: 720px;
    padding-inline: 12px;
}

.como-funciona__header .section-title {
    text-align: center;
    margin-inline: auto;
    margin-bottom: 0;
}

.como-funciona__steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto;
    background: #FFFFFF;
    border: 1px solid rgba(23, 63, 71, 0.06);
    border-radius: 20px;
    padding: 18px 16px 52px;
    box-shadow: 0 4px 14px rgba(23, 63, 71, 0.035);
    overflow: visible;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Conectores sutis entre cards (desktop 4 colunas) */
.step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 46%;
    left: calc(100% + 2px);
    width: calc(18px - 4px);
    height: 1px;
    background: rgba(23, 63, 71, 0.14);
    pointer-events: none;
    z-index: 2;
}

.step-card:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(46% - 2px);
    left: calc(100% + 7px);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(23, 63, 71, 0.2);
    pointer-events: none;
    z-index: 3;
}

.step-card__num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--terracotta);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
}

.step-card__title {
    font-family: var(--font-sans);
    font-size: 1.375rem; /* 22px — matches .beneficio-item__title */
    font-weight: 600;
    line-height: 1.3;
    color: var(--teal-dark);
    margin: 0 0 8px;
}

.step-card__text {
    font-family: var(--font-sans);
    font-size: 1.0625rem; /* 17px — matches .beneficio-item__text */
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.step-card__icon-wrap {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 212, 200, 0.35);
    pointer-events: none;
}

.step-card__icon {
    width: 20px;
    height: 20px;
    color: #6E8F8A;
    opacity: 0.9;
}

@media (hover: hover) {
    .step-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(23, 63, 71, 0.055);
        border-color: rgba(226, 118, 98, 0.18);
    }
}

@media (min-width: 1200px) {
    .como-funciona__box {
        padding: 40px 36px 34px;
    }

    .como-funciona__deco {
        width: 68px;
        transform: translate(40%, -58%) rotate(8deg);
    }

    .como-funciona__steps {
        gap: 22px;
    }

    .step-card:not(:last-child)::after {
        width: calc(22px - 4px);
    }

    .step-card:not(:last-child)::before {
        left: calc(100% + 9px);
    }
}

@media (min-width: 1440px) {
    .como-funciona {
        padding: 40px 0 44px;
    }
}

/* Tablet: 2x2 — sem conectores horizontais */
@media (max-width: 1023px) {
    .step-card:not(:last-child)::before,
    .step-card:not(:last-child)::after {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .como-funciona__box {
        padding: 32px 22px 26px;
        border-radius: 28px;
    }

    .como-funciona__deco {
        width: 56px;
        opacity: 0.22;
        transform: translate(28%, -55%) rotate(8deg);
    }

    .como-funciona__header {
        margin-bottom: 22px;
    }

    .como-funciona__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .step-card {
        padding: 16px 14px 50px;
        border-radius: 18px;
    }
}

@media (max-width: 767px) {
    .como-funciona {
        padding: 24px 0 28px;
    }

    .como-funciona__box {
        padding: 28px 16px 20px;
        border-radius: 24px;
    }

    .como-funciona__deco {
        width: 48px;
        opacity: 0.2;
        right: 0;
        transform: translate(18%, -52%) rotate(8deg);
    }

    .como-funciona__header {
        margin-bottom: 18px;
        padding-inline: 4px;
    }

    .como-funciona__steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .step-card {
        padding: 16px 56px 16px 16px;
        border-radius: 18px;
        min-height: 0;
    }

    .step-card__icon-wrap {
        right: 14px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
    }

    .step-card__icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 389px) {
    .como-funciona__box {
        padding: 24px 12px 16px;
    }

    .step-card {
        padding-right: 52px;
    }

    .step-card__icon-wrap {
        width: 32px;
        height: 32px;
        right: 12px;
    }

    .step-card__icon {
        width: 16px;
        height: 16px;
    }
}

/* ===== ESPECIALIDADES ===== */
.especialidades {
    padding: 32px 0;
}

.especialidades__header {
    text-align: center;
    margin-bottom: 20px;
}

.especialidades__header .section-subtitle {
    margin: 0 auto;
}

.especialidades__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.esp-card {
    perspective: 1200px;
    min-height: 220px;
    height: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.esp-card__hit {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    border-radius: 22px;
}

.esp-card__hit:focus-visible {
    outline: 3px solid var(--terracotta);
    outline-offset: 3px;
}

.esp-card__inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    transform-style: preserve-3d;
    transition: transform 0.55s ease;
}

.esp-card.is-flipped .esp-card__inner {
    transform: rotateY(180deg);
}

.esp-card__face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 24px 36px;
    background: #FBF7F2;
    border-radius: 22px;
    border: 1px solid rgba(30, 57, 50, 0.06);
    box-shadow: 0 4px 18px rgba(23, 63, 71, 0.05);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.esp-card__face--front {
    gap: 10px;
}

.esp-card__face--back {
    transform: rotateY(180deg);
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 28px 26px;
    gap: 12px;
    background: var(--white);
}

.esp-card__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.esp-card__icon svg {
    width: 28px;
    height: 28px;
    max-width: 28px;
    max-height: 28px;
    display: block;
    flex-shrink: 0;
}

/* Maleta preenche mais o viewBox — escala óptica alinhada aos demais */
.esp-card__icon-svg--briefcase {
    transform: scale(0.86);
    transform-origin: center;
}

.esp-card__icon--peach {
    background: #F3E0D8;
    color: #B56A55;
}

.esp-card__icon--sage {
    background: #DCE8E0;
    color: #3D6B5A;
}

.esp-card__title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: var(--teal-dark);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.esp-card__back-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin: 0;
    line-height: 1.3;
}

.esp-card__hint {
    font-family: var(--font-body);
    font-size: 0.75rem; /* 12px */
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(23, 63, 71, 0.38);
    margin-top: 6px;
}

.esp-card__face--front .esp-card__hint {
    opacity: 0.85;
}

.esp-card__text {
    font-size: 1.0625rem; /* 17px */
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.esp-card__face--back .esp-card__hint {
    margin-top: auto;
    align-self: flex-end;
}

@media (prefers-reduced-motion: reduce) {
    .esp-card__inner {
        transition: none;
    }
}

/* ===== BENEFÍCIOS ===== */
.beneficios-section {
    padding: 32px 0;
}

.beneficios {
    max-width: var(--container);
    margin: 0 auto;
}

.beneficios__header {
    text-align: center;
    margin-bottom: 20px;
}

.beneficios__header .section-label {
    color: var(--sage-label);
}

.beneficios__strip {
    display: block;
    position: relative;
    z-index: 1;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 24px 32px;
    box-shadow: 0 4px 20px rgba(23, 63, 71, 0.04);
}

.beneficios__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0 20px;
    position: relative;
}

.beneficio-item:first-child {
    padding-left: 0;
}

.beneficio-item:last-child {
    padding-right: 0;
}

.beneficio-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 8%;
    height: 84%;
    width: 1px;
    background: rgba(23, 63, 71, 0.08);
}

.beneficio-item__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: var(--teal);
}

.beneficio-item__title {
    font-size: 1.375rem; /* 22px — h3 */
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.beneficio-item__text {
    font-size: 1.0625rem; /* 17px */
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== AVALIAÇÕES ===== */
.avaliacoes {
    position: relative;
    isolation: isolate;
    padding: 40px 0;
    background: #FFFBF5;
    overflow: hidden;
}

.avaliacoes__deco {
    position: absolute;
    width: 118px;
    height: auto;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.avaliacoes__deco--tl {
    top: 36px;
    left: 8px;
    transform: rotate(-18deg);
}

.avaliacoes__deco--br {
    bottom: 28px;
    right: 8px;
    transform: scaleX(-1) scaleY(-1) rotate(-8deg);
}

.avaliacoes__inner {
    position: relative;
    z-index: 1;
}

.avaliacoes__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 24px;
}

.avaliacoes__header .section-title {
    margin-bottom: 0;
}

.avaliacoes__carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
}

.avaliacoes__viewport {
    overflow: hidden;
    width: 100%;
    min-width: 0;
    padding: 18px 4px 10px;
}

.avaliacoes__track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.avaliacoes__card {
    position: relative;
    flex: 0 0 auto;
    width: 86%;
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: 0;
    padding: 28px 24px 26px;
    background: #FFFFFF;
    border: 1px solid rgba(23, 63, 71, 0.07);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(23, 63, 71, 0.04);
    opacity: 1;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.45s ease;
}

.avaliacoes__card.is-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 28px rgba(23, 63, 71, 0.07);
    z-index: 1;
}

.avaliacoes__card.is-near,
.avaliacoes__card.is-in-view {
    opacity: 1;
    transform: scale(1);
}

.avaliacoes__marks {
    display: block;
    font-family: var(--font-heading, "Playfair Display", Georgia, serif);
    font-size: 3.25rem;
    line-height: 0.7;
    color: rgba(45, 100, 109, 0.28);
    margin-bottom: 12px;
    user-select: none;
}

.avaliacoes__marks--close {
    margin-bottom: 16px;
    margin-top: 4px;
    text-align: right;
    line-height: 0.55;
}

.avaliacoes__text {
    margin: 0;
    font-family: var(--font-heading, "Playfair Display", Georgia, serif);
    font-style: normal;
    font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
    font-weight: 400;
    line-height: 1.55;
    color: #174A56;
    flex: 1;
}

.avaliacoes__accent {
    display: block;
    width: 40px;
    height: 2px;
    margin-top: auto;
    background: #E27662;
    border-radius: 2px;
}

.avaliacoes__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid rgba(23, 63, 71, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #173F47;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.avaliacoes__arrow:hover {
    border-color: #E27662;
    color: #E27662;
}

.avaliacoes__arrow:focus-visible {
    outline: 3px solid #E27662;
    outline-offset: 2px;
}

.avaliacoes__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin-top: 16px;
}

.avaliacoes__dot {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.avaliacoes__dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(23, 63, 71, 0.22);
    transition: background 0.2s ease, transform 0.2s ease;
}

.avaliacoes__dot.is-active::before {
    background: #E27662;
    transform: translate(-50%, -50%) scale(1.15);
}

.avaliacoes__dot:focus-visible {
    outline: 3px solid #E27662;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .avaliacoes__track,
    .avaliacoes__card {
        transition: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .avaliacoes {
        padding: 36px 0;
    }

    .avaliacoes__header {
        margin-bottom: 20px;
    }

    .avaliacoes__card {
        width: 48%;
        padding: 30px 26px 28px;
    }
}

@media (min-width: 1024px) {
    .avaliacoes {
        padding: 44px 0;
    }

    .avaliacoes__carousel {
        gap: 12px;
    }

    .avaliacoes__viewport {
        padding: 14px 6px 8px;
    }

    .avaliacoes__track {
        gap: 20px;
    }

    .avaliacoes__card {
        width: 31%;
        padding: 32px 28px 28px;
        min-height: 220px;
    }

    .avaliacoes__card:not(.is-active),
    .avaliacoes__card.is-near,
    .avaliacoes__card.is-active {
        transform: scale(1);
        opacity: 1;
    }

    .avaliacoes__text {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .avaliacoes {
        padding: 28px 0;
    }

    .avaliacoes__header {
        margin-bottom: 18px;
        padding: 0 4px;
    }

    .avaliacoes__carousel {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .avaliacoes__arrow {
        display: none;
    }

    .avaliacoes__viewport {
        padding: 8px 0 4px;
    }

    .avaliacoes__card {
        width: 92%;
        min-height: auto;
        padding: 26px 22px 24px;
        transform: scale(1);
        opacity: 1;
    }

    .avaliacoes__card.is-active,
    .avaliacoes__card.is-near {
        transform: scale(1);
        opacity: 1;
    }

    .avaliacoes__deco {
        width: 88px;
        opacity: 0.09;
    }

    .avaliacoes__deco--tl {
        top: 18px;
        left: auto;
        right: 4px;
        transform: scaleX(-1) rotate(-12deg);
    }

    .avaliacoes__deco--br {
        bottom: 18px;
        right: auto;
        left: 4px;
        transform: scaleY(-1) rotate(8deg);
    }
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
    padding: 32px 0;
    background: var(--cream);
}

.blog-preview__header {
    text-align: center;
    margin-bottom: 20px;
}

.blog-preview__header .section-subtitle {
    margin: 0 auto;
}

.blog-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: auto;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.04);
}

.blog-card__body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__date {
    font-size: 1rem; /* 16px */
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--terracotta);
    margin-bottom: 8px;
}

.blog-card__title {
    font-family: var(--font-sans);
    font-size: 1.375rem; /* 22px */
    font-weight: 600;
    color: var(--teal-dark);
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-card__excerpt {
    font-size: 1.0625rem; /* 17px */
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.blog-card__link {
    font-size: 1.0625rem; /* 17px */
    font-weight: 600;
    color: var(--terracotta);
}

.blog-preview__cta {
    text-align: center;
    margin-top: 28px;
}

/* ===== FAQ ===== */
.faq {
    padding: 32px 0;
}

.faq__header {
    text-align: center;
    margin-bottom: 18px;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(23, 63, 71, 0.03);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    min-height: 4.75rem;
    box-sizing: border-box;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1.1875rem; /* 19px */
    font-weight: 600;
    line-height: 1.4;
    color: var(--teal-dark);
}

.faq-item__toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: none;
    color: var(--terracotta);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s;
}

.faq-item__answer {
    display: none;
    padding: 0 18px 14px;
    font-size: 1.125rem; /* 18px */
    line-height: 1.7;
    max-width: 68ch;
    color: var(--text-muted);
}

.faq-item.is-open .faq-item__toggle {
    transform: rotate(45deg);
}

.faq-item.is-open .faq-item__answer {
    display: block;
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 0 24px 40px;
}

.cta-final__panel {
    position: relative;
    isolation: isolate;
    max-width: 1220px;
    margin: 0 auto;
    background: #E7EFEB;
    border: 1px solid rgba(23, 63, 71, 0.08);
    border-radius: 28px;
    overflow: hidden;
    padding: 40px 40px 28px;
}

.cta-final__top {
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(320px, 1.15fr);
    gap: 36px 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.cta-final__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 460px;
}

.cta-final__title {
    font-family: var(--font-heading, var(--font-serif));
    font-size: 1.75rem; /* 28px — matches .section-title */
    font-weight: 600;
    line-height: 1.25;
    color: #173F47;
    margin: 0 0 12px;
}

.cta-final__text {
    font-family: var(--font-sans);
    font-size: 1.1875rem; /* 19px */
    line-height: 1.65;
    color: #5A6E72;
    max-width: 68ch;
    margin: 0 0 24px;
}

.cta-final__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-final__actions .btn {
    /* inherit global .btn sizes */
    width: auto;
    white-space: nowrap;
}

.cta-final__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 18px;
    position: relative;
    z-index: 1;
}

.cta-pillar {
    text-align: left;
}

.cta-pillar__icon {
    width: 48px;
    height: 48px;
    color: #2D646D;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(45, 100, 109, 0.1);
    box-shadow: inset 0 0 0 1px rgba(45, 100, 109, 0.12);
}

.cta-pillar__icon svg {
    display: block;
    flex-shrink: 0;
}

.cta-pillar__title {
    font-family: var(--font-sans);
    font-size: 1.375rem; /* 22px */
    font-weight: 600;
    color: #173F47;
    margin: 0 0 8px;
    line-height: 1.3;
}

.cta-pillar__text {
    font-family: var(--font-sans);
    font-size: 1.0625rem; /* 17px */
    line-height: 1.6;
    color: #64777B;
    margin: 0;
    max-width: 180px;
}

.cta-final__leaf {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.cta-final__leaf--top {
    right: 18px;
    top: 20px;
    width: 120px;
    transform: rotate(18deg);
}

.cta-final__leaf--mid {
    right: -10px;
    top: 46%;
    width: 90px;
    transform: rotate(-12deg);
    opacity: 0.1;
}

.cta-final__panel .contact-bar {
    position: relative;
    z-index: 1;
    padding: 0;
    max-width: none;
    margin: 0;
}

.cta-final__panel .contact-bar__inner {
    background: #fff;
    border-radius: 18px;
    padding: 22px 28px;
    box-shadow: 0 8px 24px rgba(23, 63, 71, 0.06);
    border: 1px solid rgba(23, 63, 71, 0.06);
}

.contact-bar__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #EEF4F1;
    color: #2D646D;
    flex-shrink: 0;
}

.contact-bar__icon-wrap .contact-bar__icon {
    width: 22px;
    height: 22px;
}

.contact-bar__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: center;
}

.contact-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.contact-bar__item:first-child {
    padding-left: 0;
}

.contact-bar__item:last-child {
    padding-right: 0;
}

.contact-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(23, 63, 71, 0.08);
}

.contact-bar__title {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    line-height: 1.4;
    color: #173F47;
    margin: 0 0 2px;
}

.contact-bar__sub {
    font-size: 1rem; /* 16px */
    line-height: 1.5;
    color: #718286;
    margin: 0;
}

@media (max-width: 991px) {
    .cta-final__panel {
        padding: 32px 24px 24px;
    }

    .cta-final__top {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 16px;
    }

    .cta-final__content {
        display: contents;
        max-width: none;
    }

    .cta-final__title {
        order: 1;
        font-size: 1.5rem; /* 24px — matches .section-title tablet */
    }

    .cta-final__text {
        order: 2;
        margin-bottom: 0;
    }

    .cta-final__pillars {
        order: 3;
        gap: 20px 14px;
    }

    .cta-final__actions {
        order: 4;
        margin-top: 4px;
    }

    .cta-pillar__text {
        max-width: none;
    }

    .cta-pillar__title {
        font-size: 1.25rem; /* 20px */
    }
}

@media (max-width: 767px) {
    .cta-final {
        padding: 0 16px 32px;
    }

    .cta-final__panel {
        padding: 28px 20px 20px;
        border-radius: 22px;
    }

    .cta-final__title {
        font-size: 1.375rem; /* 22px — matches .section-title mobile */
    }

    .cta-final__text {
        font-size: 1.125rem; /* 18px */
    }

    .cta-final__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cta-final__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-final__pillars {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .cta-pillar {
        display: grid;
        grid-template-columns: 44px 1fr;
        grid-template-areas:
            "icon title"
            "icon text";
        column-gap: 14px;
        align-items: start;
    }

    .cta-pillar__icon {
        grid-area: icon;
        margin-bottom: 0;
        width: 44px;
        height: 44px;
    }

    .cta-pillar__icon svg {
        width: 22px;
        height: 22px;
    }

    .cta-pillar__title {
        grid-area: title;
        margin-bottom: 4px;
        font-size: 1.25rem; /* 20px */
    }

    .cta-pillar__text {
        grid-area: text;
    }

    .cta-final__leaf--top {
        width: 80px;
        opacity: 0.08;
    }

    .cta-final__leaf--mid {
        display: none;
    }

    .cta-final__panel .contact-bar__inner {
        padding: 18px 16px;
        gap: 18px;
    }
}

@media (max-width: 374px) {
    .cta-final__title {
        font-size: 1.25rem; /* 20px — matches .section-title */
    }
}

/* ===== RESPONSIVE ===== */

/* Hero title — 992–1199 */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero__title {
        font-size: 2.875rem; /* 46px */
        line-height: 1.12;
    }
}

/* Hero title — 768–991 */
@media (min-width: 768px) and (max-width: 991px) {
    .hero__title {
        font-size: 2.5rem; /* 40px */
        line-height: 1.12;
    }

    .hero__text {
        font-size: 1.1875rem; /* 19px tablet */
    }
}

@media (max-width: 991px) {
    .especialidades,
    .beneficios-section,
    .blog-preview,
    .faq,
    .sobre {
        padding: 28px 0;
    }

    .especialidades__header,
    .beneficios__header,
    .blog-preview__header {
        margin-bottom: 16px;
    }

    .faq__header {
        margin-bottom: 14px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "image"
            "actions";
        gap: 16px;
    }

    .hero__content {
        max-width: 690px;
    }

    .hero__actions { justify-content: flex-start; }
    .hero__image-wrap { min-height: 280px; }
    .hero__photo { margin: 0 auto; }

    .sobre__grid {
        grid-template-columns: minmax(220px, 300px) 1fr;
        gap: 28px;
        align-items: stretch;
    }

    .especialidades__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .esp-card,
    .esp-card__hit,
    .esp-card__inner {
        min-height: 200px;
    }

    .beneficios__strip {
        display: block;
        padding: 24px 20px;
    }

    .beneficios__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .beneficio-item {
        padding: 0;
    }

    .beneficio-item::after {
        display: none;
    }

    .beneficio-item__title {
        font-size: 1.25rem; /* 20px */
    }

    .step-card__title {
        font-size: 1.25rem; /* 20px — matches .beneficio-item__title */
    }

    .blog-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card__title {
        font-size: 1.25rem; /* 20px */
    }

    .esp-card__title {
        font-size: 1.25rem; /* 20px */
    }

    .faq__grid {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .faq-item__question {
        min-height: 4.5rem;
    }
}

@media (max-width: 767px) {
    .hero__label {
        font-size: 1rem; /* 16px */
        letter-spacing: 0.02em;
        margin-bottom: 18px;
    }

    .hero__title {
        font-size: 2.25rem; /* 36px */
        line-height: 1.2;
        letter-spacing: -0.02em;
        max-width: 100%;
    }

    .hero__script {
        font-size: 1.05em;
        font-weight: 600;
    }

    .hero__line {
        width: 54px;
        height: 2px;
        margin-top: 14px;
        margin-bottom: 14px;
    }

    .hero__text {
        font-size: 1.125rem; /* 18px */
        line-height: 1.65;
        max-width: 100%;
    }

    .hero__content {
        max-width: 100%;
    }

    .faq-item__question {
        font-size: 1.125rem; /* 18px */
    }
}

/* Features bar — tablet */
@media (max-width: 991px) and (min-width: 768px) {
    .features-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }

    .feature-item {
        padding: 0 16px;
    }

    .feature-item:nth-child(odd) {
        padding-left: 0;
    }

    .feature-item:nth-child(even) {
        padding-right: 0;
    }

    .feature-item::after {
        display: none;
    }

    .feature-item:nth-child(odd):not(:nth-last-child(1))::after {
        display: block;
    }
}

@media (max-width: 767px) {
    .hero { padding-top: 24px; }

    .hero__grid {
        padding: 0 20px 12px;
        gap: 10px;
    }

    .hero__image-wrap {
        min-height: 0;
        margin: 0;
    }

    .hero__photo {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .hero__actions {
        margin-top: 4px;
    }

    .hero__features { padding: 0 20px 40px; margin-top: 20px; }

    .features-bar {
        padding: 18px 16px;
    }

    .features-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 0;
    }

    .feature-item::after {
        display: none;
    }

    .feature-item__icon {
        width: 50px;
        height: 50px;
    }

    .feature-item__icon svg,
    .feature-item__icon .feature-item__brazil {
        width: 24px;
        height: 24px;
    }

    .feature-item__content {
        text-align: center;
    }

    .feature-item__title,
    .feature-item__desc {
        font-size: 1rem; /* 16px floor */
    }

    .sobre { padding: 24px 0; }

    .sobre__wrapper {
        background: var(--cream-dark);
        border-radius: var(--radius-lg);
        padding: 28px 20px;
        border: 1px solid var(--border-light);
    }

    .sobre__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

    .sobre__content {
        display: contents;
    }

    .sobre__content > .section-label {
        order: 1;
    }

    .sobre__photo {
        order: 2;
        max-width: 280px;
        width: 100%;
        margin: 0 auto;
        min-height: 320px;
        aspect-ratio: 3 / 4;
        height: auto;
        align-self: center;
    }

    .sobre__content > :not(.section-label) {
        order: 3;
    }

    .sobre__photo img {
        height: 100%;
    }

    .beneficios-section {
        padding: 24px 0;
    }

    .beneficios__strip {
        display: block;
    }

    .beneficios__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .especialidades__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 360px;
        margin: 0 auto;
    }

    .esp-card,
    .esp-card__hit,
    .esp-card__inner {
        min-height: 210px;
    }

    .esp-card__face--back {
        justify-content: flex-start;
        padding: 28px 22px 24px;
        gap: 12px;
    }

    .esp-card__back-title {
        margin-top: 4px;
        padding-top: 2px;
    }

    .esp-card__title {
        font-size: 1.35rem;
    }

    .blog-preview__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .blog-card__title {
        font-size: 1.25rem; /* 20px */
    }

    .faq__grid {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .faq-item__question {
        min-height: 4.25rem;
    }

    .contact-bar__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-bar__item {
        padding: 0;
    }

    .contact-bar__item::after {
        display: none;
    }

    .btn-group { flex-direction: column; }
    .btn-group .btn { width: 100%; }
}

@media (max-width: 480px) {
    .especialidades__grid {
        grid-template-columns: 1fr;
    }

    .beneficios__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 389px) {
    .features-bar__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 374px) {
    .hero__title {
        font-size: 2.125rem; /* 34px */
        line-height: 1.15;
    }
}

@media (min-width: 768px) {
    .hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
}
