:root {
	--rosa: #f9d8e6;
	--menta: #d8f8e1;
	--lila: #e9d8ff;
	--texto: #444;
	--violeta: #7b4fa5;
	--rosado-oscuro: #c04a7e;
}

body {
	margin: 0;
	font-family: "Nunito", sans-serif;
	color: var(--texto);
	background-color: #fff9fb;
	line-height: 1.5;
}

/* --- HERO --- */
.hero {
	background: linear-gradient(135deg, var(--rosa), var(--lila));
	padding: 4rem 1.5rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-content {
	max-width: 700px;
}

.hero h1 {
	font-size: 2rem;
	color: var(--violeta);
	margin-bottom: 1rem;
}

.hero h1 span {
	color: var(--rosado-oscuro);
}

.hero p {
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.cta {
	background: #25d366;
	color: white;
	text-decoration: none;
	padding: 0.9rem 1.5rem;
	border-radius: 8px;
	font-weight: bold;
	font-size: 1rem;
	transition: background 0.2s ease;
}

.cta:hover {
	background: #1fb157;
}

/* --- INFO --- */
.info {
	text-align: center;
	padding: 3rem 1rem;
	background: #fff;
}

.info h2 {
	color: var(--violeta);
	margin-bottom: 1rem;
}

.pdf-link {
	display: inline-block;
	margin-top: 1rem;
	background: var(--lila);
	color: #4a3062;
	padding: 0.7rem 1.3rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.2s ease;
}

.pdf-link:hover {
	background: #d3b5ff;
}

/* --- RIFA --- */
.rifa {
	text-align: center;
	padding: 3rem 1rem;
	background-color: #fffafc;
}

.rifa h2 {
	color: var(--rosado-oscuro);
	margin-bottom: 1rem;
}

.filtros {
	margin-bottom: 1rem;
}

.filtros button {
	border: none;
	background: #f0e4f7;
	color: #4a3062;
	padding: 0.5rem 1rem;
	margin: 0 4px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: background 0.2s ease;
}

.filtros button:hover {
	background: #e3ccfa;
}

.filtros button.active {
	background: #cba9f7;
	color: white;
}

.numeros {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
	gap: 6px;
	margin-top: 1rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.numero {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border-radius: 8px;
	font-weight: 500;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.numero:hover {
	transform: scale(1.05);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.disponible {
	background-color: var(--menta);
}

.ocupado {
	background-color: #f3b7b7;
	text-decoration: line-through;
	opacity: 0.7;
}

/* --- FOOTER --- */
footer {
	text-align: center;
	padding: 2rem 1rem;
	background: #fdf0f5;
	color: #6b5066;
	font-size: 0.9rem;
}

footer p {
	margin: 0.3rem 0;
}