html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    background: #000;
}

body.tarot-landing-body {
    background: #000;
    font-family: Georgia, "Times New Roman", serif;
    color: #f6e8cf;
}

.tarot-scene,
.tarot-scene * {
    box-sizing: border-box;
}

.tarot-scene {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #000;
}

.tarot-stage {
    position: relative;
    width: min(100vw, 1000px);
    margin: 0 auto;
    line-height: 0;
    overflow: hidden;
}

.tarot-bg {
    display: block;
    width: 100%;
    height: auto;
}

.tarot-overlay {
    position: absolute;
    inset: 0;
    line-height: normal;
    font-family: Georgia, "Times New Roman", serif;
}

.tarot-overlay h1,
.tarot-overlay h2,
.tarot-overlay p,
.tarot-overlay div,
.tarot-overlay span,
.tarot-overlay label,
.tarot-overlay li,
.tarot-overlay button,
.tarot-overlay textarea {
    font-family: Georgia, "Times New Roman", serif !important;
}

/* BLOQUES ABSOLUTOS */
.hero-copy,
.pick-title,
.cards-zone,
.card-labels,
.question-title,
.question-box,
.result-box,
.cta-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* HERO */
.hero-copy {
    top: 3.5%;
    width: 72%;
    text-align: center;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 58px);
    line-height: 1.06;
    font-weight: 700;
    color: #f3d28e;
    text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

.hero-copy p {
    margin: 12px 0 0;
    font-size: clamp(13px, 1.25vw, 22px);
    line-height: 1.35;
    color: #f2eadc;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

#btn-comenzar {
    margin-top: 18px;
}

/* TITULO ZONA CARTAS */
.pick-title {
    top: 19.5%;
    width: 50%;
    text-align: center;
}

.pick-title h2 {
    margin: 0;
    font-size: clamp(18px, 2vw, 34px);
    line-height: 1.15;
    color: #f6e7c9;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

/* BOTONES */
.btn {
    border: 1.5px solid rgba(214, 165, 73, .9);
    cursor: pointer;
    border-radius: 999px;
    padding: 12px 26px;
    font-size: clamp(15px, 1.1vw, 20px);
    font-weight: 700;
    transition: transform .2s ease, opacity .2s ease;
    background: linear-gradient(180deg, #3b241f 0%, #2a1615 100%);
    color: #f4d892;
    box-shadow: 0 10px 22px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,214,140,.18);
}

.btn:hover {
    transform: translateY(-1px);
}

#btn-revelar,
.cta-deep {
    display: inline-block;
}

/* CARTAS ARRIBA */
.cards-zone {
    top: 24.5%;
    width: 42%;
    height: 13%;
    z-index: 6;
}

.card-slot {
    position: absolute;
    width: 24%;
    aspect-ratio: 0.68 / 1;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.card-slot span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background:
        radial-gradient(circle at 50% 48%, rgba(230,205,133,.9) 0 4%, transparent 5%),
        linear-gradient(145deg, rgba(53,25,96,.98), rgba(29,12,58,.99));
    border: 2px solid rgba(220, 188, 126, .72);
    box-shadow: 0 12px 24px rgba(0,0,0,.42);
}

.card-slot.selected span {
    box-shadow: 0 0 0 3px rgba(255,225,161,.88), 0 12px 24px rgba(0,0,0,.42);
}

.card-1 {
    left: 8%;
    top: 6%;
    transform: rotate(-12deg);
}

.card-2 {
    left: 38%;
    top: 0;
    transform: rotate(0deg);
}

.card-3 {
    right: 8%;
    top: 6%;
    transform: rotate(12deg);
}

/* ETIQUETAS BAJO CARTAS */
.card-labels {
    top: 36.5%;
    width: 46%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
    color: #f3ead9;
    font-size: clamp(14px, 1.3vw, 24px);
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

.card-labels div {
    flex: 1;
}

/* TITULO PREGUNTA */
.question-title {
    top: 41.5%;
    width: 70%;
    text-align: center;
}

.question-title h2 {
    margin: 0;
    font-size: clamp(18px, 2vw, 34px);
    line-height: 1.15;
    color: #f6e7c9;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

/* PREGUNTA */
.question-box {
    top: 45.3%;
    width: 62%;
    text-align: center;
}

.question-box textarea {
    display: block;
    width: 100%;
    min-height: 64px;
    resize: none;
    border: 2px solid rgba(81, 54, 30, .9);
    border-radius: 8px;
    background: #f1e5ce;
    color: #3b2a1f;
    padding: 14px 16px;
    font-size: clamp(15px, 1.15vw, 20px);
    line-height: 1.3;
    outline: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.question-box textarea::placeholder {
    color: #6d5540;
}

.question-box .btn {
    margin-top: 16px;
    min-width: 320px;
}

/* RESULTADO */
.result-box {
    top: 58.8%;
    width: 76%;
    text-align: center;
    background: transparent;
}

.result-box h2 {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 38px);
    line-height: 1.1;
    color: #f6e7c9;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

.result-summary {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: clamp(14px, 1.05vw, 18px);
    color: #f5e7cc;
}

.result-cards {
    margin: 20px auto 16px;
    width: 62%;
    display: flex;
    justify-content: center;
    gap: 8%;
}

.mini-card {
    width: 22%;
    aspect-ratio: 0.67 / 1;
    border-radius: 8px;
    border: 2px solid rgba(226, 213, 178, .55);
    box-shadow: 0 10px 22px rgba(0,0,0,.35);
    background: linear-gradient(145deg, rgba(68,34,109,.98), rgba(33,14,61,.99));
}

.result-content {
    width: 82%;
    margin: 0 auto;
    font-size: clamp(15px, 1.2vw, 21px);
    line-height: 1.5;
    color: #f2eadb;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

/* CTA FINAL */
.cta-box {
    top: 84.5%;
    width: 64%;
    text-align: center;
}

.cta-box h2 {
    margin: 0 0 12px;
    font-size: clamp(20px, 2vw, 34px);
    line-height: 1.12;
    color: #f6e7c9;
    text-shadow: 0 2px 10px rgba(0,0,0,.45);
}

.cta-box ul {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    width: fit-content;
    text-align: left;
    color: #f2eadb;
    font-size: clamp(15px, 1.12vw, 19px);
    line-height: 1.55;
}

.cta-box li::before {
    content: "•";
    color: #e0b85d;
    margin-right: 10px;
}

.cta-deep {
    min-width: 280px;
    margin-top: 14px;
}

.cta-price {
    margin-top: 6px;
    color: #f3e0b4;
    font-size: clamp(14px, 1vw, 18px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-copy {
        width: 82%;
        top: 3%;
    }

    .pick-title {
        top: 18.7%;
        width: 68%;
    }

    .cards-zone {
        top: 23.8%;
        width: 58%;
        height: 12%;
    }

    .card-labels {
        top: 35.8%;
        width: 62%;
    }

    .question-title {
        top: 40.8%;
        width: 82%;
    }

    .question-box {
        top: 44.8%;
        width: 78%;
    }

    .result-box {
        top: 58.3%;
        width: 88%;
    }

    .result-cards {
        width: 80%;
    }

    .cta-box {
        top: 84%;
        width: 78%;
    }
}

@media (max-width: 560px) {
    .hero-copy h1 {
        font-size: 28px;
    }

    .hero-copy p {
        font-size: 14px;
    }

    .cards-zone {
        width: 68%;
        top: 24%;
    }

    .card-labels {
        width: 76%;
        top: 35.6%;
        font-size: 13px;
    }

    .question-box {
        width: 84%;
    }

    .question-box .btn {
        min-width: 240px;
    }

    .result-summary {
        font-size: 13px;
    }

    .result-cards {
        width: 94%;
        gap: 5%;
    }

    .mini-card {
        width: 26%;
    }

    .result-content {
        width: 92%;
        font-size: 14px;
    }

    .cta-box {
        width: 86%;
    }

    .cta-box ul {
        font-size: 14px;
    }

    .cta-deep {
        min-width: 240px;
    }
}