/* ==========================================================================
   PEPE LIRROJO - ILUSIONISTA PROFESIONAL / MASTER ILLUSIONIST
   Diseño de Vanguardia Teatral, Bento Grid & Conversión (2025/2026)
   ========================================================================== */

:root {
    --bg-primary: #07090e;
    --bg-secondary: #0f131c;
    --bg-surface: #151a27;
    --bg-card: rgba(21, 26, 39, 0.75);
    --bg-card-hover: rgba(30, 37, 54, 0.95);
    
    /* Acentos */
    --gold: #d4af37;
    --gold-light: #f5d77f;
    --gold-dim: #997b24;
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    --red: #c92a2a;
    --red-glow: rgba(201, 42, 42, 0.35);
    
    /* Textos */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* Bordes y Sombras */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.35);
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.2);
    
    /* Tipografías */
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 15%, var(--gold-light) 65%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BOTONES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.6rem;
    border-radius: 9999px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.05rem 2.1rem;
    font-size: 1rem;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--gold) 0%, #b88628 100%);
    color: #07090e;
    box-shadow: 0 4px 20px var(--gold-glow);
    font-weight: 700;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--border-gold);
    color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #07090e;
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #ffffff;
    padding: 0.85rem 1.4rem;
    border-radius: 9999px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    font-weight: 600;
    font-size: 0.95rem;
    animation: floatPulse 3.5s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
}

@keyframes floatPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* HEADER & NAVBAR */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(7, 9, 14, 0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.75rem 0;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
}

.site-header .nav-container {
    max-width: 1440px;
    padding: 0 1.25rem;
    gap: 0.75rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    min-width: max-content;
}

.brand-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
    flex-shrink: 0;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.08rem;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.35rem, 0.7vw, 1rem);
    white-space: nowrap;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.35rem 0.2rem;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.nav-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    white-space: nowrap;
    gap: 0.45rem;
}

/* SELECTOR DE IDIOMA (ES | EN) */
.lang-switch {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    padding: 0.25rem 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.lang-btn {
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    color: var(--text-muted);
    transition: var(--transition);
}

.lang-btn:hover {
    color: #ffffff;
}

.lang-btn.active {
    background: var(--gold);
    color: #07090e;
    box-shadow: 0 0 10px var(--gold-glow);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8.5rem 0 5rem;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.4;
}

.orb-1 {
    top: -5%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
}

.orb-2 {
    bottom: 5%;
    right: 5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(201, 42, 42, 0.22) 0%, transparent 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 9999px;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 4.3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.hero-stats .stat-item {
    flex: 1 1 140px;
    text-align: center;
    max-width: 200px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

.hero-visual {
    position: relative;
}

.visual-card {
    position: relative;
    padding: 1rem;
}

.card-glass-frame {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 35px var(--gold-glow);
    background: var(--bg-surface);
}

.hero-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glass-frame:hover .hero-main-img {
    transform: scale(1.05);
}

.card-overlay-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(9, 12, 18, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 1.25rem;
    border-radius: 16px;
}

.card-overlay-badge i {
    font-size: 1.6rem;
    color: var(--gold);
}

.card-overlay-badge strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
}

.card-overlay-badge span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* SECCIONES GENERALES */
.section-block {
    padding: 7.5rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.section-title {
    font-size: clamp(2.1rem, 3.8vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

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

/* CARDS DE ESPECTÁCULOS */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.25rem;
}

.show-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 22px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
}

.show-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    background: var(--bg-card-hover);
}

.show-card.featured-card {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.55);
}

.show-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    background: var(--gold);
    color: #07090e;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    letter-spacing: 0.08em;
}

.show-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.show-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.show-card:hover .show-img-wrapper img {
    transform: scale(1.07);
}

.show-img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-surface) 0%, transparent 60%);
}

.show-body {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.show-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.show-title {
    font-size: 1.45rem;
    margin-bottom: 1rem;
}

.show-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.show-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.show-features li {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.show-features li i {
    color: var(--gold);
    font-size: 0.85rem;
}

.show-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

/* ==========================================
   BENTO GRID (TENDENCIA MODERNA APPLE/MODULAR)
   ========================================== */
.bento-section {
    background: var(--bg-secondary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.bento-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.bento-col-2 {
    grid-column: span 2;
}

.bento-row-2 {
    grid-row: span 2;
}

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.bento-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.bento-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.bento-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.bento-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* CALCULADOR DE EVENTOS */
.calculator-section {
    background: radial-gradient(circle at center, rgba(21, 26, 39, 0.9) 0%, var(--bg-primary) 80%);
}

.calculator-box {
    background: rgba(15, 19, 28, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 40px var(--gold-glow);
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.calc-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calc-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.calc-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.form-step-group {
    margin-bottom: 2.25rem;
}

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.form-label i {
    color: var(--gold);
}

.radio-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.radio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-card i {
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.radio-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.radio-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}

.radio-card.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 16px var(--gold-glow);
}

.radio-card.active i {
    color: var(--gold);
    transform: scale(1.15);
}

.radio-card.active span {
    color: #ffffff;
}

.form-inputs-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.input-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.input-field input, .input-field select {
    background: rgba(7, 9, 14, 0.85);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.input-field input:focus, .input-field select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}

.form-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.form-feedback {
    margin-top: 1.5rem;
    padding: 1.15rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    text-align: center;
}

.form-feedback.success {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid #25D366;
    color: #4ade80;
}

.form-feedback.hidden {
    display: none;
}

/* SOBRE PEPE LIRROJO */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-portrait {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.portrait-quote {
    position: absolute;
    bottom: -1.75rem;
    right: -1rem;
    background: rgba(11, 15, 22, 0.95);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    max-width: 320px;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
}

.portrait-quote i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.portrait-quote p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
}

.about-subtitle {
    font-size: 1.35rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 1.1rem 1.35rem;
    border-radius: 16px;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.2rem;
}

.highlight-item strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
}

.highlight-item span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* TESTIMONIOS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.stars-row {
    color: #f59e0b;
    font-size: 0.9rem;
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ÁREA PROFESIONAL / TIENDA */
.shop-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-soft);
}

.product-thumb {
    position: relative;
    height: 200px;
    background: #000000;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(7, 9, 14, 0.88);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

.product-link:hover {
    gap: 0.7rem;
    color: var(--gold-light);
}

/* FOOTER */
.site-footer {
    background: #050608;
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 1.25rem 0 1.5rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.footer-socials a:hover {
    background: var(--gold);
    color: #000000;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

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

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

.contact-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--gold);
}

.mt-3 {
    margin-top: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* MODAL DE VÍDEO */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(16px);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    background: #0f131c;
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.video-modal.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #ffffff;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
    background: #000;
}

.modal-footer {
    padding: 1.25rem 2rem;
    background: #07090e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        width: 100%;
    }
    
    .hero-content {
        width: 100%;
    }

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .visual-card {
        width: 100%;
        max-width: 550px;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }

    /* Resto de ajustes para 1024px... */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-col-2 {
        grid-column: span 1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-img-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1140px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: #0b0f16;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        z-index: 100;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .mobile-toggle {
        display: flex;
        z-index: 101;
    }
    
    .nav-btn {
        display: none;
    }
}

@media (max-width: 768px) {

    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float {
        padding: 1rem;
        border-radius: 50%;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* CREDIBILITY MARQUEE / TRUST STRIP */
.trust-strip {
    background: rgba(11, 15, 24, 0.95);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.25rem 0;
    position: relative;
    z-index: 10;
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.trust-item strong {
    color: #ffffff;
}

.venue-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* PHOTO GALLERY / EN ESCENA */
.gallery-section {
    background: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 320px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    background: var(--bg-surface);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 9, 14, 0.95) 0%, rgba(7, 9, 14, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0.92;
    transition: var(--transition);
}

.gallery-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.gallery-title {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
}

/* STRIPE CHECKOUT BADGES & BUTTONS */
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
}

.product-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold-light);
    font-family: var(--font-heading);
}

.product-shipping-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
}

.btn-stripe {
    width: 100%;
    background: linear-gradient(135deg, #635bff 0%, #4b45c6 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(99, 91, 255, 0.35);
    transition: var(--transition);
}

.btn-stripe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 91, 255, 0.55);
    color: #ffffff;
}

.stripe-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.stripe-trust-bar i {
    color: var(--gold);
}


/* ==========================================================================
   INTERACTIVE MIND-READING CARD TRICK SECTION
   ========================================================================== */
.trick-section {
  background: linear-gradient(180deg, rgba(15, 17, 24, 0.8) 0%, rgba(7, 8, 11, 0.95) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.trick-box {
  background: radial-gradient(circle at 50% 20%, rgba(30, 36, 54, 0.6) 0%, rgba(10, 12, 18, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-gold);
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.trick-instructions {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.trick-instructions p {
  margin-bottom: 10px;
}

.card-fan-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 36px 0;
  min-height: 180px;
  perspective: 1000px;
}

.magic-card {
  width: 105px;
  height: 155px;
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 10px;
  font-family: var(--font-serif);
  font-weight: 800;
  user-select: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.magic-card:hover {
  transform: translateY(-16px) scale(1.08) rotate(-2deg);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.7), 0 0 20px var(--color-primary-glow);
  border-color: var(--color-accent);
}

.magic-card.red {
  color: #c1121f;
}

.magic-card.black {
  color: #111827;
}

.card-corner {
  line-height: 1;
  font-size: 1.15rem;
  text-align: left;
}

.card-center-suit {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1;
}

.card-corner-bottom {
  line-height: 1;
  font-size: 1.15rem;
  text-align: right;
  transform: rotate(180deg);
}

.card-back {
  background: repeating-linear-gradient(45deg, #780000, #780000 8px, #c1121f 8px, #c1121f 16px);
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trick-action-bar {
  margin-top: 30px;
}

.btn-read-mind {
  background: linear-gradient(135deg, #780000, #c1121f);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px var(--color-primary-glow);
  border: 1px solid var(--border-gold);
}

.btn-read-mind:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.6);
}

.trick-result-box {
  display: none;
  animation: fadeIn 0.8s ease forwards;
}

.trick-result-box h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.trick-result-box p {
  font-size: 1.1rem;
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto 24px;
}
