/* ===================================
   PÁGINA ESTATUTOS - ESTILOS EXACTOS DE ASTRO
   =================================== */

.container {
	width: 100%;
	max-width: 1136px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* ===================================
   HERO
   =================================== */

.estatutos-hero {
	background: linear-gradient(90deg, rgba(0, 27, 112, 0.85) 0%, rgba(6, 38, 169, 0.85) 100%),
		url('https://lloredacamacho.com/wp-content/uploads/2025/10/4169.jpg');
	background-size: cover;
	background-position: center;
	color: var(--color-white);
	padding: 80px 0 48px;
	text-align: center;
}

.page-title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 2.5rem;
	line-height: 1.2;
}

/* ===================================
   INTRO
   =================================== */

.intro-section {
	background: #fff;
	padding: 64px 0;
	text-align: center;
}

.intro-text {
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--color-primary);
	max-width: 900px;
	margin: 0 auto 32px;
}

.cta-wrapper {
	display: flex;
	justify-content: center;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary,
.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 280px;
	min-height: 56px;
	border-radius: 80px;
	font-weight: 700;
	text-decoration: none;
	padding: 0.875rem 2rem;
	transition: all 0.3s ease;
	font-family: var(--font-body);
}

.btn-primary {
	background: var(--color-yellow);
	color: var(--color-primary);
	border: none;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(255, 204, 0, 0.25);
}

.btn-secondary {
	background: var(--color-white);
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
	background: var(--color-primary);
	color: var(--color-white);
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.content-section {
	padding: 64px 0;
	background: #fff;
}

.light-bg {
	background: #f9fafb;
}

.section-title {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 2rem;
	color: var(--color-primary);
	margin-bottom: 32px;
	text-align: center;
}

/* ===================================
   INFO LIST
   =================================== */

.info-list {
	list-style: none;
	padding: 0;
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	gap: 18px;
}

.info-list li {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--color-primary);
	padding-left: 32px;
	position: relative;
}

.info-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-orange);
	font-weight: 700;
	font-size: 1.25rem;
}

/* ===================================
   VALUES LIST
   =================================== */

.values-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.values-list li {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 16px;
	align-items: start;
	background: #fff;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 100%);
	border-radius: 50%;
	color: var(--color-white);
	flex-shrink: 0;
}

.value-content h3 {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--color-primary);
	margin-bottom: 4px;
}

.value-content p {
	font-size: 1rem;
	color: #6b7280;
	margin: 0;
}

/* ===================================
   ORGANIGRAMA
   =================================== */

.organigrama {
	max-width: 700px;
	margin: 0 auto;
	padding: 32px 0;
}

.org-level {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.org-box {
	background: linear-gradient(135deg, #001B70 0%, #0626A9 100%);
	color: var(--color-white);
	padding: 18px 24px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.9375rem;
	text-align: center;
	box-shadow: 0 6px 16px rgba(0, 27, 112, 0.2);
	min-width: 200px;
}

.org-box.small {
	font-size: 0.875rem;
	min-width: 160px;
}

.org-connector {
	width: 3px;
	height: 24px;
	background: #0626A9;
	margin: 0 auto;
}

/* ===================================
   COMPROMISO CARDS
   =================================== */

.compromiso-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	max-width: 900px;
	margin: 0 auto;
}

.compromiso-card {
	background: #fff;
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.card-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 2px solid;
}

.card-header.derechos {
	border-color: var(--color-yellow);
	color: var(--color-yellow);
}

.card-header.deberes {
	border-color: var(--color-orange);
	color: var(--color-orange);
}

.card-header h3 {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--color-primary);
	margin: 0;
}

.card-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 14px;
}

.card-list li {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-primary);
	padding-left: 28px;
	position: relative;
}

.card-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-size: 1.5rem;
	line-height: 1;
}

/* ===================================
   FINAL CTA
   =================================== */

.final-cta {
	background: linear-gradient(90deg, #001B70 0%, #0626A9 100%);
	color: var(--color-white);
	padding: 80px 0;
	text-align: center;
}

.final-text {
	font-size: 1.125rem;
	line-height: 1.75;
	max-width: 800px;
	margin: 0 auto 32px;
}

/* ===================================
   ENTRY CONTENT (WordPress default)
   =================================== */

.entry-content {
	max-width: 900px;
	margin: 0 auto;
	color: var(--color-primary);
	line-height: 1.7;
}

.entry-content h2 {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.75rem;
	color: var(--color-primary);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.entry-content p {
	font-size: 1.0625rem;
	margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.entry-content li {
	margin-bottom: 0.5rem;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (min-width: 768px) {
	.page-title {
		font-size: 3rem;
	}

	.section-title {
		font-size: 2.25rem;
	}

	.values-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.compromiso-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */

@media (min-width: 1024px) {
	.page-title {
		font-size: 3.5rem;
	}

	.section-title {
		font-size: 2.5rem;
	}
}
