/* Estilos globales básicos */
:root {
	--accent: #2a9d8f;
	--muted: #6b7280;
}

/* Generales */
html,
body {
	height: 100%;
}


body {
	margin: 0;
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	color: #111827;
	background: #ffffff;
}

h1,
h2,
h3,
p,
label,
.title {
	text-align: center;
	margin: 0;
	padding: 0;
}

/* Layout principal (centrado como bloque) */
.site-block {
	margin: 0 auto;
}

/* Menu de navegación */
.menu-icono {
	width: 50px;
	height: 50px;
	cursor: pointer;
}

.div-menu-icono {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 50px;
	height: 50px;
	cursor: pointer;
}

.div-menu-bar {
	height: 10px;
	background-color: #111827;
	margin-top: 3px;
	border-radius: 20px;
}

.menu-user,
.menu-whatsapp {
	width: 50px;
	height: 50px;
}

/* Comentado: ejemplo de nav absoluto
.aside-menu{position:relative;} 
#nav-menu, .nav-menu{
	background-color: #ffffff;
	position: absolute;
	top: 60px;
	z-index: 999;
}

#nav-menu ul, .nav-menu ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
*/


/* Icono hamburguesa: ya existe .menu-icono y .div-menu-bar, ajustar visual */
.menu-icono {
	background: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 50px;
	height: 50px;
}

.div-menu-bar {
	width: 28px;
	height: 3px;
	background-color: #111827;
	border-radius: 4px;
	transition: transform 0.2s, opacity 0.2s;
}

/* Mostrar menú: clase que el script añade/toggles */
#nav-menu.mostrar,
.nav-menu.mostrar {
	display: block;
}

/* Ajustes responsive: en escritorio el menú puede mostrarse en línea */
@media (min-width: 900px) {
	/* en pantallas grandes, mostrar el nav horizontal y estático */
	#nav-menu,
	.nav-menu {
		display: block;
		position: static;
		background: transparent;
		width: auto;
	}

	#nav-menu ul,
	.nav-menu ul {
		display: flex;
		gap: 1rem;
	}

	#nav-menu li a,
	.nav-menu li a {
		color: var(--muted);
		border-bottom: none;
		padding: 8px;
	}
}


.header {
	display: flex;
	justify-content: center;
	padding: 1rem 0;
	margin-top: 10%;
}

.header .title {
	width: 100%;
	text-align: center;
}

.red {
	max-width: 1100px;
}

.redes-container {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	flex-wrap: wrap;
	padding: 1rem 1.25rem;
	justify-content: center;
}

.redes-section {
	display: flex;
	justify-content: center;
}

.redes-section a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	justify-content: center;
	text-decoration: none;
	color: inherit;
	text-align: left;
}

.redes-section a h3 {
	margin: 0;
	text-align: left;
}

.icon-redes {
	width: 48px;
	height: 48px;
	display: block;
	margin: 0 auto;
}

.redes-section a:hover .icon-redes {
	transform: scale(1.06);
	transition: transform 0.12s ease;
}

.paquetes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	padding: 1rem;
	align-items: start;
	max-width: 1300px;
	margin: 0 auto;
}

.paquetes .paquete-card {
	box-sizing: border-box;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1rem;
}

.paquetes .paquete-card .title,
.paquetes .paquete-card p {
	width: 100%;
	text-align: left;
}

/* --- NUEVOS ESTILOS PARA LOS PÁRRAFOS DE LOS PAQUETES --- */

/* Estilo base para todos los párrafos de paquetes con el efecto "bochazo de pintura" */
.paquete-p {
    /* Padding para que el fondo se separe del texto */
    padding: 15px 20px;
    /* Separación de 10px entre elementos, como se solicitó */
    margin-bottom: 10px;
    /* Forma irregular del 'bochazo' usando border-radius */
    border-radius: 40% 60% 70% 30% / 30% 30% 70% 70%;
    /* Transición para un efecto más suave al cargar */
    transition: all 0.3s ease-out;
    /* Sombra sutil para darle un poco de profundidad y forma */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

/* Primaria: Amarillo pálido (#FFFACD - Lemon Chiffon) */
.p-primaria {
    background-color: #fffacd; 
}

/* Bachillerato: Azul pálido (#ADD8E6 - Light Blue) */
.p-bachillerato {
    background-color: #d1e0f0; /* Un azul pastel claro y suave */
}

/* Universidad: Verde pálido (#90EE90 - Light Green) */
.p-universidad {
    background-color: #d8f3d8; /* Un verde pastel muy claro */
}

/* --- FIN DE NUEVOS ESTILOS --- */


.button-pack {
	background: var(--accent);
	color: #fff;
	border: none;
	padding: 0.5rem 0.9rem;
	border-radius: 8px;
	cursor: pointer;
}

.button-pack:hover {
	opacity: 0.95;
}

/* Formulario */
.formulario {
	display: flex;
	justify-content: center;
	padding: 1rem;
}

.formulario form {
	max-width: 700px;
	width: 100%;
	box-sizing: border-box;
}

.form-group {
	margin-bottom: 0.75rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 600;
}

input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 0.5rem;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
}

.button-form {
	background: var(--accent);
	color: #fff;
	border: none;
	padding: 0.6rem 1rem;
	border-radius: 8px;
	cursor: pointer;
}

.button-form:hover {
	opacity: 0.95;
}

/* Footer */
.footer {
	background: #0f172a;
	color: #f8fafc;
	padding: 1.25rem 1rem;
	margin-top: 2rem;
}

.footer-container {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	justify-content: center;
}

.footer-title {
	margin: 0 0 0.25rem 0;
	font-size: 1.05rem;
}

.footer-desc {
	margin: 0;
	color: var(--muted);
	max-width: 300px;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.footer-nav a {
	color: #cbd5e1;
	text-decoration: none;
}

.footer-nav a:hover {
	text-decoration: underline;
}

.footer-contact p {
	margin: 0;
	color: #cbd5e1;
}

.footer-bottom {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	padding-top: 0.75rem;
	margin-top: 1rem;
}

.footer-legal a {
	color: #cbd5e1;
	text-decoration: none;
	margin-left: 0.5rem;
}

.footer-legal a:hover {
	text-decoration: underline;
}

/* Helpers */
.divisor {
	height: 1px;
	background: #eef2f7;
	margin: 1rem 0;
}

/* Responsive adjustments */
@media (max-width: 720px) {
	.paquetes .paquete-card {
		width: 100%;
		margin-right: 0;
		margin-bottom: 0.75rem;
	}

	.redes-container {
		padding: 0.75rem;
	}

	.footer-container {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 0.5rem;
		align-items: flex-start;
	}
}

