﻿:root {
    --dc-background: #eee8dc;
    --dc-surface: #f7f3ea;
    --dc-text: #272820;
    --dc-muted: #66665d;
    --dc-accent: #55614b;
    --dc-border: rgba(39, 40, 32, 0.14);
    --dc-radius: 20px;
    --dc-max-width: 680px;

    --dc-heading-font:
        Georgia,
        "Times New Roman",
        serif;

    --dc-body-font:
        Arial,
        Helvetica,
        sans-serif;

    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background: var(--dc-background);
    color: var(--dc-text);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    min-height: 100dvh;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(255, 255, 255, 0.58),
            transparent 42%
        ),
        var(--dc-background);

    color: var(--dc-text);
    font-family: var(--dc-body-font);

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
    font: inherit;
}

img,
video {
    display: block;
    width: 100%;
}

.app-shell {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

.restaurant-header {
    padding:
        calc(34px + var(--safe-top))
        22px
        26px;
}

.header-inner {
    width: min(100%, var(--dc-max-width));
    margin: 0 auto;
    text-align: center;
}

.restaurant-eyebrow {
    margin-bottom: 12px;

    color: var(--dc-accent);

    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.restaurant-name {
    margin: 0;

    font-family: var(--dc-heading-font);
    font-size: clamp(2rem, 9vw, 3.4rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.restaurant-tagline {
    max-width: 460px;
    margin: 16px auto 0;

    color: var(--dc-muted);

    font-family: var(--dc-heading-font);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.45;
}

.restaurant-location {
    margin: 9px auto 0;

    color: var(--dc-muted);

    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.category-nav {
    position: sticky;
    z-index: 50;
    top: 0;

    width: 100%;

    padding: 10px 0;

    background:
        linear-gradient(
            to bottom,
            rgba(238, 232, 220, 0.98),
            rgba(238, 232, 220, 0.92)
        );

    border-top: 1px solid var(--dc-border);
    border-bottom: 1px solid var(--dc-border);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.category-track {
    display: flex;
    gap: 8px;

    width: min(100%, calc(var(--dc-max-width) + 24px));

    margin: 0 auto;
    padding: 0 12px;

    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
}

.category-track::-webkit-scrollbar {
    display: none;
}

.category-chip {
    appearance: none;

    flex: 0 0 auto;

    padding: 9px 14px;

    border: 1px solid var(--dc-border);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.26);
    color: var(--dc-text);

    cursor: pointer;

    font-size: 0.78rem;
    font-weight: 600;

    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.category-chip:active {
    transform: scale(0.97);
}

.category-chip.is-active {
    background: var(--dc-text);
    border-color: var(--dc-text);
    color: var(--dc-background);
}

.menu-root {
    width: min(100%, var(--dc-max-width));
    margin: 0 auto;
    padding: 20px 14px 44px;
}

.menu-section {
    scroll-margin-top: 72px;
}

.menu-section + .menu-section {
    margin-top: 48px;
}

.category-header {
    padding: 12px 8px 20px;
    text-align: center;
}

.category-kicker {
    margin: 0 0 7px;

    color: var(--dc-accent);

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.21em;
    text-transform: uppercase;
}

.category-title {
    margin: 0;

    font-family: var(--dc-heading-font);
    font-size: clamp(1.65rem, 7vw, 2.35rem);
    font-weight: 400;
    line-height: 1.1;
}

.category-description {
    max-width: 480px;

    margin:
        10px
        auto
        0;

    color: var(--dc-muted);

    font-size: 0.88rem;
    line-height: 1.5;
}

.items-list {
    display: grid;
    gap: 24px;
}

.dish-card {
    overflow: hidden;

    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);

    background: var(--dc-surface);

    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 10px 40px rgba(39, 40, 32, 0.045);
}

.dish-media {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 255, 255, 0.65),
            rgba(85, 97, 75, 0.08) 44%,
            rgba(39, 40, 32, 0.06) 100%
        );
}

.dish-media::after {
    position: absolute;
    z-index: 3;
    inset: 0;

    content: "";

    pointer-events: none;

    box-shadow:
        inset 0 -70px 70px -70px rgba(0, 0, 0, 0.12);
}

.dish-video,
.dish-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-video {
    background: var(--dc-surface);
}

.media-placeholder {
    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    padding: 32px;

    text-align: center;
}

.media-placeholder-inner {
    max-width: 240px;
}

.placeholder-mark {
    width: 46px;
    height: 1px;

    margin: 0 auto 18px;

    background: var(--dc-accent);

    opacity: 0.5;
}

.placeholder-copy {
    margin: 0;

    color: var(--dc-muted);

    font-family: var(--dc-heading-font);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.45;
}

.dish-body {
    padding: 20px 20px 22px;
}

.dish-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: baseline;
}

.dish-name {
    margin: 0;

    font-family: var(--dc-heading-font);
    font-size: 1.28rem;
    font-weight: 400;
    line-height: 1.16;
}

.dish-price {
    margin: 0;

    white-space: nowrap;

    font-family: var(--dc-heading-font);
    font-size: 1rem;
    font-weight: 600;
}

.dish-description {
    margin: 10px 0 0;

    color: var(--dc-muted);

    font-size: 0.89rem;
    line-height: 1.55;
}

.dish-note {
    margin: 9px 0 0;

    color: var(--dc-accent);

    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.4;
}

.status-card {
    width: 100%;

    margin: 18px auto;

    padding: 42px 24px;

    border: 1px solid var(--dc-border);
    border-radius: var(--dc-radius);

    background: rgba(247, 243, 234, 0.7);

    text-align: center;
}

.status-mark {
    width: 52px;
    height: 1px;

    margin: 0 auto 18px;

    background: var(--dc-accent);

    opacity: 0.55;
}

.status-title {
    margin: 0;

    font-family: var(--dc-heading-font);
    font-size: 1.35rem;
}

.status-copy {
    max-width: 420px;

    margin: 9px auto 0;

    color: var(--dc-muted);

    font-size: 0.86rem;
    line-height: 1.55;
}

.menu-footer {
    width: min(100%, var(--dc-max-width));

    margin: 0 auto;

    padding:
        0
        24px
        calc(30px + var(--safe-bottom));

    text-align: center;
}

.footer-rule {
    width: 42px;
    height: 1px;

    margin: 0 auto 18px;

    background: var(--dc-border);
}

.footer-name {
    margin: 0;

    font-family: var(--dc-heading-font);
    font-size: 0.9rem;
}

.footer-caption {
    margin: 5px 0 0;

    color: var(--dc-muted);

    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.noscript {
    margin: 30px;
    padding: 20px;

    font-family: Arial, sans-serif;
    text-align: center;
}

[hidden] {
    display: none !important;
}

@media (min-width: 700px) {
    .restaurant-header {
        padding-top: calc(50px + var(--safe-top));
        padding-bottom: 36px;
    }

    .menu-root {
        padding-left: 0;
        padding-right: 0;
    }

    .items-list {
        gap: 30px;
    }

    .dish-body {
        padding: 24px 26px 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

.dish-variants {
    display: grid;
    gap: 7px;

    margin-top: 13px;
    padding-top: 13px;

    border-top: 1px solid var(--dc-border);
}

.dish-variant {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: baseline;
}

.dish-variant-name {
    color: var(--dc-muted);

    font-size: 0.84rem;
    line-height: 1.4;
}

.dish-variant-price {
    white-space: nowrap;

    color: var(--dc-text);

    font-family: var(--dc-heading-font);
    font-size: 0.92rem;
    font-weight: 600;
}

.dish-card:not(:has(.dish-media)) {
    box-shadow: none;
}


/* DRAGON CARTA CATEGORY NAV FIX V1 */

.category-nav {
    overflow: hidden;
}

.category-nav::before,
.category-nav::after {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;

    width: 32px;

    content: "";

    pointer-events: none;
}

.category-nav::before {
    left: 0;

    background:
        linear-gradient(
            to right,
            var(--dc-background),
            rgba(238, 232, 220, 0)
        );
}

.category-nav::after {
    right: 0;

    background:
        linear-gradient(
            to left,
            var(--dc-background),
            rgba(238, 232, 220, 0)
        );
}

.category-track {
    position: relative;
    z-index: 2;

    padding-left: 32px;
    padding-right: 32px;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
}

.category-chip {
    scroll-snap-align: center;
}


/* ==========================================================
   DRAGON CARTA - EL JARDIN IDENTITY V1
   ========================================================== */

:root {
    --dc-heading-font:
        "Arial Narrow",
        "Roboto Condensed",
        "Helvetica Neue Condensed",
        Impact,
        Arial,
        sans-serif;

    --dc-body-font:
        Arial,
        Helvetica,
        sans-serif;
}

.restaurant-header {
    background: #ffffff;
}

.restaurant-brand {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    margin: 4px auto 14px;
}

.restaurant-logo {
    display: block;

    width: min(320px, 78vw);
    height: auto;

    object-fit: contain;
}

.restaurant-name-fallback {
    display: none;
}

.restaurant-tagline {
    color: #222222;

    font-family:
        "Arial Narrow",
        "Roboto Condensed",
        Arial,
        sans-serif;

    font-size: 1rem;
    font-style: normal;
    font-weight: 500;

    letter-spacing: 0.02em;
}

.restaurant-location {
    color: #333333;
}

.category-header {
    padding-left: 0;
    padding-right: 0;

    text-align: left;
}

.category-kicker {
    display: none;
}

.category-title {
    display: block;

    width: 100%;

    margin: 0;

    padding:
        11px
        16px
        10px;

    background: #000000;
    color: #ffffff;

    font-family:
        "Arial Narrow",
        "Roboto Condensed",
        "Helvetica Neue Condensed",
        Impact,
        Arial,
        sans-serif;

    font-size: clamp(
        1.15rem,
        4.8vw,
        1.45rem
    );

    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.category-description {
    margin:
        7px
        0
        0;

    padding:
        0
        4px;

    color: #222222;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.83rem;
    font-style: italic;
    text-align: left;
}

.dish-card {
    border-color:
        rgba(0, 0, 0, 0.22);

    background:
        rgba(255, 255, 255, 0.82);
}

.dish-name {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 1.02rem;
    font-weight: 700;
}

.dish-price {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.98rem;
    font-weight: 700;
}

.dish-description {
    color: #222222;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

.category-chip {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-weight: 600;
}

@media (min-width: 700px) {

    .restaurant-logo {
        width: min(390px, 42vw);
    }

    .category-title {
        font-size: 1.35rem;
    }
}



/* ==========================================================
   DRAGON CARTA - EL JARDIN STYLE V3
   Replica identidad, conserva UX DragóN Carta
   ========================================================== */

:root {
    --ej-condensed:
        "Arial Narrow",
        "Bahnschrift Condensed",
        "Aptos Narrow",
        Arial,
        sans-serif;

    --ej-body:
        Arial,
        Helvetica,
        sans-serif;

    --ej-script:
        "Segoe Script",
        "Brush Script MT",
        cursive;
}

/* CABECERA */

.restaurant-header {
    padding:
        calc(26px + var(--safe-top))
        22px
        25px;

    background: #ffffff;
}

.restaurant-eyebrow {
    margin-bottom: 12px;

    color: #111111;

    font-family: var(--ej-condensed);
    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.22em;
}

.restaurant-brand {
    min-height: 0;

    margin:
        3px
        auto
        12px;

    padding: 0;
}

.restaurant-logo {
    display: none;
}

.restaurant-name {
    margin: 0;

    color: #000000;

    font-family:
        Arial Black,
        Impact,
        var(--ej-condensed);

    font-size: clamp(
        2.8rem,
        10vw,
        4.5rem
    );

    font-weight: 900;
    line-height: 0.92;

    letter-spacing: -0.055em;
}

.restaurant-name::before {
    content: "el ";

    font-family: var(--ej-script);

    font-size: 0.5em;
    font-weight: 700;

    letter-spacing: -0.08em;
}

.restaurant-tagline {
    margin-top: 12px;

    color: #2f2e2e;

    font-family: var(--ej-condensed);
    font-size: 1.02rem;
    font-style: normal;
    font-weight: 400;

    letter-spacing: 0.01em;
}

.restaurant-location {
    margin-top: 7px;

    color: #2f2e2e;

    font-family: var(--ej-script);
    font-size: 0.82rem;
    font-weight: 400;

    letter-spacing: 0;
    text-transform: none;
}

/* NAVEGACION */

.category-chip {
    border-radius: 2px;

    font-family: var(--ej-condensed);
    font-size: 0.82rem;
    font-weight: 600;
}

.category-chip.is-active {
    background: #000000;
    border-color: #000000;

    color: #ffffff;
}

/* TITULOS DE CATEGORIA */

.category-header {
    padding:
        8px
        0
        14px;

    text-align: left;
}

.category-kicker {
    display: none;
}

.category-title {
    display: block;

    width: 100%;

    margin: 0;

    padding:
        10px
        15px
        9px;

    border-radius: 0;

    background: #000000;
    color: #ffffff;

    font-family:
        "Arial Black",
        Impact,
        var(--ej-condensed);

    font-size: clamp(
        1.08rem,
        4vw,
        1.32rem
    );

    font-weight: 800;
    line-height: 1;

    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.category-description {
    max-width: none;

    margin:
        6px
        0
        0;

    padding:
        0
        5px;

    color: #111111;

    font-family: var(--ej-body);
    font-size: 0.84rem;
    font-style: italic;

    text-align: left;
}

/* PRODUCTOS */

.dish-name {
    color: #000000;

    font-family: var(--ej-body);

    font-size: 1.02rem;
    font-weight: 700;

    line-height: 1.12;
}

.dish-price {
    color: #000000;

    font-family: var(--ej-body);

    font-size: 1rem;
    font-weight: 700;
}

.dish-description {
    margin-top: 5px;

    color: #111111;

    font-family: var(--ej-body);

    font-size: 0.89rem;
    line-height: 1.34;
}

.dish-note {
    font-family: var(--ej-body);
    font-style: italic;
}

/* Evita que escritorio parezca demasiado ancho */

@media (min-width: 700px) {

    .restaurant-name {
        font-size: 4.2rem;
    }

    .category-title {
        font-size: 1.25rem;
    }
}


/* ==========================================================
   DRAGON CARTA - EL JARDIN REAL BRAND V3.2
   ========================================================== */

/*
   Usamos el logo real proporcionado.
   El JPG original es blanco sobre negro.
   Invertimos únicamente sus tonos para obtener
   el mismo dibujo real negro sobre fondo blanco.
*/

.restaurant-brand {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    min-height: 0;

    margin:
        4px
        auto
        13px;

    padding: 0;
}

.restaurant-logo-real {
    display: block !important;

    width: min(270px, 65vw);
    height: auto;

    max-height: none;

    margin: 0 auto;

    object-fit: contain;

    filter:
        invert(1)
        grayscale(1);

    mix-blend-mode: multiply;
}

.restaurant-name-accessible {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    margin: -1px !important;
    padding: 0 !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;

    white-space: nowrap !important;

    border: 0 !important;
}

/*
   Navegación:
   mismo lenguaje visual que encabezados negros.
*/

.category-chip {
    border-radius: 0;

    font-family:
        "Arial Black",
        Impact,
        "Arial Narrow",
        "Bahnschrift Condensed",
        Arial,
        sans-serif;

    font-size: 0.73rem;
    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.01em;

    text-transform: uppercase;
}

.category-chip.is-active {
    background: #000000;
    border-color: #000000;

    color: #ffffff;
}

/*
   El título de categoría y los botones
   comparten ahora la misma familia visual.
*/

.category-title {
    font-family:
        "Arial Black",
        Impact,
        "Arial Narrow",
        "Bahnschrift Condensed",
        Arial,
        sans-serif;

    font-weight: 800;

    text-transform: uppercase;
}

@media (min-width: 700px) {

    .restaurant-logo-real {
        width: min(290px, 25vw);
    }

    .category-chip {
        font-size: 0.75rem;
    }
}


/* ==========================================================
   DRAGON CARTA - CATEGORY NAV CENTER FIX V1
   ========================================================== */

/*
   En pantallas con espacio suficiente:
   el grupo completo de categorías queda centrado.

   Si la suma de botones supera el ancho disponible,
   conserva scroll horizontal normal.
*/

.category-track {
    justify-content: safe center;
}

/*
   Fallback para navegadores que no soporten safe center.
*/

@supports not (justify-content: safe center) {

    .category-track {
        justify-content: center;
    }
}

/*
   En pantallas angostas necesitamos comenzar desde la izquierda
   para no esconder la primera categoría y conservar scrolling.
*/

@media (max-width: 760px) {

    .category-track {
        justify-content: flex-start;
    }
}


/* ==========================================================
   DRAGON CARTA - CATEGORY NAV FULL WIDTH CENTER V2
   ========================================================== */

/*
   La carta conserva su ancho elegante.
   SOLO la navegacion puede aprovechar el ancho del navegador.
*/

@media (min-width: 900px) {

    .category-track {
        width: max-content;
        max-width: calc(100vw - 48px);

        margin-left: auto;
        margin-right: auto;

        padding-left: 16px;
        padding-right: 16px;

        justify-content: center;

        overflow-x: auto;
    }

    .category-chip {
        flex: 0 0 auto;

        padding:
            9px
            12px;

        font-size: 0.72rem;
    }
}

/*
   En pantallas realmente grandes deberían entrar todas
   las categorías en una sola línea centrada.
*/

@media (min-width: 1180px) {

    .category-track {
        max-width: 1160px;

        overflow-x: visible;
    }

    .category-chip {
        padding-left: 13px;
        padding-right: 13px;
    }
}

/*
   Tablet y móvil:
   mantenemos navegación desplazable desde la izquierda.
*/

@media (max-width: 899px) {

    .category-track {
        width: min(
            100%,
            calc(var(--dc-max-width) + 24px)
        );

        max-width: none;

        justify-content: flex-start;

        overflow-x: auto;
    }
}


/* ==========================================================
   DRAGON_CARTA_DEMO_PERSONALIZER_V1
   ========================================================== */

.demo-personalizer {
    position: relative;
    z-index: 30;
    padding: 16px 14px 8px;
}

.demo-personalizer-card {
    width: min(100%, 560px);
    box-sizing: border-box;
    margin: 0 auto;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .97);
    color: #161616;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .12);
}

.demo-personalizer-eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    opacity: .5;
}

.demo-personalizer-title {
    margin: 0;
    font-size: clamp(23px, 6vw, 31px);
    line-height: 1.05;
}

.demo-personalizer-copy {
    margin: 10px 0 18px;
    font-size: 14px;
    line-height: 1.45;
    opacity: .68;
}

.demo-personalizer-label {
    display: block;
    margin: 14px 0 7px;
    font-size: 13px;
    font-weight: 700;
}

.demo-personalizer-input {
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, .14);
    border-radius: 14px;
    outline: none;
    background: #fff;
    color: #111;
    font: inherit;
}

.demo-personalizer-input:focus {
    border-color: rgba(0, 0, 0, .45);
}

.demo-personalizer-file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.demo-logo-picker {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    box-sizing: border-box;
    padding: 0 15px;
    border: 1px dashed rgba(0, 0, 0, .25);
    border-radius: 14px;
    background: rgba(0, 0, 0, .025);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.demo-personalizer-file-name {
    margin-top: 7px;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: .58;
}

.demo-personalizer-button,
.demo-personalizer-reset {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    border-radius: 14px;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

.demo-personalizer-button {
    margin-top: 18px;
    border: 0;
    background: #111;
    color: #fff;
}

.demo-personalizer-reset {
    margin-top: 8px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: transparent;
    color: #222;
}

.demo-personalizer-note {
    margin: 12px 4px 0;
    text-align: center;
    font-size: 11px;
    line-height: 1.4;
    opacity: .48;
}

@media (min-width: 700px) {
    .demo-personalizer {
        padding-top: 24px;
    }

    .demo-personalizer-card {
        padding: 24px;
    }
}

/* ==========================================================
   DRAGON_CARTA_DEMO_GENERIC_IDENTITY_V1
   ========================================================== */

/*
 * En la demo:
 * primera línea bajo logo = nombre
 * segunda línea = slogan
 */

.demo-personalized-name {
    font-weight: 600;
}

.demo-personalized-slogan {
    opacity: .78;
}


/* DRAGON_CARTA_SHOWCASE_MODE_V1 */

html.dragon-carta-showcase-v1 {
    scroll-behavior: smooth;
}

html.dragon-carta-showcase-v1 .demo-personalizer {
    display: none !important;
}

html.dragon-carta-showcase-v1 body {
    margin-top: 0 !important;
}

html.dragon-carta-showcase-v1 .app-shell {
    min-height: 100vh;
}
