/* ===== CICFIMA INSTITUTIONAL DESIGN SYSTEM (HUMBOLDT REFERENCE) ===== */
/* Disciplined, Academic, High-Authority, and Accessible */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
	/* Institutional Palette - High Contrast */
	--primary-brand: #1d3a72;
	/* Petrol Institutional Blue */
	--primary-deep: #1d3a72;
	/* High Contrast Charcoal */
	--accent-science: #ffbd59;
	/* Scientific Blue */

	/* Backgrounds & Neutrals */
	--bg-white: #ffffff;
	--bg-cream: #f9f9f6;
	/* Soft aesthetic background */
	--bg-slate: #f1f5f9;

	/* Text Colors */
	--text-main: #1a1a1a;
	--text-muted: #4b5563;
	--text-inverse: #ffffff;

	/* Borders & UI */
	--border-thin: #e2e8f0;
	--border-heavy: #1a1a1a;

	/* Typography Scale */
	--font-serif: 'Playfair Display', serif;
	--font-sans: 'Inter', system-ui, -apple-system, sans-serif;

	--fs-xs: 0.75rem;
	--fs-sm: 0.875rem;
	--fs-base: 1rem;
	--fs-lg: 1.125rem;
	--fs-xl: 1.25rem;
	justify-content: center;
	padding: 10px 24px;
	margin-bottom: var(--spacing-4);
	color: var(--white);
	font-size: var(--fs-sm);
	font-weight: var(--fw-bold);
	background: hsla(0, 0%, 100%, 0.1);
	border: 1px solid hsla(0, 0%, 100%, 0.2);
	border-radius: 9999px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	box-shadow: var(--shadow-xl);
}


/* Legacy Header Classes for Compatibility */
.page-header,
.services-header,
.contact-header,
.hero-section {
	background: var(--hero-overlay);
	color: var(--white);
	padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
	min-height: var(--hero-min-height);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin-bottom: var(--spacing-2xl);
}

.page-header .container,
.services-header .container,
.contact-header .container,
.hero-section .container {
	width: 100%;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
}

.page-header::after,
.services-header::after,
.contact-header::after,
.hero-section::after {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.12;
	background: radial-gradient(circle at 25% 30%, #ffffff, transparent 45%),
		radial-gradient(circle at 80% 20%, #ffffff, transparent 40%);
	pointer-events: none;
}

.page-header h1,
.services-header h1,
.contact-header h1,
.hero-section h1 {
	color: var(--white);
	font-size: var(--fs-5xl);
	line-height: 1.1;
	font-weight: var(--fw-black);
	letter-spacing: -1.5px;
	margin-bottom: var(--spacing-md);
}

.page-header p,
.services-header p,
.contact-header p,
.hero-section p {
	color: rgba(255, 255, 255, 0.95);
	font-size: var(--fs-lg);
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}



/* ===== GLOBAL TYPOGRAPHY & SECTIONS ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: var(--font-sans);
	font-size: var(--fs-base);
	line-height: 1.6;
	color: var(--text-main);
	background-color: var(--bg-white);
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Institutional Section Header */
.section-header {
	margin-bottom: 60px;
	border-bottom: 1px solid var(--border-thin);
	padding-bottom: 24px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.section-header h2 {
	font-size: var(--fs-3xl);
	margin-bottom: 0;
}

.section-header .section-tag {
	font-family: var(--font-sans);
	font-size: var(--fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
}

/* Institutional Grid System (3-Column) */
.content-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

@media (max-width: 1024px) {
	.content-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.content-grid-3 {
		grid-template-columns: 1fr;
	}

	.container {
		padding: 0 24px;
	}
}



/* ===== INSTITUTIONAL HEADER & NAVIGATION ===== */
.top-bar {
	background-color: #e8eff6;
	/* Harmonized with header bluish tone */
	border-bottom: 1px solid var(--border-thin);
	padding: 8px 0;
	font-size: 11px;
	font-family: var(--font-sans);
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

@media (max-width: 768px) {
	.top-bar .container {
		flex-direction: column;
		gap: 5px;
		padding: 4px 20px;
	}

	.top-bar-info span {
		margin-right: 15px !important;
		display: inline-block;
	}
}

.top-bar-info span {
	margin-right: 24px;
}

.top-bar-social {
	display: flex;
	gap: 15px;
	align-items: center;
}

.top-bar-social a {
	display: flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
	transition: var(--transition);
}

.top-bar-social a svg {
	width: 16px;
	height: 16px;
	fill: var(--text-muted);
	transition: fill 0.3s ease, transform 0.3s ease;
}

.top-bar-social a:hover svg {
	fill: var(--accent-science);
	transform: translateY(-2px);
}

header {
	background: #f1f5f9;
	/* Increased tone (bg-slate) for better contrast */
	padding: 16px 0;
	border-bottom: 1px solid var(--border-thin);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
	transition: var(--transition);
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}


/* ===== HERO SECTION (INDEX) ===== */
.hero-component {
	padding: var(--spacing-2xl) 0;
	margin-top: 40px;
	/* Added margin to separate from the menu */
	background-color: var(--white);
	overflow: hidden;
}

.hero-image-container {
	position: relative;
	width: 100%;
	height: 450px;
	/* Fixed height for consistency */
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
}

.hero-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Ensures the image fills the area without distortion */
	display: block;
	transition: var(--transition);
}

.hero-image-container:hover img {
	transform: scale(1.03);
	/* Subtle zoom effect */
}

.logo img {
	height: 48px;
	width: auto;
}

.main-navigation {
	display: flex;
	gap: 32px;
	list-style: none;
	align-items: center;
	/* Perfect vertical centering for all items */
}

.main-navigation a {
	text-decoration: none;
	color: #000000;
	/* Institutional pure black for accessibility */
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: var(--transition);
	padding: 12px 0;
	position: relative;
	font-family: var(--font-sans);
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-science);
	transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
	width: 100%;
}

.main-navigation a:hover,
.main-navigation a.active {
	color: var(--accent-science);
}


/* Mobile Toggle */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

/* Institutional Cards (Humboldt Style) */
.institutional-card {
	border: 1px solid var(--border-thin);
	background: var(--bg-white);
	transition: var(--transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.institutional-card:hover {
	border-color: var(--primary-deep);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-deep);
}

.card-img img {
	width: auto;
	height: 130px;
	object-fit: contain;
	transition: var(--transition);
}

.institutional-card:hover .card-img img {
	transform: scale(1.05);
}

@media (max-width: 1024px) {
	.card-img {
		aspect-ratio: auto;
		height: 180px;
	}
}

.card-body {
	padding: 32px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.card-category {
	font-family: var(--font-sans);
	font-size: var(--fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--accent-science);
	margin-bottom: 12px;
}

.institutional-card h3 {
	font-size: var(--fs-xl);
	margin-bottom: 16px;
	line-height: 1.3;
}

.institutional-card p {
	font-size: var(--fs-sm);
	color: var(--text-muted);
	margin-bottom: 24px;
}

/* Cards Grid for Use Cases */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

@media (max-width: 1200px) {
	.cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.cards-grid {
		grid-template-columns: 1fr;
	}
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	padding-top: 16px;
}

.tag {
	background: var(--bg-slate);
	color: var(--primary-deep);
	font-size: var(--fs-xs);
	padding: 4px 12px;
	border-radius: 9999px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border: 1px solid var(--border-thin);
}

/* Institutional Pipeline */
.pipeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
	margin-bottom: 40px;
}

@media (min-width: 1025px) {
	.pipeline::before {
		content: '';
		position: absolute;
		top: 35px;
		left: 40px;
		right: 40px;
		height: 2px;
		background: var(--border-thin);
		z-index: 1;
	}
}

.pipeline-step {
	background: var(--bg-white);
	border: 1px solid var(--border-thin);
	border-radius: 12px;
	padding: 30px;
	position: relative;
	z-index: 2;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.pipeline-step:hover {
	border-color: var(--primary-deep);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transform: translateY(-5px);
}

.pipe-head {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 16px;
}

.pipe-index {
	font-size: var(--fs-xl);
	font-weight: 700;
	color: var(--accent-science);
	font-family: var(--font-serif);
	background: var(--bg-slate);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid var(--bg-white);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pipe-head h4 {
	margin-bottom: 0;
	font-size: var(--fs-lg);
	line-height: 1.2;
}

.pipeline-step p {
	font-size: var(--fs-sm);
	color: var(--text-muted);
	margin-bottom: 24px;
	flex-grow: 1;
}

.pipe-chip {
	display: inline-block;
	background: var(--primary-deep);
	color: var(--bg-white);
	font-size: var(--fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 6px 16px;
	border-radius: 9999px;
	align-self: flex-start;
}

@media (max-width: 1024px) {
	.pipeline {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.pipeline {
		grid-template-columns: 1fr;
	}
}

/* ===================================================================
   FOOTER — Consolidated styles moved from index.html
   =================================================================== */

/* Layout override for footer grid (higher specificity than some page rules) */
.institutional-footer .container>.footer-main-grid {
	display: grid !important;
	grid-template-columns: 2fr 1fr 1fr 1.2fr;
	gap: 48px;
	padding: 60px 0 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	flex-direction: unset;
}

@media (max-width: 1024px) {
	.institutional-footer .container>.footer-main-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.institutional-footer .container>.footer-main-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 40px 0 24px;
	}
}

/* Footer background, texture and stacking */
.institutional-footer {
	background: linear-gradient(160deg, var(--primary-deep) 0%, #0a1520 55%, #070d12 100%) !important;
	position: relative;
	overflow: hidden;
}

.institutional-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('Multimedia/math_overlay.svg');
	background-size: 480px;
	background-repeat: repeat;
	opacity: 0.025;
	pointer-events: none;
	z-index: 0;
}

.institutional-footer .container {
	position: relative;
	z-index: 1;
}

/* Social icons: circular, gradient-filled */
.institutional-footer .footer-brand-col .social-links {
	display: flex;
	gap: 12px;
	margin-top: 8px;
}

.institutional-footer .footer-brand-col .social-links a {
	width: 40px;
	height: 40px;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: linear-gradient(135deg, var(--accent-science), var(--primary-brand));
	color: var(--text-inverse);
	text-decoration: none;
	padding: 0;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.institutional-footer .footer-brand-col .social-links a:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(29, 58, 114, 0.55);
	background: linear-gradient(135deg, var(--primary-brand), var(--accent-science));
	border-color: rgba(255, 255, 255, 0.45);
	color: var(--text-inverse);
}

.institutional-footer .footer-brand-col .social-links a svg {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
}

/* Hide pseudo-element masks from older global rules */
.institutional-footer .footer-brand-col .social-links a::after {
	display: none;
}

/* Vertical separators between columns */
.institutional-footer .footer-nav-col,
.institutional-footer .footer-contact-col {
	border-left: 1px solid rgba(255, 255, 255, 0.07);
	padding-left: 40px;
}

@media (max-width: 1024px) {

	.institutional-footer .footer-nav-col,
	.institutional-footer .footer-contact-col {
		border-left: none;
		padding-left: 0;
	}

	.institutional-footer .container>.footer-main-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

/* Column headings with accent */
.institutional-footer .footer-nav-col h4,
.institutional-footer .footer-contact-col h4 {
	color: var(--accent-science);
	position: relative;
	padding-bottom: 14px;
	margin-bottom: 4px;
}

.institutional-footer .footer-nav-col h4::after,
.institutional-footer .footer-contact-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 24px;
	height: 2px;
	background: var(--accent-science);
	opacity: 0.55;
}

/* Footer CTA */
.institutional-footer .footer-cta-button {
	background: transparent !important;
	color: #ffffff !important;
	border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.78rem;
	padding: 12px 20px;
	border-radius: 4px;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
	text-align: center;
}

.institutional-footer .footer-cta-button:hover {
	background: #ffffff !important;
	color: var(--primary-deep) !important;
	border-color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Legal bar */
.institutional-footer .footer-legal-bar {
	justify-content: center;
	gap: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.institutional-footer .legal-left,
.institutional-footer .legal-right {
	flex: unset;
	min-width: unset;
}

.institutional-footer .legal-left p,
.institutional-footer .legal-right p {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.42);
	letter-spacing: 0.03em;
	margin: 0;
}

.institutional-footer .legal-right p {
	color: rgba(255, 255, 255, 0.28);
}

/* Small nav link micro-animation */
.institutional-footer .footer-nav-col ul li a {
	display: inline-block;
	transition: color 0.25s ease, transform 0.25s ease;
}

.institutional-footer .footer-nav-col ul li a:hover {
	color: #ffffff;
	transform: translateX(5px);
}


section.dark-bg span {
	color: rgba(255, 255, 255, 0.88);
}

/* ===== TYPOGRAPHY ===== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: var(--spacing-md);
	color: var(--primary-dark);
	letter-spacing: -0.5px;
}

h1 {
	font-size: var(--fs-5xl);
	margin-bottom: var(--spacing-lg);
	line-height: 1.2;
}

h2 {
	font-size: var(--fs-4xl);
	margin-bottom: var(--spacing-lg);
}

h3 {
	font-size: var(--fs-3xl);
	margin-bottom: var(--spacing-md);
}

h4 {
	font-size: var(--fs-2xl);
	margin-bottom: var(--spacing-md);
}

h5 {
	font-size: var(--fs-xl);
	margin-bottom: var(--spacing-sm);
}

h6 {
	font-size: var(--fs-lg);
	margin-bottom: var(--spacing-sm);
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

p {
	margin-bottom: var(--spacing-md);
	color: var(--text-light);
	line-height: 1.8;
	font-size: var(--fs-md);
}

.lead {
	font-size: var(--fs-lg);
	font-weight: 500;
	color: var(--text-light);
	line-height: 1.9;
	margin-bottom: var(--spacing-lg);
}

.submenu {
	position: static;
	opacity: 1;
	visibility: visible;
	transform: none;
	box-shadow: none;
	border: none;
	padding: 6px 0;
	margin-top: 4px;
	display: none;
	width: 100%;
}

.submenu a {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 10px 0;
}



.text-muted {
	color: var(--text-light);
	font-size: var(--fs-sm);
}

/* ===== BUTTONS ===== */

.button,
button,
input[type="button"],
input[type="submit"],
a.button {
	display: inline-block;
	padding: 14px 32px;
	font-size: var(--fs-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 2px solid transparent;
	border-radius: var(--radius-md);
	cursor: pointer;
	text-decoration: none;
	transition: all var(--transition-normal);
	position: relative;
	overflow: hidden;
	text-align: center;
	white-space: nowrap;
}

.button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	transition: left var(--transition-normal);
	z-index: -1;
}

/* Primary Button */
.button-primary,
.button.primary {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: var(--white);
	border-color: var(--primary);
}

.button-primary:hover,
.button.primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.button-primary:active,
.button.primary:active {
	transform: translateY(-1px);
}

/* Accent Button */
.button-accent,
.button.accent {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
	color: var(--white);
	border-color: var(--accent);
}

.button-accent:hover,
.button.accent:hover {
	transform: translateY(-3px);
	box-shadow: none;
}

/* Secondary Button */
.button-secondary,
.button.secondary {
	background-color: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.button-secondary:hover,
.button.secondary:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

/* Outline Button */
.button-outline {
	background-color: transparent;
	color: var(--text);
	border: 2px solid var(--border);
}

.button-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-2px);
}

/* Small Button */
.button-sm {
	padding: 10px 20px;
	font-size: var(--fs-xs);
}

/* Large Button */
.button-lg {
	padding: 18px 40px;
	font-size: var(--fs-lg);
}

/* Disabled State */
.button:disabled,
.button[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.button:disabled:hover,
.button[disabled]:hover {
	box-shadow: none;
}

/* ===== FOOTER ===== */

footer {
	background: linear-gradient(135deg, var(--darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
	color: var(--white);
	padding: var(--spacing-2xl) 0 var(--spacing-lg);
	margin-top: var(--spacing-2xl);
	position: relative;
	overflow: hidden;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="120" fill="url(%23dots)"/></svg>');
	opacity: 0.5;
	pointer-events: none;
}

footer .container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr;
	gap: var(--spacing-xl);
	margin-bottom: var(--spacing-xl);
	position: relative;
	z-index: 1;
	padding: 0 var(--spacing-lg);
}

footer .container>div {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xs);
}

footer .container>div:nth-child(1) {
	text-align: left;
	align-items: flex-start;
	gap: 4px;
}

footer .container>div:nth-child(1) p,
footer .container>div:nth-child(1) a {
	margin-bottom: 4px;
}

footer .container>div:nth-child(2) {
	text-align: center;
	align-items: center;
	gap: 4px;
}

footer .container>div:nth-child(2) p,
footer .container>div:nth-child(2) a {
	margin-bottom: 4px;
}

footer .container>div:nth-child(3) {
	text-align: right;
	align-items: flex-end;
	gap: 4px;
}

footer .container>div:nth-child(3) p,
footer .container>div:nth-child(3) a {
	margin-bottom: 4px;
}

footer h4 {
	margin-bottom: var(--spacing-md);
	color: var(--accent);
	font-size: var(--fs-sm);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 700;
}

footer p {
	color: var(--white);
	opacity: 0.92;
	font-size: var(--fs-sm);
	line-height: 1.8;
	margin-bottom: var(--spacing-xs);
}

footer a {
	color: var(--white);
	text-decoration: none;
	opacity: 0.9;
	transition: all var(--transition-fast);
	display: inline-block;
	font-size: var(--fs-sm);
}

footer a:hover {
	opacity: 1;
	transform: translateX(4px);
	color: var(--white);
}

footer .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: var(--spacing-lg);
	text-align: center;
	font-size: var(--fs-xs);
	opacity: 0.75;
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding-left: var(--spacing-lg);
	padding-right: var(--spacing-lg);
}

footer .social-links {
	display: flex;
	gap: var(--spacing-md);
	margin-top: var(--spacing-sm);
	flex-wrap: wrap;
}

footer .container>div:nth-child(1) .social-links {
	justify-content: flex-start;
}

footer .container>div:nth-child(2) .social-links {
	justify-content: center;
}

footer .container>div:nth-child(3) .social-links {
	justify-content: flex-end;
}

footer .social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: transparent;
	border-radius: 50%;
	transition: all var(--transition-fast);
	border: 1px solid var(--accent);
	color: transparent;
	position: relative;
	overflow: hidden;
}

footer .social-links a:hover {
	background: var(--accent);
	border-color: var(--accent);
	transform: translateY(-4px) scale(1.1);
}

/* Iconos de redes con máscaras en colores corporativos */
.social-links a::after {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	background: var(--accent);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.social-links a[title="LinkedIn"]::after {
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4.98 3.5C4.98 4.88 3.88 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1 4.98 2.12 4.98 3.5zM.5 8h4V24h-4V8zm7.5 0h3.8v2.2h.05c.53-1 1.82-2.2 3.75-2.2 4 0 4.75 2.6 4.75 6V24h-4v-7.5c0-1.8-.03-4.1-2.5-4.1-2.5 0-2.9 1.95-2.9 4v7.6h-4V8z'/></svg>");
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4.98 3.5C4.98 4.88 3.88 6 2.5 6S0 4.88 0 3.5 1.12 1 2.5 1 4.98 2.12 4.98 3.5zM.5 8h4V24h-4V8zm7.5 0h3.8v2.2h.05c.53-1 1.82-2.2 3.75-2.2 4 0 4.75 2.6 4.75 6V24h-4v-7.5c0-1.8-.03-4.1-2.5-4.1-2.5 0-2.9 1.95-2.9 4v7.6h-4V8z'/></svg>");
}

.social-links a[title="Instagram"]::after {
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 2h10a5 5 0 015 5v10a5 5 0 01-5 5H7a5 5 0 01-5-5V7a5 5 0 015-5zm0 2a3 3 0 00-3 3v10a3 3 0 003 3h10a3 3 0 003-3V7a3 3 0 00-3-3H7zm5 3.5A5.5 5.5 0 1112 18.5 5.5 5.5 0 0112 7.5zm0 2a3.5 3.5 0 100 7 3.5 3.5 0 000-7zm6.25-4a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0z'/></svg>");
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 2h10a5 5 0 015 5v10a5 5 0 01-5 5H7a5 5 0 01-5-5V7a5 5 0 015-5zm0 2a3 3 0 00-3 3v10a3 3 0 003 3h10a3 3 0 003-3V7a3 3 0 00-3-3H7zm5 3.5A5.5 5.5 0 1112 18.5 5.5 5.5 0 0112 7.5zm0 2a3.5 3.5 0 100 7 3.5 3.5 0 000-7zm6.25-4a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0z'/></svg>");
}

.social-links a[title="Threads"]::after {
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c4.8 0 8.8-3.3 9.8-7.7l-2.4-.6c-.7 3-3.5 5.2-7.4 5.2-4.1 0-7.5-3.4-7.5-7.5S7.9 4 12 4c3.4 0 6.2 2.3 7 5.4-.6.2-1.3.4-2 .5-.7-1.5-2.2-2.5-4-2.5-2.5 0-4.5 2-4.5 4.5s2 4.5 4.5 4.5c1.3 0 2.4-.5 3.2-1.4-.2-.6-.3-1.1-.4-1.7-.4.6-1.1 1-1.9 1-1.2 0-2.2-1-2.2-2.2s1-2.3 2.2-2.3c1 0 1.9.7 2.1 1.7l2.6-.5c-.1-.5-.3-.9-.4-1.3C16.6 7 14.4 6 12 6c-3.3 0-6 2.7-6 6s2.7 6 6 6c3 0 5.5-2.2 5.9-5.1l2.5.3C19.9 17.8 16.3 21 12 21 6.5 21 2 16.5 2 11S6.5 1 12 1c5 0 9.3 3.6 10.1 8.5l-2.5.4C19.1 5 15.9 2 12 2z'/></svg>");
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c4.8 0 8.8-3.3 9.8-7.7l-2.4-.6c-.7 3-3.5 5.2-7.4 5.2-4.1 0-7.5-3.4-7.5-7.5S7.9 4 12 4c3.4 0 6.2 2.3 7 5.4-.6.2-1.3.4-2 .5-.7-1.5-2.2-2.5-4-2.5-2.5 0-4.5 2-4.5 4.5s2 4.5 4.5 4.5c1.3 0 2.4-.5 3.2-1.4-.2-.6-.3-1.1-.4-1.7-.4.6-1.1 1-1.9 1-1.2 0-2.2-1-2.2-2.2s1-2.3 2.2-2.3c1 0 1.9.7 2.1 1.7l2.6-.5c-.1-.5-.3-.9-.4-1.3C16.6 7 14.4 6 12 6c-3.3 0-6 2.7-6 6s2.7 6 6 6c3 0 5.5-2.2 5.9-5.1l2.5.3C19.9 17.8 16.3 21 12 21 6.5 21 2 16.5 2 11S6.5 1 12 1c5 0 9.3 3.6 10.1 8.5l-2.5.4C19.1 5 15.9 2 12 2z'/></svg>");
}

.social-links a[title="WhatsApp"]::after {
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20.5 3.5A11.8 11.8 0 0012 0C5.4 0 .1 5.3.1 11.9c0 2.1.6 4.1 1.7 5.9L0 24l6.4-1.7a11.9 11.9 0 0017.6-10.4c0-3.2-1.2-6.2-3.5-8.4zM12 21.4c-1.9 0-3.8-.5-5.4-1.6l-.4-.2-3.8 1 .9-3.7-.3-.4A9.4 9.4 0 012.6 12C2.6 6.9 6.9 2.6 12 2.6c2.5 0 4.8 1 6.6 2.7a9.3 9.3 0 012.8 6.6c0 5.1-4.3 9.5-9.4 9.5zm5.2-7.1c-.3-.1-1.9-.9-2.2-1-.3-.1-.5-.1-.7.2l-.9 1c-.1.1-.3.2-.6.1-.3-.1-1.2-.5-2.3-1.4-.8-.7-1.4-1.5-1.6-1.8-.2-.3 0-.4.1-.5l.5-.6.3-.5c.1-.1.1-.3 0-.5l-1-2.3c-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.4s1.1 2.8 1.2 3c.1.2 2.2 3.4 5.3 4.8.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.9-.8 2.2-1.6.3-.8.3-1.4.2-1.6-.1-.2-.3-.2-.6-.3z'/></svg>");
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20.5 3.5A11.8 11.8 0 0012 0C5.4 0 .1 5.3.1 11.9c0 2.1.6 4.1 1.7 5.9L0 24l6.4-1.7a11.9 11.9 0 0017.6-10.4c0-3.2-1.2-6.2-3.5-8.4zM12 21.4c-1.9 0-3.8-.5-5.4-1.6l-.4-.2-3.8 1 .9-3.7-.3-.4A9.4 9.4 0 012.6 12C2.6 6.9 6.9 2.6 12 2.6c2.5 0 4.8 1 6.6 2.7a9.3 9.3 0 012.8 6.6c0 5.1-4.3 9.5-9.4 9.5zm5.2-7.1c-.3-.1-1.9-.9-2.2-1-.3-.1-.5-.1-.7.2l-.9 1c-.1.1-.3.2-.6.1-.3-.1-1.2-.5-2.3-1.4-.8-.7-1.4-1.5-1.6-1.8-.2-.3 0-.4.1-.5l.5-.6.3-.5c.1-.1.1-.3 0-.5l-1-2.3c-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.4s1.1 2.8 1.2 3c.1.2 2.2 3.4 5.3 4.8.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.9-.8 2.2-1.6.3-.8.3-1.4.2-1.6-.1-.2-.3-.2-.6-.3z'/></svg>");
}

.social-links a:hover::after {
	background: var(--white);
}

/* Iconografía elegante para la columna de contacto del footer */
footer .container>div:nth-child(3) p {
	position: relative;
	padding-left: 40px;
	line-height: 1.6;
}

footer .container>div:nth-child(3) p::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
	mask-size: 60%;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: 60%;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	box-shadow: 0 6px 16px rgba(72, 202, 228, 0.3);
}

/* Íconos específicos por orden en la columna (email, teléfono, horario, ubicación) */
footer .container>div:nth-child(3) p:nth-of-type(1)::before {
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 5h18a2 2 0 012 2v10a2 2 0 01-2 2H3a2 2 0 01-2-2V7a2 2 0 012-2zm0 2v.4l9 5.1 9-5.1V7H3zm0 2.6V17h18v-7.4l-8.4 4.8a2 2 0 01-2 0L3 9.6z'/></svg>");
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 5h18a2 2 0 012 2v10a2 2 0 01-2 2H3a2 2 0 01-2-2V7a2 2 0 012-2zm0 2v.4l9 5.1 9-5.1V7H3zm0 2.6V17h18v-7.4l-8.4 4.8a2 2 0 01-2 0L3 9.6z'/></svg>");
}

footer .container>div:nth-child(3) p:nth-of-type(2)::before {
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.6 2.1l2.4-.5a1.5 1.5 0 011.7.9l1.1 2.8a1.5 1.5 0 01-.4 1.6l-1.5 1.5a12.5 12.5 0 005.7 5.7l1.5-1.5a1.5 1.5 0 011.6-.4l2.8 1.1a1.5 1.5 0 01.9 1.7l-.5 2.4A1.5 1.5 0 0120.5 20C11.4 20 4 12.6 4 3.5A1.5 1.5 0 016.6 2z'/></svg>");
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.6 2.1l2.4-.5a1.5 1.5 0 011.7.9l1.1 2.8a1.5 1.5 0 01-.4 1.6l-1.5 1.5a12.5 12.5 0 005.7 5.7l1.5-1.5a1.5 1.5 0 011.6-.4l2.8 1.1a1.5 1.5 0 01.9 1.7l-.5 2.4A1.5 1.5 0 0120.5 20C11.4 20 4 12.6 4 3.5A1.5 1.5 0 016.6 2z'/></svg>");
}

footer .container>div:nth-child(3) p:nth-of-type(3)::before {
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1a11 11 0 100 22 11 11 0 000-22zm0 2a9 9 0 110 18 9 9 0 010-18zm-.5 3h2v5.3l3.4 2.1-1 1.7-4.4-2.8V6z'/></svg>");
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1a11 11 0 100 22 11 11 0 000-22zm0 2a9 9 0 110 18 9 9 0 010-18zm-.5 3h2v5.3l3.4 2.1-1 1.7-4.4-2.8V6z'/></svg>");
}

footer .container>div:nth-child(3) p:nth-of-type(4)::before {
	mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a7 7 0 00-7 7c0 5.2 5.4 11.1 6.5 12.2a1 1 0 001.4 0C13.6 20.1 19 14.2 19 9a7 7 0 00-7-7zm0 2a5 5 0 015 5c0 3.5-3.4 8-5 9.9-1.6-1.9-5-6.4-5-9.9a5 5 0 015-5zm0 2.5A2.5 2.5 0 119.5 9 2.5 2.5 0 0112 6.5z'/></svg>");
	-webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a7 7 0 00-7 7c0 5.2 5.4 11.1 6.5 12.2a1 1 0 001.4 0C13.6 20.1 19 14.2 19 9a7 7 0 00-7-7zm0 2a5 5 0 015 5c0 3.5-3.4 8-5 9.9-1.6-1.9-5-6.4-5-9.9a5 5 0 015-5zm0 2.5A2.5 2.5 0 119.5 9 2.5 2.5 0 0112 6.5z'/></svg>");
}

/* ===== ANIMATIONS & TRANSITIONS ===== */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.65;
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-8px);
	}
}

@keyframes whatsappPulse {
	0% {
		transform: scale(0.6);
		opacity: 0.8;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}

	100% {
		background-position: 1000px 0;
	}
}

.animate-in {
	animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade {
	animation: fadeIn 0.4s ease-out;
}

.animate-scale {
	animation: scaleIn 0.5s ease-out;
}

.floating {
	animation: float 3s ease-in-out infinite;
}

/* ===== UTILITY CLASSES ===== */

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.mt-1 {
	margin-top: var(--spacing-xs);
}

.mt-2 {
	margin-top: var(--spacing-sm);
}

.mt-3 {
	margin-top: var(--spacing-md);
}

.mt-4 {
	margin-top: var(--spacing-lg);
}

.mt-5 {
	margin-top: var(--spacing-xl);
}

.mt-6 {
	margin-top: var(--spacing-2xl);
}

.mb-1 {
	margin-bottom: var(--spacing-xs);
}

.mb-2 {
	margin-bottom: var(--spacing-sm);
}

.mb-3 {
	margin-bottom: var(--spacing-md);
}

.mb-4 {
	margin-bottom: var(--spacing-lg);
}

.mb-5 {
	margin-bottom: var(--spacing-xl);
}

.mb-6 {
	margin-bottom: var(--spacing-2xl);
}

.py-1 {
	padding: var(--spacing-xs) 0;
}

.py-2 {
	padding: var(--spacing-sm) 0;
}

.py-3 {
	padding: var(--spacing-md) 0;
}

.py-4 {
	padding: var(--spacing-lg) 0;
}

.py-5 {
	padding: var(--spacing-xl) 0;
}

.py-6 {
	padding: var(--spacing-2xl) 0;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.flex {
	display: flex;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.grid {
	display: grid;
}

.gap-1 {
	gap: var(--spacing-xs);
}

.gap-2 {
	gap: var(--spacing-sm);
}

.gap-3 {
	gap: var(--spacing-md);
}

.gap-4 {
	gap: var(--spacing-lg);
}

.gap-5 {
	gap: var(--spacing-xl);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
	:root {
		--spacing-xl: 50px;
		--spacing-lg: 30px;
	}

	h1 {
		font-size: var(--fs-4xl);
	}

	h2 {
		font-size: var(--fs-3xl);
	}

	.container {
		padding: 0 var(--spacing-lg);
	}
}

@media (max-width: 768px) {
	:root {
		--spacing-xl: 40px;
		--spacing-lg: 24px;
		--spacing-md: 16px;
	}

	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 24px;
	}

	header .container {
		gap: var(--spacing-md);
		padding: 0 var(--spacing-md);
	}

	.main-navigation {
		flex-direction: column;
		gap: 12px;
		width: 100%;
		text-align: center;
	}

	.main-navigation a {
		font-size: 12px;
		letter-spacing: 0.4px;
		padding: var(--spacing-sm) 0;
		display: block;
	}

	footer .container {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}

	footer .container>div {
		align-items: center;
		text-align: center;
	}

	footer .social-links,
	footer .container>div .social-links {
		justify-content: center;
	}

	section {
		padding: var(--spacing-lg) 0;
	}

	.button {
		padding: 12px 24px;
		font-size: var(--fs-xs);
		width: 100%;
	}

	.container {
		padding: 0 var(--spacing-md);
	}
}

@media (max-width: 480px) {
	:root {
		--spacing-xl: 30px;
		--spacing-lg: 20px;
	}

	header .container {
		padding: var(--spacing-md);
	}

	.main-navigation {
		gap: 8px;
	}

	.main-navigation a {
		font-size: 11px;
		letter-spacing: 0.2px;
	}

	h1 {
		font-size: 24px;
		margin-bottom: var(--spacing-md);
	}

	h2 {
		font-size: 20px;
	}

	h3 {
		font-size: 18px;
	}

	.subtitle {
		font-size: var(--fs-lg);
	}

	section {
		padding: var(--spacing-lg) 0;
	}

	footer .social-links {
		justify-content: center;
	}
}

@media (orientation: portrait) and (max-width: 1200px) {
	footer .container {
		grid-template-columns: 1fr;
		justify-items: center;
		row-gap: var(--spacing-lg);
		text-align: center;
	}

	footer .container>div {
		align-items: center;
		text-align: center;
	}

	footer .container>div:nth-child(1),
	footer .container>div:nth-child(2),
	footer .container>div:nth-child(3) {
		align-items: center;
		text-align: center;
	}

	footer .social-links {
		justify-content: center;
	}

	footer .container>div:nth-child(1) .social-links,
	footer .container>div:nth-child(2) .social-links,
	footer .container>div:nth-child(3) .social-links {
		justify-content: center;
	}

	footer .footer-bottom {
		text-align: center;
	}
}

@media (orientation: landscape) and (max-width: 992px) {
	footer .container {
		grid-template-columns: 1fr !important;
		text-align: center !important;
		row-gap: var(--spacing-md) !important;
		align-items: center !important;
		justify-items: center !important;
	}

	footer .container>div {
		align-items: center !important;
		text-align: center !important;
	}

	footer .container>div:nth-child(1),
	footer .container>div:nth-child(2),
	footer .container>div:nth-child(3) {
		text-align: center !important;
		align-items: center !important;
	}

	footer .social-links {
		justify-content: center !important;
	}

	footer .footer-bottom {
		text-align: center !important;
	}
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: transparent;
	/* No background */
	color: #ffffff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: none;
	/* No border */
	text-align: center;
	font-size: 30px;
	box-shadow: none;
	/* No shadow */
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.4s ease;
}

/* Default State -> Blue Icon (for all sections except footer) */
.whatsapp-float::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #00509d;
	/* Match blue icon */
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	animation: whatsappPulse 2.5s ease-out infinite;
}

.whatsapp-float svg {
	width: 44px;
	/* Slightly larger since there is no background */
	height: 44px;
	fill: #00509d;
	/* Corporate Blue */
	transition: fill 0.3s ease, transform 0.3s ease;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
	/* Subtle shadow on the icon itself for depth */
}

/* Footer State -> Yellow Icon */
.whatsapp-float.on-dark::before {
	background-color: #F4C542;
	/* Match yellow icon */
}

.whatsapp-float.on-dark svg {
	fill: #F4C542;
	/* Professional Yellow */
}

.whatsapp-float:hover svg {
	transform: scale(1.15) rotate(10deg);
}

@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
	}

	.whatsapp-float svg {
		width: 28px;
		height: 28px;
	}
}

/* ===== INSTITUTIONAL FOOTER STYLED ===== */
.institutional-footer {
	background-color: var(--primary-deep);
	color: var(--text-inverse);
	padding: 60px 0 0;
	margin-top: 80px;
}

.institutional-footer .container {
	display: flex;
	flex-direction: column;
}

.footer-main-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.2fr;
	gap: 48px;
	padding: 60px 0 40px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Column */
.footer-brand-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-logo {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 8px;
}

.footer-logo img {
	height: 56px;
	width: auto;
}

.brand-description {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.footer-brand-col .social-links {
	display: flex;
	gap: 16px;
	margin-top: 12px;
}

.footer-brand-col .social-links a {
	width: 40px;
	height: 40px;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: linear-gradient(135deg, var(--accent-science), var(--primary-brand));
	color: var(--text-inverse);
	text-decoration: none;
	padding: 0;
	transition: all 0.28s ease;
	flex-shrink: 0;
}

.footer-brand-col .social-links a:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(29, 58, 114, 0.45);
	background: linear-gradient(135deg, var(--primary-brand), var(--accent-science));
	border-color: rgba(255, 255, 255, 0.5);
}

/* Navigation Columns */
.footer-nav-col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-nav-col h4 {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0;
	color: var(--text-inverse);
}

.footer-nav-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-nav-col ul li a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer-nav-col ul li a:hover {
	color: var(--text-inverse);
}

/* Contact Column */
.footer-contact-col {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-contact-col h4 {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0;
	color: var(--text-inverse);
}

.footer-contact-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.footer-contact-item .label {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
}

.footer-contact-item .contact-link {
	color: var(--text-inverse);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer-contact-item .contact-link:hover {
	color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item p {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

/* CTA Button */
.footer-cta-button {
	display: inline-block;
	padding: 12px 20px;
	background-color: var(--primary-brand);
	color: var(--text-inverse);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: 1px solid var(--primary-brand);
	text-align: center;
	width: fit-content;
	margin-top: 8px;
}

.footer-cta-button:hover {
	background-color: rgba(29, 58, 114, 0.8);
	border-color: var(--text-inverse);
}

/* Legal Bar */
.footer-legal-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
	gap: 20px;
	flex-wrap: wrap;
}

.legal-left,
.legal-right {
	flex: 1;
	min-width: 200px;
}

.legal-left p,
.legal-right p {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer */
@media (max-width: 1024px) {
	.footer-main-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.footer-main-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 40px 0 24px 0;
	}

	.footer-legal-bar {
		flex-direction: column;
		text-align: center;
	}

	.legal-left,
	.legal-right {
		min-width: auto;
	}
}

/* ===== BOOKING MODAL STYLES ===== */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(29, 58, 114, 0.4);
	/* Institutional Blue with transparency */
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}

.modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: var(--bg-white);
	width: 90%;
	max-width: 950px;
	/* Slightly wider for better iframe fit */
	height: 85vh;
	border-radius: var(--radius-lg, 12px);
	position: relative;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: scale(0.9) translateY(20px);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	overflow: hidden;
}

.modal-overlay.active .modal-content {
	transform: scale(1) translateY(0);
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-brand);
	z-index: 10;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
	background: var(--primary-brand);
	color: white;
	transform: rotate(90deg) scale(1.1);
}

.modal-body {
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	.modal-content {
		width: 95%;
		height: 90vh;
	}
}

/* CONSOLIDATED STYLES FROM EXTERNAL CSS */
.news-section {
	padding: 100px 0;
}

.featured-research {
	background: var(--bg-cream);
	padding: 100px 0;
	border-top: 1px solid var(--border-thin);
	border-bottom: 1px solid var(--border-thin);
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-bottom: 1px solid var(--border-thin);
	padding-bottom: 24px;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 700;
	color: var(--primary-deep);
	margin: 0;
}

.section-tag {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	color: var(--text-muted);
}

/* CONSOLIDATED STYLES FROM INDEX.HTML */

/* Fix constrained backgrounds by removing global html padding leak */
html {
	padding: 0 !important;
}

.button-institutional,
.button-secondary,
.inline-link {
	font-size: var(--fs-sm) !important;
	letter-spacing: 0.06em !important;
	line-height: 1 !important;
	padding: 16px 32px !important;
}

/* ===== HAMBURGER MENU ===== */
/* ===== REFINED HAMBURGER MENU (MÉIHUĀ ZHĪDÀO STYLE) ===== */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	background: #ffffff;
	border: 1px solid rgba(29, 58, 114, 0.2);
	border-radius: 8px;
	cursor: pointer;
	padding: 0;
	z-index: 1100;
	transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	background-color: #1d3a72;
	/* Azul Institucional */
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
	transform-origin: center;
}

/* Transformación a 'X' */
body.nav-open .nav-toggle span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
	.content-grid-3 {
		grid-template-columns: 1fr 1fr !important;
	}

	.cards-grid {
		grid-template-columns: 1fr 1fr !important;
	}

	.pipeline {
		grid-template-columns: 1fr 1fr !important;
	}

	/* Section header stacking on tablet */
	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
}

/* ===== MOBILE & TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {

	/* Navigation */
	.nav-toggle {
		display: flex !important;
	}

	header .container {
		justify-content: space-between;
	}

	/* Better Logo Alignment for Tablet/Mobile */
	header .logo {
		margin-left: 0 !important;
		/* Reset the -47px offset for clean look */
	}

	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #ffffff;
		/* Blanco limpio */
		flex-direction: column;
		align-items: center;
		/* Centrado como en la referencia */
		gap: 0;
		/* Espaciado controlado por los items */
		padding: 0;
		z-index: 999;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		display: none;
		border-top: 1px solid rgba(0, 0, 0, 0.05);
	}

	.main-navigation li {
		width: 100%;
		text-align: center;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		/* Líneas separadoras */
	}

	.main-navigation li:last-child {
		border-bottom: none;
	}

	.main-navigation li a {
		display: block;
		padding: 18px 20px;
		color: #23201f;
		font-weight: 700;
		text-transform: uppercase;
		font-size: 0.9rem;
		letter-spacing: 0.05em;
		transition: all 0.3s ease;
	}

	/* Resaltado del item activo / hover */
	.main-navigation li a:hover,
	.main-navigation li a.active {
		color: #1d3a72;
		/* Azul Corporativo */
		background: #f8fafc;
	}

	body.nav-open .main-navigation {
		display: flex !important;
		animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	@keyframes slideDown {
		from {
			transform: translateY(-10px);
			opacity: 0;
		}

		to {
			transform: translateY(0);
			opacity: 1;
		}
	}

	header {
		position: relative;
	}

	header .container {
		display: grid !important;
		grid-template-columns: 1fr auto !important;
		align-items: center !important;
		padding: 12px 20px !important;
		min-height: 70px;
	}

	.logo {
		display: block;
	}

	.logo img {
		max-height: 45px !important;
		width: auto !important;
		display: block;
		margin-left: 0 !important;
	}

	/* Top bar - Compact on Tablet */
	.top-bar {
		display: block !important;
	}

	/* Container padding */
	.container {
		padding: 0 20px !important;
	}

	/* ── Hero sections: .container HAS the inline grid style ── */
	.hero-component .container {
		display: flex !important;
		flex-direction: column !important;
		gap: 30px !important;
	}

	.hero-image-container {
		height: 240px !important;
		width: 100% !important;
	}

	/* Hero CTA buttons */
	.hero-cta {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 12px !important;
	}

	.hero-cta a {
		text-align: center !important;
		display: block !important;
		box-sizing: border-box !important;
	}

	/* ── Featured-research inner grids (direct div children of .container) ── */
	.featured-research .container>div[style*="grid"] {
		display: flex !important;
		flex-direction: column !important;
		gap: 30px !important;
	}

	/* Section header stacking */
	.section-header {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 6px !important;
	}

	/* Grids → single column */
	.content-grid-3,
	.cards-grid {
		grid-template-columns: 1fr !important;
	}

	/* Pipeline */
	.pipeline {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}

	/* Section padding */
	.news-section {
		padding: 60px 0 !important;
	}

	.featured-research {
		padding: 60px 0 !important;
	}

	.highlight-wide {
		padding: 60px 0 !important;
	}

	/* Typography & Spacing */
	h1 {
		font-size: 1.6rem !important;
		line-height: 1.2 !important;
		margin-bottom: 12px !important;
	}

	h2 {
		font-size: 1.25rem !important;
		margin-bottom: 8px !important;
	}

	h3 {
		font-size: 1.1rem !important;
	}

	p,
	li,
	.hero-description {
		font-size: 0.95rem !important;
		line-height: 1.5 !important;
	}

	.hero-component .container {
		gap: 20px !important;
	}

	.featured-research .container>div[style*="grid"] {
		gap: 20px !important;
	}

	.content-grid-3,
	.cards-grid,
	.pipeline {
		gap: 16px !important;
	}

	/* Footer */
	.footer-main-grid {
		grid-template-columns: 1fr 1fr !important;
		gap: 40px !important;
		text-align: center !important;
	}

	.footer-nav-col,
	.footer-contact-col,
	.footer-brand-col {
		text-align: center !important;
		align-items: center !important;
	}

	.footer-nav-col ul,
	.footer-contact-col ul {
		padding-left: 0 !important;
		list-style: none !important;
	}

	.footer-legal-bar {
		flex-direction: column !important;
		align-items: center !important;
		gap: 8px !important;
		text-align: center !important;
	}

	.legal-left,
	.legal-right {
		text-align: center !important;
	}

	.footer-cta-button {
		display: block !important;
		width: fit-content !important;
		margin: 0 auto !important;
	}

	/* Footer bottom */
	.footer-bottom {
		flex-direction: column !important;
		gap: 8px !important;
		text-align: center !important;
	}
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
	h1 {
		font-size: 1.4rem !important;
	}

	.hero-image-container {
		height: 200px !important;
	}

	.card-img {
		aspect-ratio: 4 / 3 !important;
	}

	.button-institutional,
	.button-secondary {
		width: 100% !important;
		text-align: center !important;
		box-sizing: border-box !important;
	}
}

/* ===== MOBILE LANDSCAPE (max-width: 900px, landscape) ===== */
@media (orientation: landscape) and (max-width: 900px) {
	.hero-component {
		padding: 40px 0 !important;
	}

	.hero-image-container {
		height: 200px !important;
	}

	.main-navigation {
		top: 100%;
		background: #ffffff;
		max-height: calc(100vh - 70px);
		overflow-y: auto;
	}

	.main-navigation li a {
		padding: 14px 20px;
	}
}


footer .social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px !important;
	height: 48px !important;
	background: transparent !important;
	background-image: none !important;
	border-radius: 50%;
	transition: all var(--transition-fast);
	border: none !important;
	color: transparent;
	position: relative;
	overflow: hidden;
	box-shadow: none !important;
}

footer .social-links {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 18px
}

footer .social-links a svg {
	width: 28px !important;
	height: 28px !important;
	display: block
}

footer .social-links a svg * {
	fill: var(--accent, #F4C542) !important;
	stroke: none !important;
}

.footer-brand-text {
	font-family: var(--font-sans);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--accent-science, #F4C542);
	font-size: 1.15rem;
	letter-spacing: 0.1em;
	display: block;
	margin-bottom: 8px;
}

.footer-brand-col {
	gap: 12px !important;
}

.footer-brand-col .footer-logo:hover {
	transform: none !important;
	opacity: 1 !important;
}

.footer-brand-col .social-links {
	margin-top: 8px !important;
	margin-left: -10px !important;
	/* Offset to align 28px SVG inside 48px circle with left edge */
	gap: 8px !important;
	/* Adjusted spacing between icons */
}

/* Align header logo with footer brand text */
header .logo {
	margin-left: 0 !important;
}

.top-bar-info {
	margin-left: 0 !important;
}

.top-bar-info span {
	margin-right: 24px !important;
}


/* ===================================================================
   SERVICE DETAIL POPUP MODAL
   =================================================================== */

.service-modal-content {
	background: var(--bg-white);
	border: 1px solid var(--border-thin);
	padding: 48px 56px;
	max-width: 520px;
	width: 90%;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
	animation: serviceModalIn 0.25s ease forwards;
}

@keyframes serviceModalIn {
	from {
		opacity: 0;
		transform: scale(0.96) translateY(10px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.service-modal-content h3 {
	font-family: var(--font-serif);
	font-size: var(--fs-xl);
	color: var(--primary-deep);
	margin-bottom: 28px;
	line-height: 1.3;
	padding-right: 32px;
}

.service-modal-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.service-modal-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-family: var(--font-sans);
	font-size: var(--fs-base);
	color: var(--text-muted);
	line-height: 1.5;
}

.service-modal-list li::before {
	content: '→';
	color: var(--accent-science);
	font-weight: 700;
	font-size: var(--fs-base);
	flex-shrink: 0;
	margin-top: 1px;
}

.service-modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: var(--text-muted);
	transition: color 0.2s ease;
	padding: 4px 8px;
}

.service-modal-close:hover {
	color: var(--primary-deep);
}


/* ===================================================================
   SERVICIOS — Numbered cards via CSS counters (no HTML changes)
   =================================================================== */

/* Initialize counter on the grid inside #servicios */
#servicios .content-grid-3 {
	counter-reset: service-counter;
}

/* Each card increments the counter */
#servicios .content-grid-3 .institutional-card {
	counter-increment: service-counter;
	position: relative;
}

/* Render the number as a small badge in the top-right corner of each card */
#servicios .content-grid-3 .institutional-card::before {
	content: counter(service-counter, decimal-leading-zero);
	position: absolute;
	top: 12px;
	right: 16px;
	font-family: var(--font-serif);
	font-size: var(--fs-lg);
	font-weight: 700;
	color: var(--accent-science);
	letter-spacing: 0.05em;
	z-index: 1;
	line-height: 1;
}


/* ===================================================================
   VTIGER CONTACT FORM — formulario-vtiger.html
   =================================================================== */

/* Force all browser form elements to use Inter, not the browser default */
.form-container input,
.form-container textarea,
.form-container button,
.form-container select {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Body styles for the standalone form page */
body:has(.form-container) {
	font-family: var(--font-sans);
	color: var(--text-main);
	background-color: var(--bg-white);
	margin: 0;
	padding: 20px;
	display: flex;
	justify-content: center;
	min-height: 100vh;
	box-sizing: border-box;
}

.form-container {
	width: 100%;
	max-width: 600px;
	background: var(--bg-slate);
	padding: 30px;
	border-radius: 0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
	border: 1px solid var(--border-thin);
	margin-top: 20px;
	height: fit-content;
}

.form-container h2 {
	text-align: center;
	color: var(--primary-deep);
	margin-top: 0;
	margin-bottom: 24px;
	font-size: 24px;
	font-family: var(--font-serif);
	font-weight: 700;
}

.form-container form table {
	width: 100%;
	border-collapse: collapse;
}

.form-container form td {
	padding: 10px 0;
	display: block;
}

/* Hide vTiger's hidden honeypot checkbox columns */
.form-container form td:has(input[type="checkbox"][style*="display:none"]) {
	display: none !important;
}

.form-container form label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 14px;
	color: var(--primary-deep);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: var(--font-sans);
}

.form-container form input[type="text"],
.form-container form input[type="email"],
.form-container form input[type="tel"],
.form-container form input[type="number"],
.form-container form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border-thin);
	border-radius: 0;
	font-size: 15px;
	box-sizing: border-box;
	transition: all 0.3s ease;
	font-family: var(--font-sans);
	color: var(--text-main);
	background: var(--bg-white);
}

.form-container form input:focus,
.form-container form textarea:focus {
	outline: none;
	border-color: var(--primary-brand);
	box-shadow: 0 0 0 3px rgba(29, 58, 114, 0.1);
}

.form-container form input[type="submit"] {
	background-color: var(--primary-deep);
	color: white;
	border: none;
	padding: 16px 28px;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-sans);
	border-radius: 0;
	cursor: pointer;
	width: 100%;
	margin-top: 20px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: background-color 0.3s ease;
}

.form-container form input[type="submit"]:hover {
	background-color: var(--primary-brand);
}

.form-container form input[type="submit"]:disabled {
	background-color: #94a3b8;
	cursor: not-allowed;
}

/* Remove default browser block styles from table elements */
.form-container tbody,
.form-container tr {
	display: block;
	width: 100%;
}

/* FOOTER RESPONSIVE - 1 columna centrada */
@media (max-width:1024px) {

	.footer-main-grid {
		grid-template-columns: 1fr !important;
		text-align: center;
		justify-items: center;
	}

	.footer-main-grid>div {
		align-items: center;
		text-align: center;
	}

}