.elementor-239 .elementor-element.elementor-element-a76168d{--display:flex;}.elementor-239 .elementor-element.elementor-element-a526f84{background-color:#000000;}body.elementor-page-239:not(.elementor-motion-effects-element-type-background), body.elementor-page-239 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}:root{--page-title-display:none;}/* Start custom CSS */```css
/* =========================================================
   DRAGONSGARD — BOTONES
   GLOW + MOVIMIENTO SUAVE
   ========================================================= */

.dg-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 25px;

    border: 1px solid #ff008c;

    background: rgba(0, 0, 0, 0.35);

    color: #ffffff !important;
    text-decoration: none !important;

    text-transform: uppercase;
    letter-spacing: 2px;

    font-size: 11px;
    font-weight: 700;

    overflow: hidden;

    transform: translateY(0);

    box-shadow:
        0 0 0 rgba(255, 0, 140, 0);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;

    animation: dg-button-breathe 3.5s ease-in-out infinite;

    will-change: transform, box-shadow;
}


/* =========================================================
   BRILLO INTERNO
   ========================================================= */

.dg-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.7s ease;

    pointer-events: none;
}


/* =========================================================
   HALO EXTERIOR
   ========================================================= */

.dg-button::after {
    content: "";

    position: absolute;

    inset: -3px;

    border: 1px solid rgba(255, 0, 140, 0.25);

    box-shadow:
        0 0 8px rgba(255, 0, 140, 0.25),
        0 0 20px rgba(255, 0, 140, 0.12);

    opacity: 0;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;

    pointer-events: none;
}


/* =========================================================
   HOVER
   ========================================================= */

.dg-button:hover {

    transform:
        translateY(-4px)
        scale(1.015);

    background: rgba(255, 0, 140, 0.10);

    border-color: #ff38ad;

    color: #ffffff !important;

    box-shadow:
        0 0 8px rgba(255, 0, 140, 0.65),
        0 0 22px rgba(255, 0, 140, 0.35),
        0 0 45px rgba(255, 0, 140, 0.15);

    animation: none;
}


/* =========================================================
   HOVER — BARRIDO DE LUZ
   ========================================================= */

.dg-button:hover::before {
    left: 140%;
}


/* =========================================================
   HOVER — HALO
   ========================================================= */

.dg-button:hover::after {

    opacity: 1;

    transform: scale(1.05);

}


/* =========================================================
   CLICK
   ========================================================= */

.dg-button:active {

    transform:
        translateY(-1px)
        scale(0.98);

    box-shadow:
        0 0 10px rgba(255, 0, 140, 0.55),
        0 0 25px rgba(255, 0, 140, 0.25);

}


/* =========================================================
   ANIMACIÓN SUAVE EN REPOSO
   ========================================================= */

@keyframes dg-button-breathe {

    0%,
    100% {

        box-shadow:
            0 0 0 rgba(255, 0, 140, 0);

        transform:
            translateY(0);
    }

    50% {

        box-shadow:
            0 0 7px rgba(255, 0, 140, 0.20),
            0 0 18px rgba(255, 0, 140, 0.08);

        transform:
            translateY(-1px);
    }
}


/* =========================================================
   BOTONES DENTRO DE DRAGONSGARD
   Evita afectar botones externos de Elementor.
   ========================================================= */

.dg-home .dg-button {
    position: relative;
    z-index: 1;
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .dg-button {
        animation: none;
        transition: none;
    }

    .dg-button:hover {
        transform: none;
    }

    .dg-button::before,
    .dg-button::after {
        transition: none;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .dg-button {

        min-height: 46px;

        padding:
            0 20px;

        font-size: 10px;

        letter-spacing: 1.7px;
    }

    .dg-button:hover {

        transform:
            translateY(-2px)
            scale(1.01);
    }
}
```/* End custom CSS */