/*
Theme Name: Talleres Nebula RP V2
Theme URI: https://talleresnebula.me
Author: Gemini AI
Description: Tema completo para Taller RP con precios y sistema de empleo.
Version: 2.0
*/

:root {
    --bg-deep: #050505;
    --bg-panel: #11141c;
    --nebula-purple: #5e3a8c;
    --nebula-glow: #8a4fd1;
    --core-gold: #ffcc00;
    --silver: #e0e0e0;
    --text-grey: #a0a0a0;
    --font-main: 'Rajdhani', sans-serif;
    --font-title: 'Orbitron', sans-serif;
}

body {
    background-color: var(--bg-deep);
    color: var(--silver);
    font-family: var(--font-main);
    margin: 0;
    line-height: 1.6;
    background-image: 
        linear-gradient(rgba(5,5,5,0.9), rgba(5,5,5,0.9)),
        url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

/* Header & Nav */
header {
    background: rgba(17, 20, 28, 0.95);
    border-bottom: 2px solid var(--nebula-purple);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(94, 58, 140, 0.4);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--core-gold);
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: var(--core-gold);
    border-bottom: 2px solid var(--core-gold);
}

/* Contenedor General */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(94, 58, 140, 0.2) 0%, var(--bg-deep) 70%);
    border-bottom: 1px solid var(--nebula-purple);
}

.hero-title {
    font-size: 4rem;
    margin: 0;
    background: -webkit-linear-gradient(var(--silver), var(--core-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-grey);
    margin-bottom: 40px;
}

/* Botones */
.btn-nebula {
    background: transparent;
    border: 2px solid var(--nebula-purple);
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-family: var(--font-title);
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-nebula:hover {
    background: var(--nebula-purple);
    box-shadow: 0 0 20px var(--nebula-purple);
    color: #fff;
}

/* SECCIÓN: Tabla de Precios (NUEVO) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: var(--bg-panel);
    border: 1px solid #333;
    padding: 30px;
    position: relative;
    transition: 0.3s;
}

.price-card:hover {
    border-color: var(--core-gold);
    transform: translateY(-5px);
}

.price-header {
    border-bottom: 1px solid var(--nebula-purple);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
}

.price-row span.cost {
    color: var(--core-gold);
    font-weight: bold;
}

/* SECCIÓN: Galería e Historia */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    color: #ccc;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    background: var(--bg-panel);
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--nebula-purple);
}

.stat h3 {
    color: var(--core-gold);
    font-size: 2.5rem;
    margin: 0;
}

/* Formulario Examen (Mejorado) */
.exam-wrapper {
    background: var(--bg-panel);
    padding: 40px;
    border: 1px solid var(--nebula-purple);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.exam-wrapper::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--nebula-purple), transparent, var(--core-gold));
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #080a10;
    border: 1px solid #333;
    color: white;
    font-family: var(--font-main);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--core-gold);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

/* Footer */
footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid var(--nebula-purple);
    color: #555;
}
/* Estilos para la casilla de confirmación */
.confirmation-box {
    margin: 20px 0;
    padding: 15px;
    background: rgba(94, 58, 140, 0.1); /* Fondo morado muy suave */
    border: 1px solid var(--nebula-purple);
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 4px;
}

.confirmation-box input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0; /* Quitar margen por defecto */
    cursor: pointer;
    accent-color: var(--core-gold); /* El check será dorado */
}

.confirmation-box label {
    margin: 0;
    font-size: 0.95rem;
    cursor: pointer;
    color: #fff;
    user-select: none;
}

.confirmation-box:hover {
    background: rgba(94, 58, 140, 0.2);
    border-color: var(--core-gold);
}