/* ========================================
   BASE
======================================== */

.container {
    max-width: 1050px;
}

/* ========================================
   POST LEIA SOBRE
======================================== */

.leia-post {
    background: #f3f3f3;
    font-family: "Open Sans", sans-serif;
}

/* ========================================
   HERO / PARTE PRETA
======================================== */

.leia-post__hero {
    background: var(--ef-black);
    color: var(--ef-white);
    padding: 96px 0;
}

.leia-post__hero-container {
    width: var(--ef-container-wide);
    margin: 0 auto;
    padding: 0 16px;
}

.leia-post__hero-header {
    max-width: 900px;
    margin: 0 auto;
}

.leia-post__hero-header {
    margin: 0 auto 24px;
    text-align: center;
}

.leia-post__hero-header h1,
#legal-offshore-title,
.ef-hero-title {
    margin: 0 0 24px;
    line-height: 0.9;
    font-family: "Anton", sans-serif;
    font-size: clamp(52px, 10vw, 120px);
    text-transform: uppercase;
    text-align: center;
    color: var(--ef-white);
    letter-spacing: 0.2px;
}

.leia-post__hero-header h1 {
    color: white;
    font-size: 58px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

#legal-offshore-title .gold,
.gold {
    background: var(--gold-grad);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    animation: goldShift 6s ease-in-out infinite;
}

gold {
    background: var(--gold-grad);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    animation: goldShift 6s ease-in-out infinite;
    font-weight: 900;
}



#legal-offshore-title .gold::after,
.gold::after {
    content: "";
    position: absolute;
    inset: -8% -6%;
    background: linear-gradient(100deg,
            transparent 15%,
            rgba(255, 255, 255, 0.18) 35%,
            rgba(255, 255, 255, 0.55) 50%,
            rgba(255, 255, 255, 0.18) 65%,
            transparent 85%);
    transform: translateX(-130%) skewX(-12deg);
    mix-blend-mode: screen;
    pointer-events: none;
    filter: blur(1.2px);
    animation: glint 6.6s cubic-bezier(.22, .61, .36, 1) infinite .3s;
}

.leia-post__hero-text {
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: var(--ef-text-light);
}

.leia-post__hero-text p {
    margin: 0 0 18px;
}

.leia-post__hero-text strong,
.leia-post__hero-text b {
    color: var(--ef-white);
    font-weight: 800;
}

.leia-post__hero-text em,
.leia-post__hero-text i {
    font-style: italic;
}

.leia-post__hero-text h1,
.leia-post__hero-text h2,
.leia-post__hero-text h3,
.leia-post__hero-text h4,
.leia-post__hero-text .wp-block-heading {
    display: none;
}

/* mídia no topo */
.leia-post__hero-text .wp-block-embed,
.leia-post__hero-text .video-container,
.leia-post__hero-text figure,
.leia-post__hero-text iframe {
    margin-top: 28px;
}

.leia-post__hero-text .wp-block-embed,
.leia-post__hero-text .video-container,
.leia-post__hero-text figure,
.leia-post__content .wp-block-embed,
.leia-post__content .video-container,
.leia-post__content figure {
    display: flex;
    overflow: hidden;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.leia-post__content figure img {
    border: 1.5px solid #e1ad42;
    border-radius: 10px;
}

.leia-post__hero-text iframe,
.leia-post__hero-text .video-container iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

/* container */
.leia-post__hero_destaque {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

/* texto principal */
.ef-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #e6c35a;
}

/* bolinha */
.ef-kicker__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: #e6c35a;
    position: relative;
}

/* glow + pulsar */
.ef-kicker__dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;

    background: #e6c35a;
    opacity: 0.6;

    animation: ef-pulse 1.6s infinite;
}

/* linha embaixo */
.ef-kicker::after {
    content: "";
    display: block;
    width: 130px;
    height: 1px;
    margin-top: 6px;

    background: linear-gradient(90deg,
            rgba(230, 195, 90, 0.0),
            rgba(230, 195, 90, 0.6),
            rgba(230, 195, 90, 0.0));

    position: absolute;
    transform: translateY(14px);
}

/* animação */
@keyframes ef-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(2.4);
        opacity: 0;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/* ========================================
   CONTEÚDO / PARTE BRANCA
======================================== */

.leia-post__content-section {
    background: #FFFFFF;
    padding: 96px 0;
}

.leia-post__content-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

.leia-post__content {
    max-width: 1050px;
    margin: 0 auto;
    font-family: "Open Sans", sans-serif;
    line-height: 1.8;
    color: #0f172a;
}

.leia-post__content>*:first-child {
    margin-top: 0;
}

.leia-post__content>*:last-child {
    margin-bottom: 0;
}

.leia-post__content p {
    margin: 1.1rem 0 1.6rem;
    font-size: 18px;
    overflow-wrap: break-word;
}

.leia-post__content p:first-of-type {
    font-size: 16.5px;
}

.leia-post__content strong,
.leia-post__content b {
    font-weight: 700;
    color: #0f172a;
}

.leia-post__content em,
.leia-post__content i {
    font-style: italic;
}

.leia-post__content a {
    color: #111827;
    font-weight: 700;
    text-decoration: underline;
}

/* títulos */
.leia-post__content h2,
.leia-post__content .wp-block-heading {
    position: relative;
    margin: 2.6rem 0 1.2rem;
    padding-bottom: 10px;
    font-weight: 800;
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.leia-post__content h2::after,
.leia-post__content .wp-block-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 140px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #e1ad42, #f8ec8e);
}

/* embeds na parte branca */
.leia-post__content .wp-block-embed,
.leia-post__content .video-container,
.leia-post__content figure {
    margin: 30px 0;
}

.leia-post__content iframe,
.leia-post__content .video-container iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.leia-post__content .wp-block-embed__wrapper {
    margin: 0;
}

/* listas */
.leia-post__content ul,
.leia-post__content ol {
    margin: 0 0 20px 20px;
}

.leia-post__content li {
    margin-bottom: 8px;
}

/* ========================================
@keyframes goldShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes glint {
    0% {
        transform: translateX(-130%) skewX(-12deg);
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    24% {
        transform: translateX(130%) skewX(-12deg);
        opacity: 0;
    }

    100% {
        transform: translateX(130%) skewX(-12deg);
        opacity: 0;
    }
}

/* ========================================
   RESPONSIVO
======================================== */
.leia-post__hero-header h1 {
    font-size: 58px;
}

.leia-post__content h2,
.leia-post__content .wp-block-heading {
    font-size: 30px;
}

.leia-post__hero-text iframe,
.leia-post__hero-text .video-container iframe {
    height: 500px;
}

.leia-post__content iframe,
.leia-post__content .video-container iframe {
    height: 420px;
}

.hero-empresafora {
    min-height: auto;
    padding: 110px 20px;
}

.hero-empresafora__title-line--white,
.hero-empresafora__title-line--gold {
    font-size: 62px;
}

.hero-empresafora__description {
    max-width: 640px;
    font-size: 18px;
}

.tax-result-card {
    min-height: auto;
}

@media (max-width: 767px) {
    .hero-empresafora {
        padding: 90px 16px;
    }

    .hero-empresafora__title {
        letter-spacing: -1px;
    }

    .hero-empresafora__title-line--white,
    .hero-empresafora__title-line--gold {
        font-size: 42px;
    }

    .hero-empresafora__eyebrow {
        gap: 10px;
        margin-top: 22px;
    }

    .hero-empresafora__eyebrow-line {
        width: 34px;
    }

    .hero-empresafora__eyebrow-text {
        font-size: 11px;
        letter-spacing: 2.2px;
        white-space: normal;
    }

    .hero-empresafora__description {
        margin-top: 26px;
        font-size: 17px;
        line-height: 1.65;
    }

    .hero-empresafora__actions {
        flex-direction: column;
        gap: 14px;
        margin-top: 34px;
    }

    .hero-empresafora__button {
        width: 100%;
        max-width: 280px;
        min-width: 0;
    }

    .ef-home-title--center {
        text-align: center;
    }
}


.wp-block-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* remove limite do figure */
.wp-block-image {
    width: 100%;
    margin: 0;
}

/* ========================================
   ESTATÍSTICAS (EF-STATS) - ALINHAMENTO ORIGEM
======================================== */

.ef-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 0;
    gap: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ef-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.ef-stat+.ef-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.ef-stat strong {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    background: var(--gold-grad-rich);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ef-stat span {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    text-transform: none;
}

@media (max-width: 768px) {
    .ef-stats {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 16px;
    }

    .ef-stat+.ef-stat {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
    }

    .leia-post__hero-header h1 {
        font-size: clamp(38px, 12vw, 52px);
    }
}

/* ========================================
   SPACING FIXES
======================================== */

.ef-reference-intro {
    padding: 96px 0 !important;
}


body.post-type-archive-leia_sobre .ef-home-footer__section--cta p {
    max-width: 350px;
}

@media (max-width: 991px) {
    .ef-leia-directory__hero {
        padding-top: 74px;
    }

    .ef-leia-directory__title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .ef-leia-directory__description {
        max-width: 620px;
    }

    body.post-type-archive-leia_sobre .ef-home-footer {
        padding-top: 1820px;
    }
}

@media (max-width: 640px) {
    .ef-leia-directory__hero {
        padding-top: 46px;
    }

    .ef-leia-directory__shell {
        max-width: 356px;
    }

    .ef-leia-directory__eyebrow {
        font-size: 10px;
        letter-spacing: 0.28em;
    }

    .ef-leia-directory__eyebrow::after {
        width: 58px;
    }

    .ef-leia-directory__title {
        margin-top: 18px;
        font-size: 2.18rem;
        line-height: 0.97;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .ef-leia-directory__description {
        max-width: 305px;
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.55;
    }

    .ef-leia-directory__search {
        margin-top: 14px;
    }

    .ef-leia-directory__search-input {
        height: 44px;
        padding: 0 46px 0 14px;
        font-size: 13px;
    }

    .ef-leia-directory__search-button {
        right: 8px;
        width: 28px;
        height: 28px;
    }

    .ef-leia-directory__search-button svg {
        width: 13px;
        height: 13px;
    }

    .ef-leia-directory__list {
        gap: 12px;
        margin-top: 18px;
    }

    .ef-leia-directory__item {
        min-height: 54px;
        padding: 10px 12px 10px 10px;
        gap: 12px;
        border-radius: 14px;
    }

    .ef-leia-directory__item-icon {
        width: 24px;
        height: 24px;
    }

    .ef-leia-directory__item-icon svg {
        width: 14px;
        height: 14px;
    }

    .ef-leia-directory__item-label {
        font-size: 13px;
        line-height: 1.2;
    }

    .ef-leia-directory__item-arrow {
        font-size: 19px;
    }

    .ef-leia-directory__cta {
        min-width: 108px;
        height: 44px;
        margin-top: 42px;
        padding: 0 24px;
        font-size: 15px;
    }

    body.post-type-archive-leia_sobre .ef-home-footer {
        padding-top: 1940px;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__inner {
        display: flex;
        flex-direction: column;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__top,
    body.post-type-archive-leia_sobre .ef-home-footer__column,
    body.post-type-archive-leia_sobre .ef-home-footer__stack,
    body.post-type-archive-leia_sobre .ef-home-footer__stack--right {
        display: contents;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__brand {
        order: 1;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__socials {
        justify-content: flex-start;
        margin-top: 34px;
        order: 2;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__column--brand .ef-home-footer__section:nth-of-type(2) {
        order: 3;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__section--cta {
        order: 4;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__column:nth-of-type(2) .ef-home-footer__section:nth-of-type(1) {
        order: 5;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__column:nth-of-type(2) .ef-home-footer__section:nth-of-type(2) {
        order: 6;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__column:nth-of-type(2) .ef-home-footer__section:nth-of-type(3) {
        order: 7;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__column--brand .ef-home-footer__section:nth-of-type(3) {
        order: 8;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__column--right .ef-home-footer__section:last-of-type {
        order: 9;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__column--brand .ef-home-footer__section:nth-of-type(1) {
        order: 10;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__bottom {
        order: 11;
        margin-top: 36px;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__brand,
    body.post-type-archive-leia_sobre .ef-home-footer__section,
    body.post-type-archive-leia_sobre .ef-home-footer__socials {
        margin-top: 34px;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__brand {
        margin-top: 0;
    }

    body.post-type-archive-leia_sobre .ef-home-footer__section h3 {
        margin-bottom: 14px;
    }
}

/* ========================================
   HOME PAGE
======================================== */

body.home {
    background: #000;
    color: #fff;
    font-family: "Open Sans", sans-serif;
}

body.home .ef-sticky-bar {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.home .ef-sticky-bar__text {
    font-size: 12px;
    letter-spacing: 0.01em;
}

body.home .ef-header__container {
    max-width: 1280px;
    gap: 24px;
}

body.home .ef-header__logo {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
}

body.home .ef-header__logo-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

body.home .ef-header__logo-link img {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

body.home .ef-header__menu {
    gap: 34px;
}

body.home .ef-header__menu>li>a,
body.home .submenu-toggle {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

body.home .ef-header__cta {
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    color: #090909 !important;
}

body.home .ef-header__cta:hover {
    color: #fff !important;
}

.ef-home {
    position: relative;
    overflow-x: hidden;
    background: #000;
}




.ef-title-shine {
    position: relative;
    display: inline-block;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 1;
    isolation: isolate;
    width: 100%;
    text-align: center;
    margin: 0px 0 30px;
}

.ef-title-shine .gold {
    color: #e3bf4f;
}

/* brilho parado bem leve ao fundo */
.ef-title-shine::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 55%;
    height: 40%;
    background: radial-gradient(circle, rgba(227, 191, 79, 0.18) 0%, rgba(227, 191, 79, 0.08) 40%, rgba(227, 191, 79, 0) 80%);
    filter: blur(18px);
    z-index: -2;
    pointer-events: none;
}

/* brilho que passa */
.ef-title-shine::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -25%;
    transform: translateY(-50%);
    width: 180px;
    height: 140%;
    background: linear-gradient(90deg,
            rgba(227, 191, 79, 0) 0%,
            rgba(227, 191, 79, 0.10) 20%,
            rgba(255, 225, 120, 0.55) 50%,
            rgba(227, 191, 79, 0.10) 80%,
            rgba(227, 191, 79, 0) 100%);
    filter: blur(22px);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    animation: efShinePass 7s ease-in-out infinite;
}



.card {
    position: relative;
    box-sizing: border-box;
    isolation: isolate;

    max-width: 1160px;
    margin: 0 auto;
    padding: 48px 18px 34px;

    border: 8px solid #e0aa32;
    border-radius: 20px;

    background:
        radial-gradient(circle at 50% 18%, rgba(255, 210, 90, 0.16), transparent 18%),
        linear-gradient(90deg, #111318 0%, #0c0d10 50%, #111318 100%);

    box-shadow:
        inset 0 0 0 1px rgba(255, 214, 112, 0.08),
        0 8px 30px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    margin-bottom: 50px;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 16%, rgba(255, 220, 120, 0.08), transparent 22%);
    z-index: 0;
}

.card>* {
    position: relative;
    z-index: 1;
}

/* CABEÇALHO */
.card .head {
    text-align: center;
    margin-bottom: 18px;
}

.card .kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f0d36a;
    margin-bottom: 18px;
}

.card .k-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 10px;
    background: #f0d36a;
    box-shadow: 0 0 0 4px rgba(240, 211, 106, 0.14);
}

.card .head h3 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #f4f1ea;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.5),
        0 0 24px rgba(255, 219, 120, 0.15);
}

.card .rule {
    width: min(720px, 82%);
    height: 1px;
    margin: 16px auto 0;
    background: linear-gradient(90deg,
            rgba(224, 170, 50, 0) 0%,
            rgba(224, 170, 50, 0.42) 20%,
            rgba(224, 170, 50, 0.42) 80%,
            rgba(224, 170, 50, 0) 100%);
}

/* TEXTO */
.card .lead {
    margin: 0 auto 28px;
    max-width: 860px;
    text-align: center;

    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.55;
    font-weight: 400;
    color: #ffffff;
}

.card .lead strong {
    font-weight: 800;
    color: #ffffff;
}

/* CHIPS */
.card .chips {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.card .chips li {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;

    background:
        linear-gradient(180deg, rgba(25, 26, 30, 0.96) 0%, rgba(8, 8, 10, 0.98) 100%);
    border: 1px solid rgba(224, 170, 50, 0.15);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 6px 14px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.card .chips li:hover {
    background:
        linear-gradient(180deg, rgba(25, 26, 30, 0.98) 0%, rgba(8, 8, 10, 1) 100%);
    transform: translateY(-1px);
    border-color: rgba(225, 173, 66, .65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 10px 22px rgba(225, 173, 66, .18), 0 2px 8px rgba(0, 0, 0, .35);
}

.card .tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;
    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
    color: #ffffff;

    background: linear-gradient(180deg, #26d27e 0%, #0f8e57 100%);
    box-shadow:
        0 0 0 2px rgba(38, 210, 126, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.28);
}

/* CTA */
.card .cta-row {
    display: flex;
    justify-content: center;
}

.card .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 352px;
    min-height: 62px;
    padding: 0 34px;

    border-radius: 999px;
    border: 1px solid #d39f2a;

    text-decoration: none;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;

    background: linear-gradient(180deg, #f1c85e 0%, #e1b03e 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 8px 20px rgba(0, 0, 0, 0.26);

    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.card .cta-btn strong {
    font-weight: 800;
    color: inherit;
}

.card .cta-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.32),
        0 12px 26px rgba(0, 0, 0, 0.3);
}

.card .cta-btn:active {
    transform: translateY(0);
}

.card .cta-btn span {
    display: inline-block;
    margin-left: 4px;
}

/* ========================================
   AJUSTES DE COMPATIBILIDADE PARA O HTML ENVIADO
   Mantém o CTA final centralizado dentro do artigo.
======================================== */

.leia-post__article>.card {
    margin: 0 auto 80px;
}

.leia-post__article .card .hero-empresafora__button {
    min-width: 260px;
}

@media (max-width: 640px) {
    .leia-post__article>.card {
        width: min(328px, calc(100% - 32px));
        margin-bottom: 56px;
    }

    .leia-post__article .card .hero-empresafora__button {
        width: 100%;
        min-width: 0;
    }

    body.home .ef-header__container {
        display: flex;
        justify-content: center;
    }

    .leia-post__hero-container,
    .leia-post__content-container {
        width: min(328px, calc(100% - 32px));
    }

    .leia-post__content h2,
    .leia-post__content .wp-block-heading {
        font-size: 20px;
    }

    .ef-title-shine h1 {
        font-size: 25px;
    }

    .leia-post__hero {
        padding-top: 22px;
    }

    .ef-title-shine {
        margin: 0px 0 5px;
    }

    .leia-post__hero-text p {
        color: #ffffff;
        margin: 0 auto;
        font-size: clamp(1.02rem, .4vw + 1rem, 1.12rem);
        line-height: 1.8;
        text-align: left;
        opacity: 0;
        transform: translateY(8px);
        animation: enter .9s ease forwards .15s;
        align-self: stretch;
        font-size: 16px;
        line-height: 1.7;
        margin: 15px 0;
    }

    @keyframes enter {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .leia-post__content p {
        color: black;
        margin: 0 auto;
        font-size: clamp(1.02rem, .4vw + 1rem, 1.12rem);
        line-height: 1.8;
        text-align: left;
        opacity: 0;
        transform: translateY(8px);
        animation: enter .9s ease forwards .15s;
        align-self: stretch;
        font-size: 16px;
        line-height: 1.7;
        margin: 15px 0;
    }
}