/*
Theme Name: Midnight Drops
Template: hello-elementor
Description: Tema hijo de Hello Elementor para Midnight Drops — neón nocturno con catálogo vía WhatsApp.
Version: 0.1.0
Author: Midnight Drops
Text Domain: midnight-drops
*/

:root {
    --md-bg: #0A0420;
    --md-surface: #14082E;
    --md-surface-2: #1B0B3A;
    --md-fg: #FFFFFF;
    --md-muted: #9B8FB8;
    --md-neon-magenta: #B026FF;
    --md-neon-violet: #7B2BFF;
    --md-neon-cyan: #22D3FF;
    --md-gradient: linear-gradient(135deg, #B026FF 0%, #7B2BFF 50%, #22D3FF 100%);
    --md-font-heading: 'Sora', system-ui, sans-serif;
    --md-font-body: 'Inter', system-ui, sans-serif;
    --md-radius: 20px;
    --md-radius-pill: 999px;
    --md-header-height: 72px;
}

/* === Base === */
html { scroll-behavior: smooth; }
body {
    background-color: var(--md-bg);
    color: var(--md-fg);
    font-family: var(--md-font-body);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    margin: 0;
}
body.md-no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--md-font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--md-fg);
    letter-spacing: -0.015em;
}

a { color: var(--md-neon-cyan); transition: color .2s ease; text-decoration: none; }
a:hover { color: var(--md-neon-magenta); }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--md-neon-magenta); color: #fff; }

.md-skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--md-neon-magenta); color: #fff; padding: .5rem 1rem; z-index: 999;
}
.md-skip-link:focus { left: 1rem; top: 1rem; }

/* === Fondo nocturno animado === */
body::before {
    content: '';
    position: fixed;
    inset: -15%;
    z-index: -2;
    background:
        radial-gradient(ellipse 55% 45% at 10% 15%, rgba(176, 38, 255, .32), transparent 60%),
        radial-gradient(ellipse 50% 50% at 90% 40%, rgba(34, 211, 255, .26), transparent 60%),
        radial-gradient(ellipse 70% 50% at 30% 95%, rgba(123, 43, 255, .28), transparent 60%),
        radial-gradient(ellipse 40% 35% at 80% 85%, rgba(176, 38, 255, .22), transparent 60%),
        radial-gradient(ellipse 45% 40% at 50% 50%, rgba(34, 211, 255, .10), transparent 70%),
        var(--md-bg);
    animation: md-bg-drift 32s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes md-bg-drift {
    from { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
    to   { transform: translate3d(-3%, -2%, 0) scale(1.1) rotate(2deg); }
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(1px 1px at 20% 30%, #fff, transparent),
        radial-gradient(1px 1px at 60% 70%, #fff, transparent),
        radial-gradient(2px 2px at 50% 50%, #22D3FF, transparent),
        radial-gradient(1px 1px at 80% 10%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 90% 60%, #B026FF, transparent),
        radial-gradient(1px 1px at 33% 80%, #fff, transparent),
        radial-gradient(1px 1px at 10% 90%, #22D3FF, transparent),
        radial-gradient(1.5px 1.5px at 70% 20%, #fff, transparent),
        radial-gradient(1px 1px at 5% 50%, #B026FF, transparent),
        radial-gradient(1px 1px at 45% 15%, #fff, transparent),
        radial-gradient(1px 1px at 25% 60%, #22D3FF, transparent);
    background-size: 320px 320px;
    background-repeat: repeat;
    animation: md-stars-twinkle 5s ease-in-out infinite alternate;
    pointer-events: none;
    opacity: 0.65;
}
@keyframes md-stars-twinkle {
    from { opacity: 0.30; }
    to   { opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
    body::before, body::after, html { animation: none !important; scroll-behavior: auto; }
}

/* === Helpers === */
.md-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }
.md-grid { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.md-grid--gallery { gap: 2rem; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }

/* ===================================================== */
/* === HEADER ========================================== */
/* ===================================================== */

.md-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(10, 4, 32, .55);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(176, 38, 255, .12);
    transition: background .25s ease, border-color .25s ease, padding .25s ease;
}
.md-header.is-scrolled {
    background: rgba(10, 4, 32, .85);
    border-bottom-color: rgba(176, 38, 255, .28);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .4);
}
.md-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: .85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--md-header-height);
}
.md-header__brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex: 0 0 auto;
}
.md-header__logo {
    height: 46px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 8px rgba(176, 38, 255, .55)) drop-shadow(0 0 16px rgba(34, 211, 255, .35));
    transition: filter .3s ease, transform .3s ease;
}
.md-header__brand:hover .md-header__logo {
    filter: drop-shadow(0 0 14px rgba(176, 38, 255, .9)) drop-shadow(0 0 28px rgba(34, 211, 255, .6));
    transform: translateY(-1px);
}
.md-header__name {
    font-family: var(--md-font-heading);
    font-weight: 700;
    color: var(--md-fg);
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

/* Menú desktop */
.md-header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.md-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.md-menu li { margin: 0; padding: 0; }
.md-menu a {
    color: var(--md-fg);
    font-family: var(--md-font-heading);
    font-weight: 500;
    font-size: .95rem;
    text-decoration: none;
    position: relative;
    padding: .35rem 0;
    transition: color .2s ease;
}
.md-menu a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--md-gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
    border-radius: 2px;
}
.md-menu a:hover { color: var(--md-fg); }
.md-menu a:hover::after,
.md-menu .current-menu-item > a::after,
.md-menu .current_page_item > a::after { transform: scaleX(1); }

.md-menu__cta {
    padding: .6rem 1.25rem !important;
    font-size: .85rem !important;
}

/* Toggle (hamburguesa) */
.md-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.md-header__toggle span {
    display: block;
    position: absolute;
    left: 10px; right: 10px;
    height: 2px;
    background: var(--md-fg);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease, top .3s ease, background .25s ease;
}
.md-header__toggle span:nth-child(1) { top: 14px; }
.md-header__toggle span:nth-child(2) { top: 21px; }
.md-header__toggle span:nth-child(3) { top: 28px; }
.md-header__toggle.is-active span:nth-child(1) { top: 21px; transform: rotate(45deg); background: var(--md-neon-cyan); }
.md-header__toggle.is-active span:nth-child(2) { opacity: 0; }
.md-header__toggle.is-active span:nth-child(3) { top: 21px; transform: rotate(-45deg); background: var(--md-neon-magenta); }

@media (max-width: 880px) {
    .md-header__toggle { display: block; }
    .md-header__nav {
        position: fixed;
        inset: var(--md-header-height) 0 0 0;
        background: rgba(10, 4, 32, .96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform .35s cubic-bezier(.22, .61, .36, 1);
    }
    .md-header__nav.is-open { transform: translateX(0); }
    .md-menu {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1.5rem;
        width: 100%;
    }
    .md-menu a { font-size: 1.5rem; padding: .5rem 0; display: inline-block; }
    .md-menu__cta { font-size: 1rem !important; padding: 1rem 2rem !important; }
}

/* ===================================================== */
/* === HERO ============================================ */
/* ===================================================== */

.md-hero {
    position: relative;
    min-height: calc(100vh - var(--md-header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    overflow: hidden;
}
.md-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    will-change: transform, opacity;
    animation: md-orb-pulse 10s ease-in-out infinite alternate;
}
.md-hero__orb--1 {
    width: 520px; height: 520px;
    top: -120px; left: -160px;
    background: radial-gradient(circle, rgba(176, 38, 255, .55), transparent 70%);
}
.md-hero__orb--2 {
    width: 580px; height: 580px;
    bottom: -200px; right: -180px;
    background: radial-gradient(circle, rgba(34, 211, 255, .45), transparent 70%);
    animation-delay: -5s;
}
@keyframes md-orb-pulse {
    from { transform: scale(1) translate(0, 0); opacity: .55; }
    to   { transform: scale(1.18) translate(30px, -20px); opacity: 1; }
}

.md-hero__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.md-hero__logo-wrap {
    position: relative;
    display: inline-block;
    margin: 0 auto 1.75rem;
}
.md-hero__logo {
    max-width: min(300px, 65vw);
    height: auto;
    margin: 0 auto;
    mix-blend-mode: screen;
    filter:
        drop-shadow(0 0 20px rgba(176, 38, 255, .6))
        drop-shadow(0 0 40px rgba(34, 211, 255, .35))
        drop-shadow(0 0 80px rgba(176, 38, 255, .2));
    animation: md-logo-float 6s ease-in-out infinite, md-logo-glow 4s ease-in-out infinite alternate;
}
@keyframes md-logo-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@keyframes md-logo-glow {
    from {
        filter:
            drop-shadow(0 0 18px rgba(176, 38, 255, .45))
            drop-shadow(0 0 36px rgba(34, 211, 255, .25))
            drop-shadow(0 0 70px rgba(176, 38, 255, .15));
    }
    to {
        filter:
            drop-shadow(0 0 28px rgba(176, 38, 255, .85))
            drop-shadow(0 0 56px rgba(34, 211, 255, .55))
            drop-shadow(0 0 100px rgba(176, 38, 255, .3));
    }
}

/* Sparkles flotando alrededor del logo */
.md-hero__sparkle {
    position: absolute;
    width: 8px; height: 8px;
    border-radius: 50%;
    pointer-events: none;
    animation: md-sparkle 4s ease-in-out infinite;
}
.md-hero__sparkle::before {
    content: '';
    position: absolute; inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, currentColor, transparent 65%);
    opacity: .8;
    filter: blur(2px);
}
.md-hero__sparkle--1 { color: var(--md-neon-cyan);    top: 8%;  left: 18%; animation-delay: 0s; }
.md-hero__sparkle--2 { color: var(--md-neon-magenta); top: 22%; right: 16%; animation-delay: 1.2s; }
.md-hero__sparkle--3 { color: var(--md-neon-magenta); top: 64%; left: 12%; animation-delay: 2.4s; }
.md-hero__sparkle--4 { color: var(--md-neon-cyan);    top: 72%; right: 14%; animation-delay: .7s; }
@keyframes md-sparkle {
    0%, 100% { transform: scale(.4) rotate(0deg); opacity: .25; }
    50%      { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.md-hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    background: var(--md-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.md-hero__tagline {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--md-muted);
    max-width: 560px;
    margin: 0 auto 2.25rem;
    line-height: 1.65;
}
.md-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.md-hero__scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--md-muted);
    font-size: 1.5rem;
    z-index: 2;
    animation: md-bounce 2.2s ease-in-out infinite;
}
@keyframes md-bounce {
    0%, 100% { transform: translate(-50%, 0); opacity: .35; }
    50%      { transform: translate(-50%, 12px); opacity: 1; }
}

/* ===================================================== */
/* === BOTONES ========================================= */
/* ===================================================== */

.md-btn-primary, .md-btn-secondary, .md-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .9rem 1.85rem;
    border-radius: var(--md-radius-pill);
    font-family: var(--md-font-heading);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    border: 0;
    cursor: pointer;
    line-height: 1;
}
.md-btn-primary {
    background: var(--md-gradient);
    color: #fff;
    box-shadow: 0 0 26px rgba(176, 38, 255, .42);
}
.md-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 44px rgba(176, 38, 255, .75);
    color: #fff;
}
.md-btn-secondary {
    background: transparent;
    color: var(--md-neon-cyan);
    border: 1px solid var(--md-neon-cyan);
}
.md-btn-secondary:hover {
    background: rgba(34, 211, 255, .08);
    box-shadow: 0 0 26px rgba(34, 211, 255, .4);
    color: var(--md-neon-cyan);
}

.md-whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff !important;
    box-shadow: 0 0 24px rgba(37, 211, 102, .42);
}
.md-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 38px rgba(37, 211, 102, .7);
    color: #fff !important;
}
.md-whatsapp-btn::before {
    content: "";
    width: 1.05em; height: 1.05em;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12.04 2c-5.52 0-10 4.48-10 10 0 1.76.46 3.4 1.27 4.83L2 22l5.32-1.27c1.36.74 2.93 1.16 4.6 1.16 5.52 0 10-4.48 10-10s-4.36-9.89-9.88-9.89zm5.84 14.13c-.25.7-1.45 1.34-2.04 1.42-.52.08-1.18.11-1.91-.12-.44-.14-1.01-.32-1.74-.64-3.06-1.32-5.06-4.41-5.21-4.61-.15-.2-1.25-1.66-1.25-3.17 0-1.51.79-2.25 1.07-2.56.28-.31.61-.39.81-.39h.59c.19 0 .45-.07.7.54.25.61.85 2.12.93 2.27.07.15.13.32.02.52-.11.2-.16.32-.31.5-.16.18-.33.4-.47.54-.16.16-.32.33-.14.65.18.32.81 1.33 1.74 2.16 1.2 1.07 2.21 1.4 2.53 1.56.32.16.5.13.69-.08.18-.21.79-.92.99-1.23.21-.32.42-.27.7-.16.29.11 1.81.85 2.12 1.01.31.16.52.24.6.37.06.13.06.78-.18 1.49z'/></svg>") center/contain no-repeat;
}

/* ===================================================== */
/* === SECCIONES (flujo fluido, sin cortes) ============ */
/* ===================================================== */

.md-section {
    padding: 5.5rem 1.5rem;
    position: relative;
}
.md-section__header { text-align: center; margin-bottom: 3rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.md-section__eyebrow {
    display: inline-block;
    color: var(--md-neon-cyan);
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .78rem;
    margin-bottom: .85rem;
    font-family: var(--md-font-heading);
    font-weight: 600;
}
.md-section__title {
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    margin: 0;
    background: var(--md-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.15;
}

/* ===================================================== */
/* === CARD DE PRODUCTO ================================ */
/* ===================================================== */

.md-producto-card {
    background: linear-gradient(180deg, rgba(20, 8, 46, .9), rgba(20, 8, 46, .55));
    border: 1px solid rgba(176, 38, 255, .22);
    border-radius: var(--md-radius);
    overflow: hidden;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    position: relative;
    backdrop-filter: blur(8px);
}
.md-producto-card:hover {
    transform: translateY(-6px);
    border-color: var(--md-neon-magenta);
    box-shadow: 0 14px 44px rgba(176, 38, 255, .32);
}
.md-producto-card__link { text-decoration: none; color: inherit; display: block; }
.md-producto-card__media {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--md-surface-2);
    position: relative;
}
.md-producto-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.md-producto-card:hover .md-producto-card__media img { transform: scale(1.07); }
.md-producto-card__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--md-neon-magenta);
    font-size: 3.5rem;
    background: radial-gradient(circle at center, rgba(176, 38, 255, .2), transparent 70%);
    text-shadow: 0 0 22px currentColor;
}
.md-producto-card__badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(10, 4, 32, .85);
    backdrop-filter: blur(6px);
    color: var(--md-neon-magenta);
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-family: var(--md-font-heading);
    font-weight: 600;
    border: 1px solid rgba(176, 38, 255, .45);
}
.md-producto-card__body { padding: 1.35rem; }
.md-producto-card__title { font-size: 1.1rem; margin: 0 0 .5rem; color: var(--md-fg); }
.md-producto-card__price {
    color: var(--md-neon-cyan);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    font-family: var(--md-font-heading);
}

/* ===================================================== */
/* === SINGLE PRODUCTO ================================= */
/* ===================================================== */

.md-producto-single__grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .md-producto-single__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.md-producto-single__image {
    width: 100%;
    height: auto;
    border-radius: var(--md-radius);
    border: 1px solid rgba(123, 43, 255, .3);
    box-shadow: 0 0 60px rgba(176, 38, 255, .18);
}
.md-producto-single__title { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 1rem; }
.md-producto-single__price {
    font-family: var(--md-font-heading);
    font-size: 2rem;
    color: var(--md-neon-cyan);
    margin: 0 0 1.5rem;
    font-weight: 700;
}
.md-producto-single__description { color: var(--md-muted); margin-bottom: 2rem; line-height: 1.7; }
.md-producto-single__description p { margin: 0 0 1rem; }

/* ===================================================== */
/* === CÓMO FUNCIONA =================================== */
/* ===================================================== */

.md-how__steps {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.md-how__step {
    background: linear-gradient(180deg, rgba(20, 8, 46, .85), rgba(20, 8, 46, .45));
    border: 1px solid rgba(176, 38, 255, .22);
    border-radius: var(--md-radius);
    padding: 2.25rem 2rem;
    text-align: center;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    backdrop-filter: blur(8px);
}
.md-how__step:hover {
    border-color: var(--md-neon-cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(34, 211, 255, .22);
}
.md-how__num {
    display: inline-block;
    font-family: var(--md-font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--md-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
}
.md-how__step h3 { font-size: 1.2rem; margin: 0 0 .75rem; }
.md-how__step p { color: var(--md-muted); margin: 0; line-height: 1.6; }

/* ===================================================== */
/* === CTA FINAL ======================================= */
/* ===================================================== */

.md-cta {
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
}
.md-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(176, 38, 255, .22), transparent 65%);
    pointer-events: none;
}
.md-cta__inner { position: relative; z-index: 1; }
.md-cta__inner h2 {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    margin: 0 0 .75rem;
    background: var(--md-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.md-cta__inner p { color: var(--md-muted); margin: 0 0 2rem; }

/* ===================================================== */
/* === FOOTER ========================================== */
/* ===================================================== */

.md-footer {
    background: rgba(10, 4, 32, .6);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(176, 38, 255, .18);
    padding: 3rem 1.5rem 2rem;
    position: relative;
    z-index: 1;
}
.md-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.md-footer__brand { display: inline-flex; }
.md-footer__logo {
    height: 56px;
    width: auto;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 12px rgba(176, 38, 255, .6)) drop-shadow(0 0 24px rgba(34, 211, 255, .4));
}
.md-footer__menu {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.md-footer__menu a {
    color: var(--md-muted);
    font-family: var(--md-font-heading);
    font-size: .9rem;
    transition: color .2s ease;
}
.md-footer__menu a:hover { color: var(--md-neon-cyan); }
.md-footer__copy { color: var(--md-muted); margin: 0; font-size: .85rem; }

/* ===================================================== */
/* === FLOATING WHATSAPP =============================== */
/* ===================================================== */

.md-floating-whatsapp {
    position: fixed;
    bottom: 1.5rem; right: 1.5rem;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .5);
    z-index: 100;
    transition: transform .2s ease, box-shadow .2s ease;
    animation: md-pulse-ring 2.5s ease-out infinite;
}
.md-floating-whatsapp:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, .75);
}
.md-floating-whatsapp svg { width: 30px; height: 30px; fill: #fff; }
@keyframes md-pulse-ring {
    0%   { box-shadow: 0 4px 20px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .5); }
    70%  { box-shadow: 0 4px 20px rgba(37, 211, 102, .5), 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================================================== */
/* === PAGINACIÓN ====================================== */
/* ===================================================== */

.nav-links { display: inline-flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 .75rem;
    border-radius: 10px;
    background: var(--md-surface);
    color: var(--md-fg);
    text-decoration: none;
    border: 1px solid rgba(176, 38, 255, .25);
    transition: all .2s ease;
}
.page-numbers:hover, .page-numbers.current {
    background: var(--md-gradient);
    border-color: transparent;
    color: #fff;
}

/* ===================================================== */
/* === OCULTAR ARTEFACTOS DE HELLO ELEMENTOR =========== */
/* ===================================================== */

.site-header, .site-footer { display: none !important; }
.site-description { display: none !important; }
