/* -----------------------------------------
   TEMA ESOTÉRICO PREMIUM - TAROT TELEFÓNICO
   Reset + variables + componentes reutilizables
----------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --fondo-principal: #0c0719;
    --fondo-secundario: #15102a;
    --texto-claro: #f3ecff;
    --texto-muted: #cabfff;
    --accento: #b87eff;
    --accento-hover: #d4a5ff;
    --danger: #ff8577;
    --oro: #ffcd7e;
    --gradiente-hero: linear-gradient(135deg, #1e173b, #060312);
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--fondo-principal);
    color: var(--texto-claro);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo, nav a {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
header {
    background: rgba(8, 4, 18, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #412e6e;
    padding: 16px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h2 {
    font-size: 1.9rem;
    background: linear-gradient(135deg, #f0dbff, #bc92ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo p {
    font-size: 0.8rem;
    color: #cab7ff;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}
.nav-links a {
    color: #f5edff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    border-bottom: 1px solid transparent;
}
.nav-links a:hover {
    color: var(--accento-hover);
    border-bottom-color: var(--accento);
}

/* BOTONES */
.btn {
    display: inline-block;
    background: linear-gradient(105deg, #6e41b0, #472e73);
    padding: 12px 30px;
    border-radius: 60px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(105deg, #8558ce, #5c3d92);
    box-shadow: 0 8px 20px rgba(98, 45, 180, 0.4);
}
.btn-llamar {
    background: linear-gradient(135deg, #ffa559, #ff6f00);
    color: #2a173f;
    font-weight: 800;
    box-shadow: 0 0 12px #ff9f4a;
}
.btn-llamar:hover {
    background: linear-gradient(135deg, #ffb86b, #ff851a);
}

/* TARJETAS */
.grid-numeros {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin: 40px 0;
}
.card {
    background: rgba(30, 22, 55, 0.75);
    backdrop-filter: blur(6px);
    border-radius: 32px;
    padding: 1.8rem;
    border: 1px solid #5d4790;
    transition: 0.2s;
}
.card:hover {
    border-color: #b386ff;
    background: rgba(40, 30, 70, 0.85);
}
.precio {
    font-weight: bold;
    font-size: 1.2rem;
    background: #2b1f49;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 40px;
    margin: 12px 0;
}
.phone-link {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffdd99;
    text-decoration: none;
    word-break: break-all;
}
.legal-note {
    font-size: 0.7rem;
    color: #bcabdf;
    margin-top: 12px;
}

/* TABLAS */
.tabla-precios {
    width: 100%;
    background: #130f26;
    border-radius: 24px;
    overflow: auto;
    border-collapse: collapse;
}
.tabla-precios th, .tabla-precios td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #3c2d62;
}
.tabla-precios th {
    background: #221d3a;
    font-weight: 700;
}

/* FAQ */
.faq-item {
    background: #110d20;
    border-radius: 24px;
    margin-bottom: 16px;
    padding: 18px 22px;
    cursor: pointer;
    transition: 0.1s;
}
.faq-pregunta {
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
}
.faq-respuesta {
    margin-top: 12px;
    padding-left: 12px;
    border-left: 3px solid #b580ff;
    display: none;
}
.faq-item.active .faq-respuesta {
    display: block;
}

/* FOOTER */
footer {
    background: #03010c;
    padding: 40px 0;
    margin-top: 70px;
    text-align: center;
    border-top: 1px solid #36295c;
    font-size: 0.9rem;
}
footer a {
    color: #cfbbff;
    text-decoration: none;
}

/* UTILIDADES */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1.5rem; }
.separador {
    width: 80px;
    height: 3px;
    background: var(--accento);
    margin: 20px auto;
}
@media (max-width: 768px) {
    .header-flex { flex-direction: column; }
    .nav-links { justify-content: center; }
    h1 { font-size: 2rem; }
}