/* =========================
   VARIABLES
========================= */

:root {
    --gold: #B8973A;
    --gold-light: #D4AF5A;

    --dark: #0F1017;
    --dark2: #1A1C27;
    --dark3: #252837;

    --text: #E8E6E0;
    --text-muted: #9A9585;
    --white: #FAFAF8;
}

/* =========================
   RESET GENERAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY BASE
========================= */

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* =========================
   TIPOGRAFÍAS BASE
========================= */

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 0;
}

p {
    margin: 0;
}

/* =========================
   LINKS BASE
========================= */

a {
    text-decoration: none;
    color: inherit;
}

/* animaciones.css */


/* EFECTOS */

.reveal {
    opacity: 0;
    transition: transform 0.9s ease, opacity 0.9s ease;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
}

/* Fade sutil */
.reveal.fade {
    transform: translateY(20px);
}

.reveal.fade.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide desde abajo muy suave */

.reveal.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide desde izquierda */
.reveal.slide-left {
    transform: translateX(-40px);
}

.reveal.slide-left.active {
    transform: translateX(0);
}

/* Slide desde derecha */
.reveal.slide-right {
    transform: translateX(40px);
}

.reveal.slide-right.active {
    transform: translateX(0);
}

/* Slide desde abajo */
.reveal.slide-up {
    transform: translateY(40px);
}

.reveal.slide-up.active {
    transform: translateY(0);
}

/* Zoom sutil */
.reveal.zoom {
    transform: scale(0.97);
}

.reveal.zoom.active {
    transform: scale(1);
}

/* Variaciones de velocidad */
.reveal.fast {
    transition-duration: 0.6s;
}

.reveal.slow {
    transition-duration: 1.6s;
}

/* Aparición elegante tipo cortina */
.reveal.blur {
    filter: blur(10px);
}

.reveal.blur.active {
    opacity: 1;
    filter: blur(0);
}


@media (max-width: 992px) {

    .reveal.slide-left,
    .reveal.slide-right {
        transform: none !important;
    }

    .row.g-5 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }

}

.header {
    background: rgba(15, 16, 23, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 151, 58, 0.15);
    z-index: 999;
}

/* NAVBAR BASE */
.navbar {
    padding: 18px 0;
}

/* LOGO */
.navbar-brand .logo {
    max-height: 42px;
    width: auto;
    display: block;
}

/* LINKS */
.navbar-nav {
    gap: 28px;
}

.navbar-nav .nav-link {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
    padding: 0;
}

.navbar-nav .nav-link:hover {
    color: var(--gold);
}

/* ACTIVE STATE (scroll / section highlight futuro) */
.navbar-nav .nav-link.active {
    color: var(--gold);
}

/* TOGGLER */
.navbar-toggler {
    border: 1px solid rgba(184, 151, 58, 0.3);
    color: var(--gold);
    font-size: 18px;
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .navbar-nav {
        gap: 16px;
        padding-top: 20px;
    }

    .navbar-collapse {
        background: rgba(15, 16, 23, 0.98);
        backdrop-filter: blur(12px);
        padding: 20px;
        border-top: 1px solid rgba(184, 151, 58, 0.1);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND EFECTOS */
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(184, 151, 58, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(55, 138, 221, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* ELEMENTOS ENCIMA DEL BG */
.hero>*:not(.hero-bg) {
    position: relative;
    z-index: 1;
}

/* LINEA VERTICAL */
.hero-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    margin: 0 auto 32px;
}

/* EYEBROW */
.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

/* TITULO PRINCIPAL */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 16px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

/* SUBTITULO */
.hero-sub {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 48px;
    font-weight: 300;
    line-height: 1.8;
}

/* CTA */
.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

/* STATS */
.hero-stats {
    display: flex;
    gap: 64px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(184, 151, 58, 0.2);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--gold);
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-stats {
        gap: 32px;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }
}

/* =========================
   EL MERCADO HOY
========================= */

.problema-section {
    padding: 40px 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.section-divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 40px;
}

.problema-section p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 620px;
    line-height: 1.9;
}

/* GRID CARDS */
.problema-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}

/* CARD */
.prob-card {
    background: var(--dark2);
    border: 1px solid rgba(184, 151, 58, 0.12);
    padding: 28px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.prob-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    opacity: 0.4;
}

.prob-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.prob-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* HOVER SUTIL */
.prob-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 151, 58, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .problema-grid {
        grid-template-columns: 1fr;
    }

    .problema-section {
        padding: 60px 20px;
    }

}

.numeros-section {
    background: var(--dark2);
    border-top: 1px solid rgba(184, 151, 58, 0.2);
    border-bottom: 1px solid rgba(184, 151, 58, 0.2);
    padding: 80px 48px;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.numero-val {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
}

.numero-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 8px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

#servicios {
    padding: 40px 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.servicios-wrap {
    background: var(--dark2);
    border: 1px solid rgba(184, 151, 58, 0.15);
    padding: 60px;
    margin-top: 48px;
}

.servicios-tag {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--gold);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 40px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.serv-item {
    border-top: 1px solid rgba(184, 151, 58, 0.2);
    padding-top: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.serv-item:hover {
    transform: translateY(-3px);
    border-top-color: rgba(184, 151, 58, 0.4);
}

.serv-icon {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 12px;
}

.serv-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.serv-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicios-wrap {
        padding: 32px 20px;
    }
}

#nosotros {
    padding: 40px 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.ventajas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
}

.ventaja {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ventaja-check {
    width: 24px;
    height: 24px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 13px;
    margin-top: 2px;
}

.ventaja-text h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.ventaja-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* HOVER SUAVE OPCIONAL */
.ventaja {
    transition: transform 0.25s ease;
}

.ventaja:hover {
    transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ventajas-list {
        grid-template-columns: 1fr;
    }
}

#proceso {
    padding: 40px 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.proceso-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}

/* línea conectora */
.proceso-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(184, 151, 58, 0.3);
}

.step {
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--gold);
    background: var(--dark);
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* HOVER SUTIL */
.step {
    transition: transform 0.25s ease;
}

.step:hover {
    transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .proceso-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .proceso-steps::before {
        display: none;
    }
}

#planes {
    padding: 40px 15px;
    max-width: 1100px;
    margin: 0 auto;
}

#planes p.section-eyebrow {
    text-align: left;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
}

/* CARD BASE */
.plan {
    background: var(--dark2);
    padding: 40px 32px;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.plan:hover {
    transform: translateY(-4px);
    background: var(--dark3);
}

/* PLAN DESTACADO */
.plan.featured {
    background: var(--dark3);
    border: 1px solid var(--gold);
    transform: scale(1.02);
    z-index: 1;
}

.plan.featured:hover {
    transform: scale(1.03);
}

/* BADGE */
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    white-space: nowrap;
}

/* TITULOS */
.plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

/* LISTA */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.plan-features li::before {
    content: '→';
    color: var(--gold);
    flex-shrink: 0;
}

/* TEXTO FINAL */
#planes p {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .planes-grid {
        grid-template-columns: 1fr;
    }

    .plan.featured {
        transform: none;
    }
}

#nosotros {
    padding: 40px 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

/* IMAGEN */
.about-img-wrap {
    position: relative;
}

.about-img-frame {
    aspect-ratio: 1 / 1;
    background: transparent;
    border: none;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

/* QUOTE */
.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
}

/* TEXTOS */
.about-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 14px;
}

/* FIRMA */
.about-signature {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-top: 28px;
}

.about-role {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-frame {
        width: 100%;
    }
}

#logros {
    background: var(--dark2);
    border-top: 1px solid rgba(184, 151, 58, 0.2);
    border-bottom: 1px solid rgba(184, 151, 58, 0.2);
    padding: 40px 15px;
}

#logros>div {
    max-width: 1100px;
    margin: 0 auto;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 56px;
}

.kpi-item {
    background: var(--dark3);
    padding: 28px 24px;
    text-align: center;
}

.kpi-value {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--gold);
    line-height: 1;
}

.kpi-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .kpi-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* CARD BASE */
.case-card {
    background: var(--dark);
    border: 1px solid rgba(184, 151, 58, 0.15);
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 151, 58, 0.3);
}

/* HEADER CARD */
.case-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.case-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.case-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
}

.case-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.case-metric {
    text-align: right;
}

.case-metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
}

.case-metric-label {
    font-size: 11px;
    color: var(--text-muted);
}

.chart-legend {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 11px;
    color: var(--text-muted);
}

.legend-line {
    display: inline-block;
    width: 12px;
    height: 3px;
    margin-right: 5px;
    vertical-align: middle;
}

.legend-before {
    background: rgba(184, 151, 58, 0.4);
}

.legend-after {
    background: var(--gold);
}

.case-metrics {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(184, 151, 58, 0.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
}

.case-metric-box {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.case-metric-sub {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.results-quote {
    margin-top: 48px;
    padding: 40px;
    background: var(--dark);
    border-left: 2px solid var(--gold);
    border-right: 1px solid rgba(184, 151, 58, 0.1);
    border-top: 1px solid rgba(184, 151, 58, 0.1);
    border-bottom: 1px solid rgba(184, 151, 58, 0.1);
}

.results-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 12px;
}

.results-quote span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.casos-reales {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 680px;
    line-height: 1.9;
    margin-bottom: 56px;
}

.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.chart-card {
    background: var(--dark);
    border: 1px solid rgba(184, 151, 58, 0.15);
    padding: 32px;
}

.chart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.chart-eyebrow {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.chart-title {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
}

.chart-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.chart-metric {
    text-align: right;
}

.chart-metric .chart-big {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
}

.chart-metric .chart-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.chart-legend {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 11px;
}

.legend.before {
    display: inline-block;
    width: 12px;
    height: 3px;
    background: rgba(184, 151, 58, 0.4);
    margin-right: 5px;
    vertical-align: middle;
}

.legend.after {
    display: inline-block;
    width: 12px;
    height: 3px;
    background: var(--gold);
    margin-right: 5px;
    vertical-align: middle;
}

.chart-stats {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(184, 151, 58, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    text-align: center;
}

.chart-stats .stat {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.chart-stats .label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.chart-stats .stat.highlight {
    color: var(--gold);
}

.logros-quote {
    margin-top: 48px;
    padding: 40px;
    background: var(--dark);
    border-left: 2px solid var(--gold);
    border-right: 1px solid rgba(184, 151, 58, 0.1);
    border-top: 1px solid rgba(184, 151, 58, 0.1);
    border-bottom: 1px solid rgba(184, 151, 58, 0.1);
}

.logros-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 12px;
}

.logros-quote span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cta-final {
    text-align: center;
    padding: 120px 48px;
    background: radial-gradient(ellipse at center, rgba(184, 151, 58, 0.06) 0%, transparent 70%);
}

.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 40px;
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline {
    padding: 16px 40px;
    border: 1px solid rgba(184, 151, 58, 0.4);
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-final p i {
    color: var(--gold);
}

footer {
    padding: 40px 15px;
    border-top: 1px solid rgba(184, 151, 58, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    font-size: 12px;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {

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

    .chart-header {
        flex-direction: column;
    }

    .chart-stats {
        grid-template-columns: repeat(1, 1fr);
    }
    .chart-wrap {
        width: 234px;
    }
    .chart-header, .chart-metric {
        text-align: center!important;
    }

    .chart-header > div {
        width:100%!important;
    }

    .cta-buttons a {
        width:100%!important;
    }


}