@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

:root {
  --bg-dark: #111;
  --bg-card: #222;
  --text-light: #eee;
  --accent: #00bfa5;
  --accent-light: #00bfff;
  --radius: 8px;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Cinzel', serif;
}

/* Reset básico */
body, h1, h2, h3, p, ul, li, form {
  margin: 0;
  padding: 0;
}
body {
  background: url('images/fondo-celeste.jpg') no-repeat center center fixed;
  background-size: cover;
  color: var(--text-light);
}

/* Header */
header {
  text-align: center;
}
header h1 {
  font-family: var(--font-title);
  font-size: 2.5em;
}
header p {
  opacity: 0.8;
}

/* Sección Tarot */
#tarot {
  padding: 40px;
  max-width: 800px;
  margin: 40px auto;
  border-radius: var(--radius);
}
#tarot h2 {
  font-family: var(--font-title);
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
}
/* Estilos Tarots al estilo tienda moderna */
.tarot-hero {
  text-align: center;
  margin-bottom: 40px;
}
.tarot-hero h2 {
  font-family: var(--font-title);
  font-size: 2.8em;
  letter-spacing: 1px;
}
.tarot-hero p {
  opacity: 0.8;
  font-size: 1.1em;
}

.tarot-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.tarot-card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.tarot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}
.tarot-card h3 {
  font-family: var(--font-title);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: 15px;
}
.tarot-card ul {
  flex-grow: 1;
}
.tarot-buy-btn {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #111;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: var(--radius);
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s;
}
.tarot-buy-btn:hover {
  opacity: 0.9;
}

/* Estilos del formulario */
#tarot-form {
  background: var(--bg-card);
  padding: 25px;
  border-radius: var(--radius);
  max-width: 800px;
  margin: 0 auto 30px;
}
#tarot-form h3 {
  font-family: var(--font-title);
  margin-bottom: 15px;
}
#tarot-form label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
#tarot-form input, #tarot-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  background: #333;
  color: var(--text-light);
  border: none;
  border-radius: var(--radius);
}
#tarot-form button {
  margin-top: 20px;
  width: 100%;
  background: var(--accent);
  color: #111;
  padding: 14px;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s;
}
#tarot-form button:hover {
  background: var(--accent-light);
}

/* Opciones de pago final */
.tarot-pay-options {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius);
  max-width: 800px;
  margin: 0 auto 40px;
}
.tarot-pay-options ul {
  list-style: none;
  padding-left: 0;
}
.tarot-pay-options code {
  background: #333;
  padding: 3px 6px;
  border-radius: 4px;
}
.tarot-pay-options a {
  color: var(--accent-light);
}

/* Responsivo */
@media(max-width: 600px) {
  .tarot-hero h2 {
    font-size: 2.4em;
  }
  .tarot-levels {
    grid-template-columns: 1fr;

}
/* Estilos Tarots al estilo tienda moderna */
.tarot-hero { … }
.tarot-levels { … }
.tarot-card { … }
.tarot-buy-btn { … }
#tarot-form { … }
.tarot-pay-options { … }
.tarot-title {
  font-style: italic;         /* Cursiva */
  color: black;              /* Letra en color negro */
  font-weight: normal;       /* IMPORTANTE: sin negrita para mantener emojis a color */
  font-size: 2.8em;
  display: inline-block;
  line-height: 1.2;
}

/* Mayúscula en la primera letra, el resto en minúscula */
.tarot-title {
  text-transform: lowercase;
}
.tarot-title::first-letter {
  text-transform: uppercase;
}
