/* ==========================================================================
   CSS PRINCIPAL: TAROT DE LUZ
   Estilo: Místico, elegante, premium, moderno y responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES DE DISEÑO (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Paleta HSL */
    --color-bg-deep: hsl(225, 60%, 4%);
    --color-bg-medium: hsl(223, 47%, 8%);
    --color-bg-light: hsl(222, 35%, 15%);
    --color-bg-glass: rgba(7, 13, 29, 0.7);
    --color-bg-glass-heavy: rgba(5, 9, 21, 0.9);
    
    /* Dorados y Acentos */
    --color-gold: hsl(43, 74%, 53%);
    --color-gold-light: hsl(48, 89%, 78%);
    --color-gold-dark: hsl(38, 81%, 36%);
    --color-gold-glow: rgba(212, 175, 55, 0.3);
    
    /* Neutros */
    --color-text-white: hsl(210, 20%, 98%);
    --color-text-cream: hsl(34, 40%, 92%);
    --color-text-muted: hsl(215, 15%, 70%);
    
    /* Tipografía */
    --font-serif: 'Cinzel', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-quote: 'Playfair Display', Georgia, serif;
    
    /* Efectos */
    --shadow-gold-soft: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-gold-heavy: 0 10px 30px rgba(212, 175, 55, 0.25);
    --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.6);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* --------------------------------------------------------------------------
   2. RESET Y ESTILOS GENERALES
   -------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-cream);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --------------------------------------------------------------------------
   3. ELEMENTOS DE FONDO MÍSTICOS (Estrellas y Nebulosas)
   -------------------------------------------------------------------------- */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background: radial-gradient(circle at center, hsl(223, 40%, 8%) 0%, var(--color-bg-deep) 100%);
    opacity: 0.95;
}

/* Estrellas sutiles hechas con box-shadows */
.stars-container::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    top: 0;
    left: 0;
    /* Múltiples estrellas distribuidas de forma pseudo-aleatoria */
    box-shadow: 
        10vw 20vh 1.5px rgba(255, 255, 255, 0.4),
        25vw 15vh 1px rgba(255, 255, 255, 0.6),
        40vw 35vh 2px rgba(255, 255, 255, 0.3),
        55vw 10vh 1px rgba(255, 255, 255, 0.5),
        70vw 25vh 1.5px rgba(255, 255, 255, 0.4),
        85vw 30vh 1px rgba(255, 255, 255, 0.5),
        95vw 15vh 2px rgba(255, 255, 255, 0.3),
        15vw 45vh 1px rgba(255, 255, 255, 0.5),
        30vw 55vh 1.5px rgba(255, 255, 255, 0.4),
        48vw 62vh 1px rgba(255, 255, 255, 0.6),
        65vw 50vh 2px rgba(255, 255, 255, 0.3),
        78vw 68vh 1px rgba(255, 255, 255, 0.5),
        90vw 52vh 1.5px rgba(255, 255, 255, 0.4),
        12vw 78vh 2px rgba(255, 255, 255, 0.3),
        28vw 85vh 1px rgba(255, 255, 255, 0.5),
        42vw 75vh 1.5px rgba(255, 255, 255, 0.4),
        58vw 90vh 1px rgba(255, 255, 255, 0.6),
        72vw 82vh 2.5px rgba(255, 255, 255, 0.5),
        88vw 78vh 1px rgba(255, 255, 255, 0.4),
        96vw 92vh 1.5px rgba(255, 255, 255, 0.3);
    animation: starsTwinkle 6s infinite ease-in-out alternate;
}

.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: driftOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: 20%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
}

.orb-2 {
    bottom: -15%;
    right: 15%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, hsl(215, 80%, 40%) 0%, transparent 70%);
    animation-delay: -5s;
    animation-duration: 28s;
}

/* --------------------------------------------------------------------------
   4. COMPONENTES Y BOTONES COMUNES
   -------------------------------------------------------------------------- */
.divider-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
    width: 100%;
}

.divider-gold::before,
.divider-gold::after {
    content: "";
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.divider-gold::before {
    background: linear-gradient(to left, var(--color-gold), transparent);
}

.divider-gold::after {
    background: linear-gradient(to right, var(--color-gold), transparent);
}

.divider-gold .star-icon {
    color: var(--color-gold-light);
    margin: 0 12px;
    font-size: 1.2rem;
    text-shadow: 0 0 8px var(--color-gold);
    animation: pulseGlow 3s infinite ease-in-out;
}

.divider-gold.small::before,
.divider-gold.small::after {
    width: 40px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    background-color: rgba(212, 175, 55, 0.05);
    margin-bottom: 16px;
    box-shadow: inset 0 0 6px rgba(212, 175, 55, 0.08);
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 2.2rem;
    letter-spacing: 1px;
    color: var(--color-text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.section-header {
    margin-bottom: 48px;
}

.text-center {
    text-center: center;
    text-align: center;
}

/* Glassmorphism Panel Base */
.glass-panel {
    background: var(--color-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    box-shadow: var(--shadow-dark), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

/* Botones Premium */
.btn-primary, .btn-gold, .btn-secondary, .btn-wa-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 10px;
    outline: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg-deep);
    border: 1px solid var(--color-gold-light);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.btn-gold {
    background: transparent;
    color: var(--color-gold-light);
    border: 1px solid var(--color-gold);
    box-shadow: inset 0 0 6px rgba(212, 175, 55, 0.1);
}

.btn-gold:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: var(--color-text-white);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-cream);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-text-white);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. CABECERA Y NAVEGACIÓN
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 9, 21, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: var(--color-bg-glass-heavy);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 8px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    width: auto;
    height: 42px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-link:hover .header-logo {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    color: var(--color-text-white);
    background: linear-gradient(135deg, var(--color-text-white) 30%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--color-gold-light);
}

.nav-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-header-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-header-wa:hover {
    background: #25d366;
    color: #000;
    border-color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    z-index: 110;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-cream);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   6. SECCIÓN HERO / PORTADA PRINCIPAL
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo-wrapper {
    position: relative;
    max-width: 220px;
    margin: 0 auto 32px auto;
}

.hero-logo {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-text-white) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-gold-light);
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 400;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: var(--color-text-cream);
    font-weight: 300;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-footer-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-footer-wave .wave-fill {
    fill: var(--color-bg-medium);
}

/* --------------------------------------------------------------------------
   7. SECCIÓN SOBRE LUZ
   -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--color-bg-medium);
    padding: 100px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Marco Místico */
.mystic-frame {
    position: relative;
    padding: 15px;
    border-radius: 24px;
}

.mystic-frame-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--color-gold);
    border-radius: 24px;
    opacity: 0.5;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.mystic-frame::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid var(--color-gold);
    border-radius: 20px;
    opacity: 0.25;
    pointer-events: none;
}

.about-img {
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    box-shadow: var(--shadow-dark);
}

.mystic-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
    color: var(--color-bg-deep);
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 20px;
    border: 1px solid var(--color-gold-light);
    box-shadow: var(--shadow-gold-soft);
    white-space: nowrap;
}

.about-text-content {
    padding-left: 20px;
}

.about-paragraph {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: var(--color-text-cream);
    text-align: justify;
}

.about-motto {
    font-family: var(--font-quote);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    padding: 16px 24px;
    border-left: 3px solid var(--color-gold);
    background: rgba(212, 175, 55, 0.03);
    border-radius: 0 12px 12px 0;
}

.about-motto i {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* --------------------------------------------------------------------------
   8. SECCIÓN DE SERVICIOS
   -------------------------------------------------------------------------- */
.services-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-bg-deep);
}

.service-card-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-dark);
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold-heavy);
    transform: translateY(-5px);
}

.service-icon-container {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.1);
}

.service-icon-container i {
    font-size: 2.2rem;
    color: var(--color-gold-light);
    text-shadow: 0 0 10px var(--color-gold);
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-text-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-description {
    font-size: 1.05rem;
    color: var(--color-text-cream);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-features {
    text-align: left;
    max-width: 420px;
    margin: 0 auto 36px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-features li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-cream);
}

.service-features li i {
    font-size: 0.8rem;
}

.service-cta {
    margin-top: 16px;
}

/* --------------------------------------------------------------------------
   9. SECCIÓN CONSULTA PRIVADA
   -------------------------------------------------------------------------- */
.private-consult-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--color-bg-medium);
}

.private-panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    position: relative;
}

.luna-decor {
    font-size: 2rem;
    color: var(--color-gold-light);
    margin-bottom: 16px;
    opacity: 0.8;
    text-shadow: 0 0 8px var(--color-gold);
}

.private-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-text-white);
    margin-bottom: 20px;
}

.private-text {
    font-size: 1.05rem;
    color: var(--color-text-cream);
    max-width: 700px;
    margin: 0 auto 32px auto;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. SECCIÓN DE CARTAS / PRODUCTOS (Galería Interactiva 3D)
   -------------------------------------------------------------------------- */
.cards-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-bg-deep);
}

.section-subtitle-text {
    max-width: 650px;
    margin: 12px auto 0 auto;
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.cards-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Contenedor del efecto de rotación 3D */
.tarot-card-container {
    perspective: 1500px;
    aspect-ratio: 8.5 / 14.8; /* Formato estándar Tarot de Luz 14x8.5 cm */
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    cursor: pointer;
}

.tarot-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Activación al hover en escritorio y con clase javascript en móvil */
.tarot-card-container:hover .tarot-card-inner,
.tarot-card-container.flipped .tarot-card-inner {
    transform: rotateY(180deg);
}

.tarot-card-front, .tarot-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.tarot-card-container:hover .tarot-card-front,
.tarot-card-container:hover .tarot-card-back {
    border-color: var(--color-gold);
}

/* Ajuste de imágenes de cartas */
.card-img-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Reverso de la carta */
.tarot-card-back {
    background-color: var(--color-bg-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 11, 25, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid var(--color-gold-light);
    color: var(--color-gold-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.85;
    transition: var(--transition-fast);
}

.tarot-card-container:hover .card-overlay-hint {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
}

/* Anverso de la carta */
.tarot-card-front {
    transform: rotateY(180deg);
    background-color: var(--color-bg-medium);
}

/* Pie de foto de significado */
.card-meaning-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(5, 9, 21, 0.95) 0%, rgba(5, 9, 21, 0.8) 70%, transparent 100%);
    padding: 20px 14px 14px 14px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* En dispositivos que soporten hover se muestra al flotar; en táctiles siempre está visible */
.tarot-card-container:hover .card-meaning-footer,
.tarot-card-container.flipped .card-meaning-footer {
    transform: translateY(0);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--color-gold-light);
    margin-bottom: 6px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.card-meaning {
    font-size: 0.75rem;
    color: var(--color-text-cream);
    line-height: 1.4;
}

.cards-info {
    max-width: 600px;
    margin: 40px auto 0 auto;
}

.cards-notes {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   11. SECCIÓN FUTURAS CREACIONES (Próximamente)
   -------------------------------------------------------------------------- */
.future-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-bg-medium);
}

.future-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.future-card {
    background: rgba(5, 9, 21, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
    text-align: center;
}

.future-card:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.future-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 20px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.future-card:hover .future-icon {
    transform: scale(1.1);
    opacity: 1;
    color: var(--color-gold-light);
}

.future-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-text-white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.future-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. FORMULARIO DE CONTACTO
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-bg-deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-description {
    font-size: 1.05rem;
    color: var(--color-text-cream);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-size: 1.3rem;
}

.detail-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-text strong {
    font-size: 1.1rem;
    color: var(--color-text-white);
    font-weight: 500;
}

.whatsapp-card-callout {
    background: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: 16px;
    padding: 24px;
}

.whatsapp-card-callout p {
    font-size: 0.9rem;
    color: var(--color-text-cream);
    margin-bottom: 16px;
}

.btn-wa-full {
    background: #25d366;
    color: #000;
    font-weight: 600;
    width: 100%;
}

.btn-wa-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    filter: brightness(1.1);
}

/* Panel del formulario */
.form-container {
    padding: 40px;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-white);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--color-gold-light);
    font-weight: 500;
}

.form-group label i {
    margin-right: 6px;
    font-size: 0.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: rgba(5, 9, 21, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    background-color: rgba(5, 9, 21, 0.7);
}

.form-group .optional {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border: 1px solid var(--color-gold-light);
    color: var(--color-bg-deep);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-soft);
    filter: brightness(1.1);
}

/* Mensaje de Éxito en Formulario */
.form-success-message {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.form-success-message.active {
    display: block;
}

#tarotContactForm.hidden {
    display: none;
}

.success-icon {
    font-size: 3rem;
    color: #25d366;
    margin-bottom: 16px;
}

.form-success-message h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-text-white);
    margin-bottom: 10px;
}

.form-success-message p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   13. PIE DE PÁGINA
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: hsl(223, 60%, 2%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 60px 0 30px 0;
    position: relative;
    z-index: 10;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-text-white);
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--color-gold-light);
    letter-spacing: 1px;
}

.footer-links h4,
.footer-socials h4 {
    font-family: var(--font-serif);
    color: var(--color-text-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-gold-light);
    padding-left: 4px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-disclaimer i {
    margin-right: 6px;
    color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   14. WIDGET FLOTANTE DE WHATSAPP
   -------------------------------------------------------------------------- */
.whatsapp-float-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.badge-pulse {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background-color: #ea4335;
    border-radius: 50%;
    border: 2px solid #25d366;
}

.badge-pulse::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ea4335;
    border-radius: 50%;
    animation: badgePulse 1.5s infinite;
}

/* Mensaje emergente de sugerencia */
.wa-tooltip {
    background: var(--color-bg-glass-heavy);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 16px;
    width: 250px;
    box-shadow: var(--shadow-dark);
    margin-bottom: 12px;
    position: relative;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.wa-tooltip.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wa-tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 4px;
}

.wa-tooltip-header strong {
    font-size: 0.85rem;
    color: var(--color-text-white);
}

.wa-tooltip-header span {
    font-size: 0.7rem;
    color: #25d366;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-tooltip-header span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
}

.wa-tooltip p {
    font-size: 0.8rem;
    color: var(--color-text-cream);
    line-height: 1.4;
}

.wa-tooltip-arrow {
    position: absolute;
    bottom: -6px;
    right: 25px;
    width: 10px;
    height: 10px;
    background: var(--color-bg-glass-heavy);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   15. ANIMACIONES (Keyframes)
   -------------------------------------------------------------------------- */
@keyframes starsTwinkle {
    0% { opacity: 0.6; }
    50% { opacity: 0.8; }
    100% { opacity: 0.4; }
}

@keyframes driftOrb {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; text-shadow: 0 0 15px var(--color-gold); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowRing {
    0% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.15), inset 0 0 15px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.5);
    }
}

@keyframes badgePulse {
    0% { transform: scale(0.95); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* --------------------------------------------------------------------------
   16. MEDIA QUERIES (Responsividad)
   -------------------------------------------------------------------------- */

/* Tablets */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text-content {
        padding-left: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

/* Móviles */
@media (max-width: 768px) {
    /* Navegación móvil */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-glass-heavy);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 105;
        padding: 100px 40px;
        transition: right 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    
    .nav-item {
        font-size: 1.1rem;
    }
    
    /* Botón animado del menú móvil */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Ajustes generales de secciones */
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.3rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-img {
        height: 340px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .private-panel {
        padding: 30px 20px;
    }
    
    .form-container {
        padding: 24px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Dispositivos muy pequeños */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .cards-gallery-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .whatsapp-float-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .wa-tooltip {
        width: 210px;
    }
}
