/* =========================================================
   LEER ARTÍCULO — PUNTO APARTE GROUP
   CSS completo, limpio y responsive
   El menú global se controla desde css/menu.css
========================================================= */

:root {
    --bg: #0f100f;
    --bg-soft: #151613;
    --surface: #1b1c18;
    --surface-2: #20211d;
    --gold: #c4a46b;
    --gold-light: #e0c894;
    --white: #f7f4ed;
    --text: rgba(247, 244, 237, 0.76);
    --text-soft: rgba(247, 244, 237, 0.52);
    --border: rgba(255, 255, 255, 0.10);
    --title: "Cormorant Garamond", serif;
    --body: "Manrope", sans-serif;
    --menu-font: "Poppins", sans-serif;
    --container: 1240px;
    --article-width: 820px;
    --radius: 2px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-width: 320px;
    color: var(--white);
    background: var(--bg);
    font-family: var(--body);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

#menu-container {
    position: relative;
    z-index: 9999;
}

.header,
.header a,
.header button {
    font-family: var(--menu-font);
}

/* =========================================================
   HERO
========================================================= */

.ideas-introduction {
    position: relative;
    min-height: 760px;
    padding: 180px 7% 110px;
    display: flex;
    align-items: center;
    background: #111;
    overflow: hidden;
    isolation: isolate;
}

.ideas-hero-image {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url("../img/heroarticulo.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.025);
}

.ideas-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(8, 9, 8, 0.94) 0%,
            rgba(8, 9, 8, 0.80) 38%,
            rgba(8, 9, 8, 0.46) 70%,
            rgba(8, 9, 8, 0.25) 100%
        ),
        linear-gradient(
            180deg,
            rgba(8, 9, 8, 0.22),
            rgba(8, 9, 8, 0.55)
        );
}

.ideas-background-text {
    position: absolute;
    right: -1%;
    top: 50%;
    z-index: -1;
    color: rgba(255, 255, 255, 0.028);
    font-family: var(--title);
    font-size: clamp(180px, 27vw, 410px);
    font-weight: 500;
    line-height: 0.72;
    white-space: nowrap;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}

.ideas-introduction-container {
    width: min(100%, var(--container));
    margin: 0 auto;
}

.ideas-introduction-content {
    max-width: 720px;
}

.ideas-eyebrow {
    display: block;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.ideas-introduction h1 {
    color: var(--white);
    font-family: var(--title);
    font-size: clamp(86px, 13vw, 172px);
    font-weight: 400;
    line-height: 0.75;
    letter-spacing: -4px;
}

.ideas-title-line {
    width: 75px;
    height: 1px;
    margin: 54px 0 32px;
    background: var(--gold);
}

.ideas-introduction-text {
    max-width: 720px;
    margin-bottom: 20px;
    color: var(--text);
    font-size: clamp(15px, 1.35vw, 18px);
    font-weight: 300;
    line-height: 1.9;
}

.ideas-introduction-highlight {
    max-width: 680px;
    color: var(--gold-light);
    font-family: var(--title);
    font-size: clamp(27px, 3vw, 39px);
    font-style: italic;
    line-height: 1.25;
}

/* =========================================================
   ÁREA GENERAL DE ARTÍCULOS
========================================================= */

.featured-articles {
    padding: 115px 7% 0;
    background: var(--bg-soft);
}

.featured-articles-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

.featured-heading {
    margin-bottom: 85px;
}

.featured-heading span {
    display: block;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.featured-heading h2 {
    max-width: 760px;
    color: var(--white);
    font-family: var(--title);
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
}

/* =========================================================
   ESTRUCTURA COMÚN DE CADA ARTÍCULO
========================================================= */

.complete-article {
    position: relative;
    margin-inline: calc(50% - 50vw);
    padding: 120px max(7%, calc((100vw - var(--container)) / 2));
    scroll-margin-top: 100px;
    overflow: hidden;
}

.complete-article:first-of-type {
    padding-top: 25px;
}

.complete-article-header {
    max-width: 1030px;
    margin-bottom: 54px;
}

.article-category {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.article-category-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(196, 164, 107, 0.36);
    border-radius: 50%;
    color: var(--gold);
    font-family: var(--title);
    font-size: 16px;
}

.article-category-name {
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.complete-article-header h2 {
    max-width: 1050px;
    color: var(--white);
    font-family: var(--title);
    font-size: clamp(54px, 7.2vw, 104px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -2.5px;
    text-wrap: balance;
}

/* =========================================================
   IMÁGENES PRINCIPALES — TAMAÑO CONTROLADO
========================================================= */

.complete-article-image {
    position: relative;
    width: min(100%, 1020px);
    aspect-ratio: 16 / 9;
    margin: 0 auto 78px;
    background: #20201d;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.complete-article-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
}

.complete-article-image:hover img {
    transform: scale(1.025);
}

.complete-article-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.68));
    pointer-events: none;
}

.complete-article-image figcaption {
    position: absolute;
    right: 25px;
    bottom: 20px;
    left: 25px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.72);
    font-size: 8px;
    letter-spacing: 1.3px;
    line-height: 1.5;
    text-align: right;
    text-transform: uppercase;
}

/* =========================================================
   CUERPO DEL ARTÍCULO
========================================================= */

.complete-article-layout {
    display: grid;
    grid-template-columns: 88px minmax(0, var(--article-width));
    justify-content: center;
    gap: 46px;
}

.article-sidebar-content {
    position: sticky;
    top: 120px;
    padding-top: 8px;
}

.article-sidebar-label {
    display: block;
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.article-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    background: transparent;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.share-link:hover {
    border-color: var(--gold);
    color: #111;
    background: var(--gold);
    transform: translateY(-3px);
}

.copy-message {
    display: block;
    margin-top: 12px;
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.copy-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.article-body {
    min-width: 0;
}

.article-body p {
    margin-bottom: 29px;
    color: var(--text);
    font-family: var(--title);
    font-size: clamp(21px, 1.75vw, 27px);
    font-weight: 400;
    line-height: 1.64;
    text-wrap: pretty;
}

.article-first-paragraph::first-letter {
    float: left;
    margin: 7px 12px 0 0;
    color: var(--gold);
    font-family: var(--title);
    font-size: 88px;
    font-weight: 500;
    line-height: 0.73;
}

.article-highlight-paragraph,
.article-highlight-sentence {
    margin: 50px 0 !important;
    padding: 34px 38px;
    color: var(--gold-light) !important;
    background: rgba(196, 164, 107, 0.055);
    font-size: clamp(31px, 3.7vw, 47px) !important;
    font-style: italic;
    line-height: 1.2 !important;
    text-align: center;
}

.article-closing-paragraph {
    margin-top: 52px !important;
    padding: 38px 40px;
    color: var(--white) !important;
    background: rgba(196, 164, 107, 0.06);
    font-size: clamp(26px, 2.8vw, 37px) !important;
    font-style: italic;
    line-height: 1.4 !important;
}

/* =========================================================
   NAVEGACIÓN INTERNA
========================================================= */

.complete-article-footer {
    max-width: 980px;
    margin: 80px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.article-footer-link,
.scroll-top-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 42px;
    border: 0;
    color: var(--gold);
    background: transparent;
    font-family: var(--body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.article-footer-link:hover,
.scroll-top-button:hover {
    color: var(--gold-light);
}

.article-previous-link:hover {
    transform: translateX(-5px);
}

.scroll-top-button:hover {
    transform: translateY(-4px);
}

.article-main-action {
    margin: 72px auto 0;
    text-align: center;
}

.explore-ideas-button {
    min-width: 220px;
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid rgba(196, 164, 107, 0.5);
    color: var(--gold-light);
    background: rgba(196, 164, 107, 0.055);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.explore-ideas-button:hover {
    color: #111;
    background: var(--gold);
    transform: translateY(-3px);
}

/* =========================================================
   IDENTIDAD VISUAL DISTINTA PARA CADA SECCIÓN
   Sin separadores de línea entre artículos
========================================================= */

.article-variant-01 {
    background:
        radial-gradient(circle at 90% 10%, rgba(196, 164, 107, 0.08), transparent 30%),
        #151613;
}

.article-variant-01 .article-closing-paragraph {
    border-left: 2px solid var(--gold);
}

.article-variant-02 {
    background:
        radial-gradient(circle at 10% 15%, rgba(166, 125, 74, 0.11), transparent 32%),
        #1a1713;
}

.article-variant-02 .complete-article-image {
    border-radius: 0 70px 0 0;
}

.article-variant-02 .article-closing-paragraph {
    border-top: 1px solid rgba(196, 164, 107, 0.35);
    border-bottom: 1px solid rgba(196, 164, 107, 0.35);
}

.article-variant-03 {
    background:
        radial-gradient(circle at 88% 25%, rgba(111, 131, 96, 0.12), transparent 34%),
        #141814;
}

.article-variant-03 .complete-article-image {
    border-radius: 70px 0 0 0;
}

.article-variant-03 .article-category-name,
.article-variant-03 .article-category-number {
    color: #c8bd8c;
}

.article-variant-03 .article-closing-paragraph {
    border: 1px solid rgba(196, 164, 107, 0.24);
    border-left: 3px solid var(--gold);
}

.article-variant-04 {
    background:
        radial-gradient(circle at 12% 20%, rgba(142, 91, 72, 0.14), transparent 34%),
        #1b1514;
}

.article-variant-04 .complete-article-image {
    border-radius: 0 0 70px 0;
}

.article-variant-04 .article-closing-paragraph {
    border: 1px solid rgba(196, 164, 107, 0.23);
    border-left: 3px solid var(--gold);
}

.article-variant-05 {
    background:
        radial-gradient(circle at 92% 12%, rgba(196, 164, 107, 0.10), transparent 30%),
        #111311;
}

.article-variant-05 .complete-article-image {
    border-radius: 0 70px 0 70px;
}

.article-variant-05 .article-highlight-sentence {
    border-radius: 80px 0 80px 0;
}

.article-variant-05 .article-closing-paragraph {
    border: 1px solid rgba(196, 164, 107, 0.25);
}

/* =========================================================
   FOOTER PREMIUM
========================================================= */

.footer {
    position: relative;
    width: 100%;
    padding: 88px 6% 0;
    color: #f4efe5;
    background:
        linear-gradient(135deg, rgba(15, 15, 15, 0.99), rgba(29, 27, 24, 0.99));
    overflow: hidden;
}

.footer::after {
    content: "";
    position: absolute;
    top: -170px;
    right: -170px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(198, 163, 101, 0.055);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 68px;
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 0.9fr;
    gap: clamp(38px, 5vw, 80px);
}

.footer-brand {
    max-width: 330px;
}

.footer-logo-link {
    display: inline-flex;
    margin-bottom: 24px;
    text-decoration: none;
}

.footer-logo {
    width: 165px;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-slogan {
    margin-bottom: 28px;
    color: rgba(244, 239, 229, 0.72);
    font-family: var(--title);
    font-size: 23px;
    line-height: 1.45;
}

.footer-contact-btn {
    padding: 13px 21px;
    display: inline-flex;
    border: 1px solid rgba(198, 163, 101, 0.6);
    color: #ddc28f;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.footer-contact-btn:hover {
    color: #111;
    background: var(--gold);
}

.footer-column h4 {
    margin-bottom: 24px;
    color: var(--gold-light);
    font-family: var(--title);
    font-size: 22px;
    font-weight: 500;
}

.footer-nav ul,
.footer-contact-list {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a,
.footer-contact-list a {
    color: rgba(244, 239, 229, 0.64);
    font-size: 11px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-contact-list a:hover {
    color: var(--gold-light);
}

.footer-contact-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--gold);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: rgba(244, 239, 229, 0.72);
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #111;
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-description {
    color: rgba(244, 239, 229, 0.52);
    font-size: 11px;
    line-height: 1.8;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 23px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: rgba(244, 239, 229, 0.45);
    font-size: 10px;
    letter-spacing: 0.5px;
}

/* =========================================================
   ANIMACIONES
========================================================= */

.reveal-element,
.reveal-paragraph {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

html.article-animations-active .reveal-element,
html.article-animations-active .reveal-paragraph {
    opacity: 0;
    transform: translateY(30px);
}

html.article-animations-active .reveal-element.visible,
html.article-animations-active .reveal-paragraph.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
    .ideas-introduction {
        min-height: 680px;
        padding-top: 150px;
        padding-bottom: 90px;
    }

    .complete-article {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .complete-article-image {
        width: min(100%, 920px);
    }

    .footer-container {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 800px) {
    html {
        scroll-padding-top: 84px;
    }

    .ideas-introduction {
        min-height: 610px;
        padding: 125px 7% 78px;
    }

    .ideas-background-text {
        font-size: clamp(150px, 38vw, 270px);
    }

    .featured-articles {
        padding-top: 88px;
    }

    .featured-heading {
        margin-bottom: 65px;
    }

    .complete-article {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .complete-article:first-of-type {
        padding-top: 10px;
    }

    .complete-article-header {
        margin-bottom: 42px;
    }

    .complete-article-header h2 {
        font-size: clamp(46px, 12vw, 76px);
        line-height: 0.98;
        letter-spacing: -1.5px;
    }

    .complete-article-image {
        aspect-ratio: 16 / 10;
        margin-bottom: 58px;
        border-radius: 0 !important;
    }

    .complete-article-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .article-sidebar {
        order: 2;
    }

    .article-sidebar-content {
        position: static;
        text-align: center;
    }

    .article-social-links {
        align-items: center;
        justify-content: center;
        flex-direction: row;
    }

    .copy-message {
        text-align: center;
    }

    .complete-article-footer {
        margin-top: 62px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand,
    .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 600px) {
    .ideas-introduction {
        min-height: 570px;
        padding: 118px 20px 70px;
    }

    .ideas-introduction h1 {
        font-size: clamp(76px, 25vw, 112px);
        letter-spacing: -3px;
    }

    .ideas-title-line {
        margin: 42px 0 26px;
    }

    .ideas-introduction-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .ideas-introduction-highlight {
        font-size: 27px;
    }

    .featured-articles {
        padding: 72px 20px 0;
    }

    .featured-heading {
        margin-bottom: 52px;
    }

    .featured-heading h2 {
        font-size: 42px;
    }

    .complete-article {
        margin-inline: -20px;
        padding: 68px 20px;
    }

    .complete-article:first-of-type {
        padding-top: 0;
    }

    .article-category {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .complete-article-header h2 {
        font-size: clamp(42px, 13.5vw, 62px);
        letter-spacing: -1px;
    }

    .complete-article-image {
        width: 100%;
        aspect-ratio: 4 / 3;
        margin-bottom: 48px;
        box-shadow: none;
    }

    .complete-article-image figcaption {
        right: 15px;
        bottom: 14px;
        left: 15px;
        font-size: 7px;
    }

    .article-body p {
        margin-bottom: 24px;
        font-size: 20px;
        line-height: 1.58;
    }

    .article-first-paragraph::first-letter {
        margin-right: 9px;
        font-size: 70px;
    }

    .article-highlight-paragraph,
    .article-highlight-sentence {
        margin: 38px 0 !important;
        padding: 28px 18px;
        border-radius: 0 !important;
        font-size: 31px !important;
    }

    .article-closing-paragraph {
        margin-top: 40px !important;
        padding: 28px 22px;
        font-size: 27px !important;
    }

    .complete-article-footer {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 55px;
    }

    .explore-ideas-button {
        width: 100%;
        min-width: 0;
    }

    .footer {
        padding: 65px 20px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-brand,
    .footer-column:last-child {
        grid-column: auto;
    }
}

@media (max-width: 390px) {
    .complete-article-header h2 {
        font-size: 39px;
    }

    .article-body p {
        font-size: 18.5px;
    }

    .share-link {
        width: 40px;
        height: 40px;
    }
}

/* =========================================================
   ACCESIBILIDAD
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/*SECCION 7*/


/* =========================================================
   SECCIÓN 7 — CONVERSACIÓN
========================================================= */

.article-conversation-section {
    position: relative;
    padding: 145px 7%;
    background:
        linear-gradient(
            135deg,
            rgba(17, 18, 16, 0.98),
            rgba(28, 26, 22, 0.98)
        );
    overflow: hidden;
    isolation: isolate;
}

.article-conversation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(196, 164, 107, 0.12),
            transparent 34%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(196, 164, 107, 0.07),
            transparent 30%
        );
}

.article-conversation-section::after {
    content: "Conversemos";
    position: absolute;
    right: -30px;
    bottom: -20px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.025);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(130px, 18vw, 280px);
    font-weight: 500;
    line-height: 0.75;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.article-conversation-container {
    position: relative;
    z-index: 2;
    width: min(100%, 1050px);
    margin: 0 auto;
    text-align: center;
}

.article-conversation-number {
    display: inline-block;
    margin-bottom: 27px;
    color: #c4a46b;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.article-conversation-title {
    max-width: 950px;
    margin: 0 auto 35px;
    color: #f7f4ed;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(54px, 7vw, 95px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -2px;
    text-wrap: balance;
}

.article-conversation-text {
    max-width: 790px;
    margin: 0 auto 45px;
    color: rgba(247, 244, 237, 0.7);
    font-family: "Manrope", sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    line-height: 1.9;
    text-wrap: pretty;
}

.article-conversation-button {
    min-width: 205px;
    min-height: 56px;
    padding: 16px 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid rgba(196, 164, 107, 0.65);
    color: #e0c894;
    background: transparent;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.3px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease;
}

.article-conversation-button i {
    font-size: 11px;
    transition: transform 0.35s ease;
}

.article-conversation-button:hover {
    color: #111;
    background: #c4a46b;
    border-color: #c4a46b;
    transform: translateY(-4px);
}

.article-conversation-button:hover i {
    transform: translateX(5px);
}

.article-conversation-decoration {
    position: absolute;
    border: 1px solid rgba(196, 164, 107, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.article-conversation-decoration-one {
    top: -190px;
    left: -150px;
    width: 430px;
    height: 430px;
}

.article-conversation-decoration-two {
    right: -120px;
    bottom: -210px;
    width: 500px;
    height: 500px;
}

/* TABLET */

@media (max-width: 900px) {
    .article-conversation-section {
        padding: 110px 7%;
    }

    .article-conversation-title {
        font-size: clamp(50px, 10vw, 76px);
    }

    .article-conversation-section::after {
        font-size: 150px;
    }
}

/* CELULAR */

@media (max-width: 600px) {
    .article-conversation-section {
        padding: 85px 20px;
    }

    .article-conversation-number {
        margin-bottom: 22px;
        font-size: 8px;
        letter-spacing: 3px;
    }

    .article-conversation-title {
        margin-bottom: 28px;
        font-size: clamp(43px, 13vw, 58px);
        line-height: 1;
        letter-spacing: -1px;
    }

    .article-conversation-text {
        margin-bottom: 36px;
        font-size: 14px;
        line-height: 1.8;
    }

    .article-conversation-button {
        width: 100%;
        min-width: 0;
    }

    .article-conversation-section::after {
        right: -30px;
        bottom: 15px;
        font-size: 100px;
    }

    .article-conversation-decoration-one {
        width: 280px;
        height: 280px;
    }

    .article-conversation-decoration-two {
        width: 320px;
        height: 320px;
    }
}