.card-header-icon .icon-tarot {
    animation: tarotSparkle 2.2s infinite alternate cubic-bezier(.4,1.6,.4,1);
    filter: drop-shadow(0 0 6px #a020f0) drop-shadow(0 0 10px #40e0d0);
}

@keyframes tarotSparkle {
    0% { filter: drop-shadow(0 0 6px #a020f0) drop-shadow(0 0 10px #40e0d0) brightness(1); }
    40% { filter: drop-shadow(0 0 12px #a020f0) drop-shadow(0 0 18px #40e0d0) brightness(1.18); }
    60% { filter: drop-shadow(0 0 18px #d4af37) drop-shadow(0 0 24px #f9f295) brightness(1.25); }
    100% { filter: drop-shadow(0 0 6px #a020f0) drop-shadow(0 0 10px #40e0d0) brightness(1); }
}
/* --- MINI ORÁCULO DEMO --- */
.mini-oraculo-demo {
    margin-bottom: 2.2rem;
}
.mini-oraculo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.1rem 1.2rem 1.5rem;
    background:
        linear-gradient(120deg, rgba(30,0,60,0.82) 60%, rgba(160,32,240,0.18) 100%) padding-box,
        linear-gradient(45deg, #a020f0 10%, #40e0d0 90%) border-box;
    border-radius: 1.5rem;
    border: 2.5px solid rgba(160,32,240,0.35);
    box-shadow: 0 2px 32px 0 #a020f0, 0 0 44px #40e0d0, 0 8px 32px rgba(0,0,0,0.28), 0 0 0 1.5px rgba(255,255,255,0.08) inset;
    backdrop-filter: blur(12px) saturate(1.25);
    -webkit-backdrop-filter: blur(12px) saturate(1.25);
    margin-bottom: 1.2rem;
    text-align: center;
}
.mini-oraculo-header h2 {
    font-size: 1.45rem;
    margin-bottom: 0.7rem;
}
.mini-oraculo-carta {
    width: 8.2rem;
    height: 12.2rem;
    perspective: 1200px;
    margin: 1.1rem auto 0.7rem;
    cursor: pointer;
    outline: none;
    border-radius: 1.1rem;
    box-shadow: 0 0 24px #a020f0, 0 0 32px #40e0d0, 0 4px 18px rgba(0,0,0,0.28);
    position: relative;
    background: none;
    transition: box-shadow 220ms cubic-bezier(.4,1.6,.4,1);
}
.mini-oraculo-carta:focus-visible {
    box-shadow: 0 0 44px #a020f0, 0 0 64px #40e0d0, 0 16px 48px rgba(0,0,0,0.38);
}
.mini-oraculo-carta-inner {
    width: 100%;
    height: 100%;
    border-radius: 1.1rem;
    position: relative;
    transition: transform 0.7s cubic-bezier(.4,1.6,.4,1);
    transform-style: preserve-3d;
}
.mini-oraculo-carta.revelada .mini-oraculo-carta-inner {
    transform: rotateY(180deg);
}
.mini-oraculo-carta-front, .mini-oraculo-carta-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.08rem;
    background:
        linear-gradient(120deg, rgba(30,0,60,0.92) 60%, rgba(160,32,240,0.22) 100%) padding-box,
        linear-gradient(45deg, #a020f0 10%, #40e0d0 90%) border-box;
    border: 2px solid rgba(160,32,240,0.22);
    box-shadow: 0 0 18px #a020f0, 0 0 24px #40e0d0, 0 2px 8px rgba(0,0,0,0.18);
    color: #fff;
    text-shadow: 0 0 8px #d4af37, 0 0 18px #f9f295, 0 0 2px #fff2;
}
.mini-oraculo-carta-front {
    z-index: 2;
}
.mini-oraculo-carta-back {
    transform: rotateY(180deg);
    z-index: 3;
    font-size: 1.09rem;
    padding: 0.7rem 0.6rem;
    color: #fffbe7;
    text-shadow: 0 0 8px #d4af37, 0 0 18px #f9f295, 0 0 2px #fff2;
}
.mini-oraculo-symbol {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
    text-shadow: 0 0 12px #a020f0, 0 0 18px #40e0d0;
}
.mini-oraculo-txt {
    font-size: 1.01rem;
    opacity: 0.82;
}
.mini-oraculo-leyenda {
    margin-top: 1.1rem;
    font-size: 0.98rem;
    color: #f9f295;
    opacity: 0.82;
    text-shadow: 0 0 8px #d4af37, 0 0 18px #f9f295;
}
@media (max-width: 600px) {
    .mini-oraculo-container {
        padding: 0.7rem 0.1rem 0.7rem;
    }
    .mini-oraculo-carta {
        width: 5.7rem;
        height: 8.2rem;
        margin-bottom: 0.5rem;
    }
    .mini-oraculo-header h2 {
        font-size: 1.08rem;
    }
    .mini-oraculo-leyenda {
        font-size: 0.89rem;
        margin-top: 0.7rem;
    }
    .services-carousel {
        padding-left: 0.1rem;
        padding-right: 0.1rem;
    }
    .modern-services .service-card {
        margin-bottom: 0.7rem;
    }
}
/* --- Layout Responsive y Contenedor Central --- */
.container {
    width: 100%;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    box-sizing: border-box;
}

main > section,
.section {
    width: 100%;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .container {
        max-width: 98vw;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
    main > section,
    .section {
        max-width: 99vw;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
}

@media (max-width: 600px) {
    .container {
        max-width: 100vw;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
    main > section,
    .section {
        max-width: 100vw;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }
}
/* Modern Service Cards */
.modern-services .service-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0.7rem 0.7rem 1.1rem 0.7rem;
    min-width: 210px;
    max-width: 320px;
    background: linear-gradient(120deg, rgba(20,0,44,0.98) 70%, rgba(160,32,240,0.16) 100%) padding-box,
                linear-gradient(45deg, #d4af37 10%, #40e0d0 90%) border-box;
    border: 2px solid #d4af37;
    border-radius: 16px;
    box-shadow: 0 0 18px #a020f0, 0 0 24px #40e0d0, 0 4px 18px rgba(0,0,0,0.22);
    margin-bottom: 0.5rem;
    transition: transform 0.3s cubic-bezier(.4,1.6,.4,1), box-shadow 0.3s cubic-bezier(.4,1.6,.4,1);
    position: relative;
    overflow: hidden;
}
.modern-services .service-card:focus-visible, .modern-services .service-card:hover {
    transform: scale(1.04) translateY(-6px) rotate(-1deg);
    box-shadow: 0 0 28px #d4af37, 0 0 36px #40e0d0, 0 8px 24px rgba(0,0,0,0.38);
    border-color: #f9f295;
}
.modern-services .card-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 2.1rem;
    color: #d4af37;
    text-shadow: 0 0 12px #a020f0, 0 0 18px #40e0d0;
}
.modern-services .icon-tarot {
    display: inline-block;
    filter: drop-shadow(0 0 6px #a020f0) drop-shadow(0 0 8px #40e0d0);
}
.modern-services .card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}
.modern-services .card-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: #f9f295;
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.04em;
    text-shadow: 0 0 8px #d4af37, 0 0 18px #a020f0;
}
.modern-services .card-detail {
    color: var(--muted);
    font-size: 1.01rem;
    margin-bottom: 0.3rem;
    margin-top: 0.1rem;
}
.modern-services .card-detail-plus {
    color: #40e0d0;
    font-size: 0.98em;
    font-weight: 600;
    display: block;
    margin-top: 0.1em;
    text-shadow: 0 0 8px #40e0d0;
}
.modern-services .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    margin-top: 1.1rem;
}
.modern-services .card-precio {
    color: #f9f295;
    font-size: 1.09rem;
    font-weight: 600;
    text-shadow: 0 0 8px #d4af37;
}
.modern-destacado {
    background: linear-gradient(120deg, rgba(20,0,44,0.98) 60%, rgba(64,224,208,0.22) 100%) padding-box,
                linear-gradient(45deg, #40e0d0 10%, #d4af37 90%) border-box;
    border: 2.5px solid #40e0d0;
    box-shadow: 0 0 64px #40e0d0, 0 0 44px #d4af37, 0 8px 32px rgba(0,0,0,0.38), 0 0 80px #40e0d0;
    border-radius: 18px;
    animation: destacadoGlow 2.2s infinite alternate;
}
.modern-destacado .icon-destacado {
    color: #40e0d0;
    text-shadow: 0 0 18px #40e0d0, 0 0 18px #fff;
    font-size: 2.3rem;
    filter: drop-shadow(0 0 12px #40e0d0);
}
.modern-destacado .card-title {
    color: #40e0d0;
    font-size: 1.22rem;
    font-weight: 800;
    text-shadow: 0 0 18px #40e0d0, 0 0 18px #fff;
}
.modern-destacado .card-detail-plus {
    color: #f9f295;
    text-shadow: 0 0 8px #d4af37;
}
@media (max-width: 900px) {
    .modern-services {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .modern-services {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .modern-services .service-card {
        width: 90vw;
        min-width: 0;
        max-width: 98vw;
        font-size: 1rem;
    }
}
/* --- Cartas de Servicios Místicos --- */
.mystic-card {
    background:
        linear-gradient(120deg, rgba(20,0,44,0.98) 60%, rgba(160,32,240,0.22) 100%) padding-box,
        linear-gradient(45deg, #d4af37 10%, #40e0d0 90%) border-box;
    border: 2.5px solid #d4af37;
    box-shadow: 0 0 32px #a020f0, 0 0 44px #40e0d0, 0 8px 32px rgba(0,0,0,0.38);
    color: var(--text);
    font-family: 'Cinzel', serif;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border-radius: 16px;
    padding: 1.5rem 1.1rem 1.2rem 1.1rem;
    min-width: 220px;
    max-width: 320px;
    aspect-ratio: 2/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
    z-index: 1;
}
.mystic-card:focus-visible, .mystic-card:hover {
    transform: scale(1.04) translateY(-6px) rotate(-1deg);
    box-shadow: 0 0 28px #d4af37, 0 0 36px #40e0d0, 0 8px 24px rgba(0,0,0,0.38);
    border-color: #f9f295;
    outline: 2px solid #40e0d0;
}
.mystic-card .card-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #f9f295;
    margin: 0 0 0.7rem 0;
    letter-spacing: 0.04em;
    text-shadow: 0 0 8px #d4af37, 0 0 18px #a020f0;
}
.mystic-card .card-detail {
    color: var(--muted);
    font-size: 1.01rem;
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
}
.mystic-card .card-precio {
    color: #f9f295;
    font-size: 1.12rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    text-shadow: 0 0 8px #d4af37;
}
.mystic-card .primary-button {
    margin-top: auto;
    font-size: 0.93rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.55rem 1.1rem;
    min-height: 2.2rem;
    border-radius: 14px;
    background:
        linear-gradient(90deg, #a020f0 60%, #40e0d0 100%) padding-box,
        linear-gradient(45deg, #d4af37, #f9f295) border-box;
    border: 1.5px solid #d4af37;
    color: #fff;
    box-shadow: 0 0 10px #a020f0, 0 0 14px #40e0d0;
    transition: transform 0.3s, box-shadow 0.3s;
    outline: none;
}
.mystic-card .primary-button:hover, .mystic-card .primary-button:focus-visible {
    transform: scale(1.08);
    box-shadow: 0 0 32px #d4af37, 0 0 44px #40e0d0;
}
.destacado-outer {
    display: flex;
    justify-content: center;
    margin: 2.5rem 0 0 0;
}
.destacado-card {
    background:
        linear-gradient(120deg, rgba(20,0,44,0.98) 60%, rgba(64,224,208,0.22) 100%) padding-box,
        linear-gradient(45deg, #40e0d0 10%, #d4af37 90%) border-box;
    border: 2.5px solid #40e0d0;
    box-shadow: 0 0 64px #40e0d0, 0 0 44px #d4af37, 0 8px 32px rgba(0,0,0,0.38);
    color: #fff;
    font-size: 1.13rem;
    text-shadow: 0 0 12px #40e0d0, 0 0 18px #d4af37;
    position: relative;
    z-index: 2;
    min-width: 260px;
    max-width: 360px;
    aspect-ratio: 2/3;
    padding: 2.1rem 1.3rem 1.5rem 1.3rem;
    margin-bottom: 0;
    margin-top: 0;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    animation: destacadoGlow 2.2s infinite alternate;
}
.destacado-card .card-title {
    color: #40e0d0;
    font-size: 1.22rem;
    font-weight: 800;
    text-shadow: 0 0 18px #40e0d0, 0 0 18px #fff;
}
.destacado-card .primary-button {
    font-size: 0.93rem;
    padding: 0.55rem 1.1rem;
    min-height: 2.2rem;
    border-radius: 14px;
    background:
        linear-gradient(90deg, #40e0d0 60%, #a020f0 100%) padding-box,
        linear-gradient(45deg, #d4af37, #40e0d0) border-box;
    border: 1.5px solid #40e0d0;
    color: #fff;
    box-shadow: 0 0 18px #40e0d0, 0 0 14px #d4af37;
    outline: none;
}
.destacado-card .primary-button:hover, .destacado-card .primary-button:focus-visible {
    transform: scale(1.09);
    box-shadow: 0 0 44px #40e0d0, 0 0 44px #d4af37;
}
@keyframes destacadoGlow {
    0% { box-shadow: 0 0 64px #40e0d0, 0 0 44px #d4af37, 0 8px 32px rgba(0,0,0,0.38); }
    100% { box-shadow: 0 0 96px #40e0d0, 0 0 64px #d4af37, 0 16px 48px rgba(0,0,0,0.48); }
}
:root {
    --bg: #0b021d;
    --bg-soft: #16052f;
    --bg-deep: #05000f;
    --surface: rgba(20, 8, 44, 0.78);
    --surface-strong: rgba(11, 2, 29, 0.92);
    --text: #f4ebff;
    --muted: #cab7e8;
    --violet: #a020f0;
    --violet-soft: #d598ff;
    --cyan: #40e0d0;
    --gold-a: #d4af37;
    --gold-b: #f9f295;
    --danger: #ff8db5;
    --shadow-violet: 0 0 15px rgba(160, 32, 240, 0.75);
    --shadow-cyan: 0 0 24px rgba(64, 224, 208, 0.18);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: min(1140px, calc(100% - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: linear-gradient(120deg, #1a1a2e, #020205 80%);
    animation: fondoVioletaNegro 18s ease-in-out infinite alternate;
    @keyframes fondoVioletaNegro {
        0% {
            background: linear-gradient(120deg, #1a1a2e, #020205 80%);
        }
        50% {
            background: linear-gradient(120deg, #2d1a3a, #18182a 80%);
        }
        100% {
            background: linear-gradient(120deg, #1a1a2e, #020205 80%);
        }
    }

    h1, h2, h3, .card-title, .section-heading h2 {
            font-family: 'Cinzel', serif !important;
            text-shadow: 0 0 8px #d4af37, 0 0 18px #f9f295, 0 0 2px #fff2;
            letter-spacing: 0.01em;
    }
    overflow-x: hidden !important;
    width: 100vw;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
        radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
        radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px);
    background-size: 220px 220px, 280px 280px, 320px 320px;
    pointer-events: none;
    opacity: 0.6;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(5, 0, 15, 0.78), rgba(11, 2, 29, 0.68) 22%, rgba(11, 2, 29, 0.82) 56%, rgba(20, 4, 44, 0.94) 100%),
        radial-gradient(circle at 50% 24%, rgba(214, 154, 255, 0.18), transparent 18%),
        radial-gradient(circle at top, rgba(160, 32, 240, 0.18), transparent 34%),
        radial-gradient(circle at 20% 20%, rgba(64, 224, 208, 0.06), transparent 24%),
        url('assets/luna-after-hero.jpg');
    background-size: cover, auto, auto, auto, cover;
    background-position: center, center, center, center, center 22%;
    background-repeat: no-repeat;
    opacity: 0.92;
    pointer-events: none;
    z-index: -3;
}

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

button,
input,
select {
    font: inherit;
}

.aurora {
    position: fixed;
    width: 28rem;
    height: 28rem;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.18;
    pointer-events: none;
    z-index: -1;
}

.aurora-left {
    top: 5%;
    left: -10%;
    background: var(--violet);
}

.aurora-right {
    top: 35%;
    right: -12%;
    background: var(--cyan);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    width: var(--container);
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    backdrop-filter: blur(18px);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(11, 2, 29, 0.6);
    border: 1px solid rgba(249, 242, 149, 0.16);
    z-index: -1;
}

.brand,
h1,
h2,
h3 {
    font-family: "Cinzel", serif;
}

.brand {
    padding-left: 1.25rem;
    font-size: 1.25rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav a {
    transition: color 180ms ease, text-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--gold-b);
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
}

.hero {
    width: var(--container);
    margin: 0 auto;
}

.moon-banner {
    position: relative;
    width: min(1240px, calc(100% - 1rem));
    min-height: 26rem;
    margin: 0 auto 2rem;
    padding: 2rem;
    display: flex;
    background:
        linear-gradient(180deg, rgba(8, 2, 22, 0.12), rgba(8, 2, 22, 0.78)),
        radial-gradient(circle at 50% 36%, rgba(227, 173, 255, 0.18), transparent 16%);
    background-color: #13031f;
    background-position: center, center;
    background-size: cover, auto;
    background-repeat: no-repeat;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
    border: 1.5px solid rgba(160, 32, 240, 0.55);
    backdrop-filter: blur(14px);
    overflow: hidden;
    isolation: isolate;
}

.moon-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 2, 28, 0.22), rgba(10, 2, 28, 0.46) 34%, rgba(10, 2, 28, 0.78) 100%),
        radial-gradient(circle at 50% 18%, rgba(160, 32, 240, 0.12), transparent 12%);
    pointer-events: none;
}

.moon-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background:
        linear-gradient(180deg, transparent, rgba(6, 2, 18, 0.9)),
        radial-gradient(circle at 50% 0, rgba(160, 32, 240, 0.24), transparent 30%);
    pointer-events: none;
}

.moon-banner-content {
    position: relative;
    z-index: 1;
    max-width: 38rem;
    background:
        linear-gradient(rgba(18, 5, 38, 0.72), rgba(8, 2, 24, 0.9)) padding-box,
        linear-gradient(45deg, var(--gold-a), var(--gold-b)) border-box;
    backdrop-filter: blur(14px);
}

.moon-banner-content h2 {
    margin-bottom: 1rem;
}

.moon-banner-content p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.hero {
    position: relative;
    min-height: calc(84vh - 4.2rem);
    display: grid;
    align-items: center;
    padding: 2.8rem 0 2.15rem;
    background-image:
        radial-gradient(circle at 50% 22%, rgba(222, 158, 255, 0.22), transparent 16%),
        linear-gradient(180deg, rgba(8, 2, 22, 0.18), rgba(8, 2, 22, 0.38) 28%, rgba(8, 2, 22, 0.88) 100%),
        url('assets/descarga.jpg');
    background-size: auto, auto, auto, cover;
    background-position: center 18%, center, center;
    background-repeat: no-repeat;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    width: min(34vw, 16rem);
    aspect-ratio: 1;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(238, 198, 255, 0.32) 0, rgba(194, 111, 255, 0.18) 42%, rgba(160, 32, 240, 0.1) 62%, transparent 74%);
    box-shadow: 0 0 120px rgba(160, 32, 240, 0.5), 0 0 160px rgba(214, 152, 255, 0.18);
    filter: blur(8px);
    opacity: 0.9;
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background:
        linear-gradient(180deg, transparent, rgba(18, 4, 38, 0.78)),
        radial-gradient(circle at 20% 100%, rgba(160, 32, 240, 0.3), transparent 32%),
        radial-gradient(circle at 80% 100%, rgba(160, 32, 240, 0.24), transparent 30%);
    filter: blur(6px);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.06), transparent 18%),
        linear-gradient(180deg, rgba(11, 2, 29, 0.12), rgba(11, 2, 29, 0.76));
    z-index: -1;
}

.hero-content {
    max-width: 42rem;
    padding: 1.1rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.85rem;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(249, 242, 149, 0.28);
    color: var(--violet-soft);
    font-size: 0.84rem;
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.16);
}

.eyebrow {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: var(--cyan);
}

h1 {
    margin: 0;
    font-size: clamp(2rem, 4.3vw, 3.7rem);
    line-height: 1.02;
    text-wrap: balance;
}

.hero-text,
.connection-card p,
.service-card p,
.about-layout p,
.form-status {
    color: var(--muted);
    line-height: 1.75;
}

.hero-text {
    max-width: 36rem;
    font-size: 0.93rem;
    margin: 0.95rem 0 0;
}

.hero-actions {
    margin-top: 1.15rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.hero-proof span {
    padding: 0.56rem 0.82rem;
    border-radius: 999px;
    background: rgba(14, 4, 31, 0.7);
    border: 1px solid rgba(213, 175, 55, 0.28);
    color: #f5ddff;
    font-size: 0.88rem;
    backdrop-filter: blur(10px);
}

.primary-button,
.secondary-button,
.install-button,
.floating-install {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.9rem;
    padding: 0.72rem 1.05rem;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--text);
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.primary-button,
.install-button,
.floating-install {
    background:
        linear-gradient(100deg, #a020f0 0%, #40e0d0 100%) border-box,
        linear-gradient(120deg, rgba(20,0,44,0.98) 60%, rgba(160,32,240,0.22) 100%) padding-box;
    border: 2px solid transparent;
    color: #fffbe7;
    box-shadow: 0 0 18px #a020f0, 0 0 24px #40e0d0, 0 2px 8px rgba(0,0,0,0.18);
    text-shadow: 0 0 8px #d4af37, 0 0 18px #f9f295, 0 0 2px #fff2;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: box-shadow 0.4s cubic-bezier(.4,1.6,.4,1), background 0.4s cubic-bezier(.4,1.6,.4,1), color 0.2s;
}

.secondary-button {
    background:
        linear-gradient(100deg, #40e0d0 0%, #a020f0 100%) border-box,
        linear-gradient(120deg, rgba(255,255,255,0.08) 60%, rgba(160,32,240,0.10) 100%) padding-box;
    border: 2px solid transparent;
    color: #fffbe7;
    box-shadow: 0 0 8px #40e0d0, 0 0 12px #a020f0, 0 1px 4px rgba(0,0,0,0.10);
    text-shadow: 0 0 6px #d4af37, 0 0 12px #f9f295, 0 0 1px #fff2;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: box-shadow 0.4s cubic-bezier(.4,1.6,.4,1), background 0.4s cubic-bezier(.4,1.6,.4,1), color 0.2s;
}

.primary-button:hover,
.primary-button:focus-visible,
.install-button:hover,
.install-button:focus-visible,
.floating-install:hover,
.floating-install:focus-visible {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 32px #a020f0, 0 0 44px #40e0d0, 0 0 0 2.5px #f9f295, 0 8px 32px rgba(0,0,0,0.38);
    background:
        linear-gradient(100deg, #40e0d0 0%, #a020f0 100%) border-box,
        linear-gradient(120deg, rgba(20,0,44,0.98) 60%, rgba(160,32,240,0.22) 100%) padding-box;
    color: #fffbe7;
    text-shadow: 0 0 16px #d4af37, 0 0 32px #f9f295, 0 0 4px #fff2;
}

.secondary-button:hover,
.secondary-button:focus-visible {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 0 24px #40e0d0, 0 0 32px #a020f0, 0 0 0 2px #f9f295, 0 4px 16px rgba(0,0,0,0.18);
    background:
        linear-gradient(100deg, #a020f0 0%, #40e0d0 100%) border-box,
        linear-gradient(120deg, rgba(255,255,255,0.12) 60%, rgba(160,32,240,0.16) 100%) padding-box;
    color: #fffbe7;
    text-shadow: 0 0 12px #d4af37, 0 0 24px #f9f295, 0 0 2px #fff2;
}

.section {
    padding: 1.6rem 0 3.1rem;
}

.oracle-spotlight {
    padding-top: 1rem;
}

.oracle-spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.95fr);
    gap: 1.5rem;
    align-items: stretch;
}

.oracle-spotlight-main,
.oracle-spotlight-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.oracle-spotlight-main p:last-of-type {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.oracle-spotlight-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.oracle-preview {
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    min-height: 17rem;
}

.oracle-preview-fan {
    position: relative;
    width: min(100%, 21rem);
    height: 16rem;
}

.oracle-mini-card {
    position: absolute;
    bottom: 0;
    width: 9.2rem;
    height: 14rem;
    padding: 0.9rem 0.85rem;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background:
        linear-gradient(rgba(20, 8, 44, 0.9), rgba(11, 2, 29, 0.94)) padding-box,
        linear-gradient(145deg, var(--gold-a), var(--cyan)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 28px rgba(160, 32, 240, 0.16);
    backdrop-filter: blur(12px);
}

.oracle-mini-card-left {
    left: 0;
    transform: rotate(-10deg) translateY(0.7rem);
}

.oracle-mini-card-center {
    left: 50%;
    z-index: 2;
    transform: translateX(-50%) translateY(-0.4rem);
}

.oracle-mini-card-right {
    right: 0;
    transform: rotate(10deg) translateY(0.7rem);
}

.oracle-mini-top {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
}

.oracle-mini-card strong {
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
    color: var(--gold-b);
}

.oracle-mini-symbol {
    font-size: 2.3rem;
    color: #fff3c2;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.oracle-kpis {
    display: grid;
    gap: 1rem;
}

.oracle-kpi {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(64, 224, 208, 0.18);
    box-shadow: inset 0 1px 0 rgba(249, 242, 149, 0.08);
}

.oracle-kpi strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--gold-b);
}

.oracle-kpi span {
    color: var(--muted);
    line-height: 1.7;
}

.section-heading {
    margin-bottom: 1.8rem;
}

h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}

h3 {
    margin: 0.75rem 0 1rem;
    font-size: 1.2rem;
}

.framed-panel {
    position: relative;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(var(--surface), var(--surface)) padding-box,
        linear-gradient(45deg, var(--gold-a), var(--gold-b)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35), var(--shadow-cyan);
}

.connection-card,
.contact-wrapper {
    padding: 2rem;
}

.services-carousel {
    padding: 0.95rem;
    overflow: hidden;
}

.services-carousel-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
}

.services-track {
    display: flex;
    gap: 0.95rem;
    overflow-x: auto;
    padding: 0.2rem 0.15rem 0.8rem;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    max-width: 100vw;
    box-sizing: border-box;
}

.carousel-arrow {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    border: 1px solid rgba(64, 224, 208, 0.34);
    background: rgba(10, 2, 28, 0.82);
    color: var(--gold-b);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.carousel-arrow span {
    font-size: 1rem;
    line-height: 1;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(64, 224, 208, 0.18), 0 10px 28px rgba(0, 0, 0, 0.24);
}

.carousel-arrow[disabled] {
    opacity: 0.35;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.services-track::-webkit-scrollbar {
    height: 8px;
}

.services-track::-webkit-scrollbar-thumb {
    background: rgba(64, 224, 208, 0.28);
    border-radius: 999px;
}

#rituales {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 3rem 1.25rem 4rem;
    border-radius: calc(var(--radius-lg) + 8px);
    min-height: 42rem;
    background: linear-gradient(180deg, rgba(10, 2, 28, 0.22), rgba(10, 2, 28, 0.46) 34%, rgba(10, 2, 28, 0.78) 100%);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
}

#rituales::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 2, 28, 0.12), rgba(10, 2, 28, 0.28) 24%, rgba(10, 2, 28, 0.72) 66%, rgba(10, 2, 28, 0.9) 100%),
        radial-gradient(circle at 50% 18%, rgba(255, 240, 255, 0.22), transparent 12%),
        url('assets/luna-after-hero.jpg');
    background-size: cover, auto, cover;
    background-position: center, center, center 18%;
    background-repeat: no-repeat;
    transform: scale(1.02);
    filter: saturate(1.1) brightness(1.02);
    pointer-events: none;
    z-index: -2;
}

#rituales::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(195, 110, 255, 0.28), transparent 18%),
        linear-gradient(180deg, transparent 0%, rgba(7, 2, 19, 0.18) 26%, rgba(7, 2, 19, 0.52) 52%, rgba(7, 2, 19, 0.82) 100%);
    pointer-events: none;
    z-index: -1;
}

#rituales .section-heading,
#rituales .rituals-showcase {
    position: relative;
    z-index: 1;
}

.ritual-visual {
    position: relative;
    min-height: 22rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(7, 2, 19, 0.08), rgba(7, 2, 19, 0.28) 28%, rgba(7, 2, 19, 0.74) 100%),
        url('assets/luna-after-hero.jpg');
    background-size: cover, cover;
    background-position: center, center 20%;
    background-repeat: no-repeat;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), 0 0 30px rgba(160, 32, 240, 0.18);
}

.ritual-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 226, 255, 0.18), transparent 12%),
        linear-gradient(180deg, rgba(10, 2, 28, 0.06), rgba(10, 2, 28, 0.32) 30%, rgba(10, 2, 28, 0.84) 100%);
}

.ritual-visual-copy {
    position: absolute;
    inset: auto 1.25rem 1.25rem;
    z-index: 1;
    max-width: 28rem;
}

.ritual-visual-copy .eyebrow {
    margin-bottom: 0.6rem;
}

.ritual-visual-copy h3 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.rituals-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.ritual-card {
    overflow: hidden;
    background:
        linear-gradient(rgba(22, 7, 46, 0.52), rgba(10, 2, 28, 0.76)) padding-box,
        linear-gradient(45deg, var(--gold-a), var(--gold-b)) border-box;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), 0 0 22px rgba(160, 32, 240, 0.16);
}

.ritual-card::before {
    content: "";
    position: absolute;
    inset: -12% auto auto -8%;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 162, 255, 0.28), transparent 68%);
    filter: blur(8px);
    pointer-events: none;
}

.ritual-card-primary::after,
.ritual-card-secondary::after {
    content: "";
    position: absolute;
    width: 14rem;
    height: 14rem;
    top: -2.5rem;
    right: -2rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(249, 232, 255, 0.82) 0, rgba(220, 164, 255, 0.58) 38%, rgba(160, 32, 240, 0.26) 66%, transparent 74%);
    box-shadow: 0 0 80px rgba(160, 32, 240, 0.3);
    opacity: 0.72;
    pointer-events: none;
}

.ritual-card-header,
.ritual-points,
.ritual-steps,
.ritual-closing {
    position: relative;
    z-index: 1;
}

.ritual-tag {
    margin: 0 0 0.8rem;
    color: var(--gold-b);
    font-family: "Cinzel", serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ritual-card-header p,
.ritual-closing,
.ritual-step p,
.ritual-point span {
    color: var(--muted);
    line-height: 1.75;
}

.ritual-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.ritual-point {
    padding: 1rem 1rem 1rem 1.15rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(213, 175, 55, 0.18);
    box-shadow: inset 0 0 28px rgba(160, 32, 240, 0.08);
}

.ritual-point strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.ritual-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.ritual-step {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(213, 175, 55, 0.18);
}

.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    margin-bottom: 0.7rem;
    color: var(--text);
    font-family: "Cinzel", serif;
    background: linear-gradient(45deg, rgba(160, 32, 240, 0.9), rgba(213, 175, 55, 0.8));
    box-shadow: 0 0 18px rgba(160, 32, 240, 0.35);
}

.ritual-closing {
    margin: 1.4rem 0 0;
    font-size: 1.02rem;
}

.portal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.portal-card {
    overflow: hidden;
}

.portal-card::after {
    content: "";
    position: absolute;
    inset: auto -15% -30% auto;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 32, 240, 0.28), transparent 70%);
    pointer-events: none;
}

.mystic-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

.mystic-list li {
    position: relative;
    padding-left: 1.4rem;
}

.mystic-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold-b);
    text-shadow: 0 0 12px rgba(249, 242, 149, 0.35);
}

.service-card {
    min-height: 100%;
    transition: transform 220ms cubic-bezier(.4,1.6,.4,1), box-shadow 220ms cubic-bezier(.4,1.6,.4,1), border-color 220ms cubic-bezier(.4,1.6,.4,1);
}

.tarot-card {
    width: 11.9rem;
    min-width: 11.9rem;
    max-width: 11.9rem;
    min-height: 18.6rem;
    margin: 0;
    padding: 0.95rem 0.75rem 0.9rem;
    border-radius: 18px;
    background:
        linear-gradient(120deg, rgba(30, 0, 60, 0.82) 60%, rgba(160,32,240,0.18) 100%) padding-box,
        linear-gradient(45deg, #a020f0 10%, #40e0d0 90%) border-box;
    border: 2.5px solid rgba(160,32,240,0.55);
    box-shadow: 0 2px 32px 0 #a020f0, 0 0 44px #40e0d0, 0 8px 32px rgba(0,0,0,0.38), 0 0 0 1.5px rgba(255,255,255,0.08) inset;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.98rem;
    position: relative;
    transition: transform 220ms cubic-bezier(.4,1.6,.4,1), box-shadow 220ms cubic-bezier(.4,1.6,.4,1), border-color 220ms cubic-bezier(.4,1.6,.4,1), background 320ms cubic-bezier(.4,1.6,.4,1);
    z-index: 1;
    scroll-snap-align: start;
    backdrop-filter: blur(12px) saturate(1.25);
    -webkit-backdrop-filter: blur(12px) saturate(1.25);
    overflow: hidden;
}
.tarot-card:focus-visible, .tarot-card:hover {
    transform: scale(1.03) rotate(-1deg) translateY(-4px);
    box-shadow: 0 0 44px #a020f0, 0 0 64px #40e0d0, 0 16px 48px rgba(0,0,0,0.48);
    outline: 2px solid #40e0d0;
}
.tarot-card h3 {
    margin: 0.45rem 0 0;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}
.tarot-card .service-index {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(90deg, #a020f0 60%, #40e0d0 100%);
    color: #fff;
    box-shadow: 0 0 12px #a020f0;
}
.modern-services .service-card {
    min-height: 18.6rem;
    max-width: 11.9rem;
}

.modern-services .card-header-icon {
    margin-bottom: 0.35rem;
    font-size: 1.65rem;
}

.modern-services .card-title {
    font-size: 0.96rem;
    line-height: 1.2;
}

.modern-services .card-detail {
    font-size: 0.85rem;
    line-height: 1.45;
}

.modern-services .card-detail-plus {
    font-size: 0.78rem;
}

.modern-services .card-footer {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-top: 0.7rem;
}

.modern-services .card-precio {
    text-align: center;
    font-size: 0.95rem;
}

.modern-services .primary-button {
    width: 100%;
    min-height: 2.5rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.82rem;
    overflow-wrap: anywhere;
}

.modern-destacado {
    border-width: 2px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .tarot-card {
        width: 98vw;
        min-width: 0;
        max-width: 99vw;
        font-size: 1rem;
    }
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 24px rgba(160, 32, 240, 0.28);
}

.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(64, 224, 208, 0.12);
    color: var(--cyan);
    font-weight: 700;
}

.about-layout {
    display: grid;
    gap: 1.5rem;
}

#sobre-mi {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 3rem 1.25rem 4rem;
    border-radius: calc(var(--radius-lg) + 8px);
    background:
        linear-gradient(180deg, rgba(8, 2, 22, 0.18), rgba(8, 2, 22, 0.4) 30%, rgba(8, 2, 22, 0.82) 100%),
        url('assets/chica luna.jpg');
    background-size: cover, cover;
    background-position: center, center 36%;
    background-repeat: no-repeat;
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
}

#sobre-mi::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 22%, rgba(217, 165, 255, 0.18), transparent 16%),
        linear-gradient(180deg, rgba(8, 2, 22, 0.12), rgba(8, 2, 22, 0.34) 28%, rgba(8, 2, 22, 0.84) 100%);
    pointer-events: none;
    z-index: -1;
}

#sobre-mi .section-heading,
#sobre-mi .about-layout {
    position: relative;
    z-index: 1;
}

#sobre-mi .about-layout {
    background:
        linear-gradient(rgba(17, 5, 36, 0.5), rgba(8, 2, 24, 0.78)) padding-box,
        linear-gradient(45deg, var(--gold-a), var(--gold-b)) border-box;
    backdrop-filter: blur(12px);
}

.contact-intro {
    margin-bottom: 1.4rem;
    max-width: 48rem;
}

.contact-intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.about-quote {
    align-self: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(160, 32, 240, 0.22);
    box-shadow: inset 0 0 24px rgba(160, 32, 240, 0.08);
}

.about-quote p {
    margin: 0;
    font-family: "Cinzel", serif;
    color: var(--text);
    line-height: 1.6;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-cta-panel {
    display: grid;
    gap: 1rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.booking-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 2, 19, 0.82);
    backdrop-filter: blur(10px);
}

.booking-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 44rem);
    max-height: min(92vh, 52rem);
    overflow: auto;
    padding: 1.35rem;
}

.booking-modal-header {
    margin-bottom: 1rem;
}

.booking-modal-header p:last-child {
    margin: 0.5rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.booking-modal-close {
    position: absolute;
    top: 0.7rem;
    right: 0.9rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
}

.booking-form {
    padding-top: 0.25rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-group-full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.95rem;
    color: var(--text);
}

input,
select {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(249, 242, 149, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

input::placeholder {
    color: rgba(202, 183, 232, 0.68);
}

input:focus,
select:focus {
    border-color: rgba(64, 224, 208, 0.65);
    box-shadow: 0 0 0 4px rgba(64, 224, 208, 0.12), 0 0 18px rgba(160, 32, 240, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

input:user-invalid,
select:user-invalid {
    border-color: rgba(255, 141, 181, 0.8);
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-status {
    min-height: 1.75rem;
    margin: 0;
}

.form-status.error {
    color: var(--danger);
}

.form-status.success {
    color: var(--cyan);
}

.neon-button {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.hidden {
    display: none;
}

.floating-install {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 30;
}

.reveal {
    opacity: 1;
    transform: none;
}

body.js-ready .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 700ms ease, transform 700ms ease;
}

body.js-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .about-layout {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (min-width: 960px) {
    .rituals-showcase {
        grid-template-columns: 1.15fr 0.95fr;
    }

    .portal-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-header {
        width: calc(100% - 1rem);
        padding: 0.8rem 0.9rem;
        border-radius: 1.25rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }

    .site-header::before {
        border-radius: 1.25rem;
    }

    .brand {
        padding-left: 0;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: space-between;
        font-size: 0.92rem;
    }

    .services-track {
        gap: 0.8rem;
    }

    .services-carousel-shell {
        grid-template-columns: 1fr;
    }

    .carousel-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 5.2rem 0 1.65rem;
    }

    .hero::before {
        width: min(46vw, 12rem);
        top: 9.2rem;
    }

    .section,
    .hero {
        width: calc(100% - 1rem);
    }

    .moon-banner {
        min-height: 22rem;
        padding: 1rem;
        width: calc(100% - 1rem);
        background-position: center, center, center 24%;
    }

    #rituales {
        padding: 2rem 1rem 3rem;
        background-position: center, center, center 22%;
    }

    #sobre-mi {
        padding: 2rem 1rem 3rem;
        background-position: center, center 28%;
    }

    .ritual-visual {
        min-height: 17rem;
        margin-bottom: 1.25rem;
        background-position: center, center 18%;
    }

    .hero-actions,
    .form-actions,
    .oracle-spotlight-actions,
    .contact-actions {
        align-items: stretch;
    }

    .oracle-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .oracle-preview {
        min-height: 14rem;
    }

    .oracle-preview-fan {
        width: min(100%, 18rem);
        height: 13.5rem;
    }

    .oracle-mini-card {
        width: 7.3rem;
        height: 11.5rem;
        padding: 0.75rem 0.65rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .booking-modal-dialog {
        padding: 1.1rem;
    }

    .ritual-steps {
        grid-template-columns: 1fr;
    }

    .connection-card,
    .contact-wrapper,
    .framed-panel {
        padding: 1.25rem;
    }

    h1 {
        font-size: clamp(1.8rem, 8vw, 2.55rem);
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-proof span {
        font-size: 0.82rem;
    }

    .floating-install {
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
    }

    .tarot-card,
    .modern-services .service-card {
        width: 10.7rem;
        min-width: 10.7rem;
        max-width: 10.7rem;
        min-height: 17rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0ms !important;
        transition-delay: 0ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}