/* ======================================
   Oráculo Prisma – Universo Prisma Style
   ====================================== */

/* Variables de color */
:root {
  --c-bg:           #0D1B2A;
  --c-galaxy:       #4C2A85;
  --c-cosmic:       #1A1A2E;
  --c-turquoise:    #2FCED1;
  --c-pink:         #F784AD;
  --c-lavender:     #B28DFF;
  --c-auric:        #82F2B0;
  --c-gold:         #FEEABF;
  --font-main:      'Caveat', cursive;
}

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

body.oraculo-prisma-body {
  position: relative;
  min-height: 100vh;
  background: url("../assets/oraculo-prisma.png") no-repeat center center fixed;
  background-size: cover;
  font-family: var(--font-main);
  color: var(--c-gold);
  overflow: hidden;
  cursor: url('../assets/cursor-mariposa.png') 16 16, auto;
}

.butterfly-overlay {
  pointer-events: none;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("../assets/oraculo-mariposas.png") no-repeat center center;
  background-size: cover;
  opacity: 0.25;
  z-index: 0;
}

#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.oraculo-header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(6px);
}

.oraculo-header h1 {
  font-size: 3rem;
  color: var(--c-lavender);
  text-shadow: 0 0 8px var(--c-lavender);
}

.oraculo-main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 1rem;
  min-height: calc(100vh - 200px);
}

.btn {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  color: #0D1B2A;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 12px rgba(255,255,255,0.3);
  transition: box-shadow 0.4s ease, transform 0.3s ease, background 0.4s ease;
  font-weight: bold;
}
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 32, 0.4);
  backdrop-filter: blur(4px);
  z-index: 0;

  /* esto hace que “ignore” clics y toques */
  pointer-events: none;
}
/* Colores más vivos y visibles */
.btn-query   { background: linear-gradient(135deg, #82F2B0, #2FCED1); color: #0D1B2A; }
.btn-cards   { background: linear-gradient(135deg, #B28DFF, #81d4fa); color: #0D1B2A; }
.btn-guide   { background: linear-gradient(135deg, #F784AD, #FFD1F9); color: #0D1B2A; }
.btn-rituals { background: linear-gradient(135deg, #FEEABF, #F784AD); color: #0D1B2A; }

.btn:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 20px var(--c-turquoise),
    0 0 30px var(--c-pink),
    inset 0 0 5px white;
}

.oraculo-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(6px);
}

.oraculo-footer p {
  font-size: 0.9rem;
  color: var(--c-gold);
}
.cursor-mariposa {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  background: url('../assets/cursor-mariposa.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

@media (max-width: 768px) {
  .oraculo-main {
    flex-direction: column;
    min-height: auto;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
}
