/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 26 2025 | 18:14:17 */
:root {
	--brand-green: #3A5A40;
	--brand-yellow: #FBBF24;
	--text-dark: #1F2937;
	--text-light: #4B5563;
	--bg-light: #F9FAFB;
	--bg-white: #FFFFFF;
	--bg-dark: #111827;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
body {
	font-family: 'Poppins', sans-serif;
	background-color: var(--bg-light);
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}
section {
	padding: 4rem 0;
}
h1, h2, h3 {
	font-weight: 700;
}
h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.5rem;
}
a {
	text-decoration: none;
	color: inherit;
}
/* --- Header / Navbar --- */
.main-header {
	background-color: transparent;
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 50;
	box-shadow: none;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.main-header.scrolled {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
}
.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.logo-icon {
	background-color: var(--brand-yellow);
	color: var(--text-dark);
	font-weight: 700;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 1.25rem;
}
.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
}
.nav-links {
	/* Por defecto en móvil, esto se anula en la media query de escritorio */
	display: none; 
	gap: 1.5rem;
	align-items: center;
}
.nav-links a {
	font-weight: 500;
	color: var(--text-light);
	transition: color 0.3s;
	padding: 0 0.5rem;
}
.nav-links a:hover {
	color: var(--brand-green);
}
.nav-social-icon {
	width: 24px;
	height: 24px;
	vertical-align: middle;
	display: block;
	filter: grayscale(100%) opacity(0.7);
	transition: filter 0.3s;
}
.nav-links a:hover .nav-social-icon {
	filter: grayscale(0%) opacity(1);
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.btn-contact {
	background-color: var(--brand-green);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	transition: background-color 0.3s, transform 0.2s;
	display: inline-block;
}
.btn-contact:hover {
	background-color: #2f4833;
	transform: translateY(-2px);
}
#mobile-menu-button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px 5px;
	display: block;
	/* Asegura que el botón se vea en móvil */
	position: relative;
}
#mobile-menu-button .bar {
	display: block;
	width: 25px;
	height: 3px;
	border-radius: 3px;
	background-color: var(--brand-green);
	margin: 5px 0;
	transition: all 0.3s ease-in-out;
}
/* --- Animación del Menú Móvil (Hamburguesa) --- */
#mobile-menu-button.active .bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
#mobile-menu-button.active .bar:nth-child(2) {
	opacity: 0;
}
#mobile-menu-button.active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}
/* --- ESTILOS DEL MENÚ DESPLEGABLE EN MÓVIL --- */
#mobile-menu {
	/* Estado base (Oculto) */
	display: none;
	position: absolute; /* Para que se superponga */
	width: 100%;
	top: 100%;
	left: 0;
	background-color: var(--bg-white); /* Usamos el fondo blanco para el desplegable */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding-bottom: 1rem;
	border-top: 1px solid #E5E7EB;
	z-index: 49; /* Menor que el header sticky (50) para no taparlo si se desplaza */
}
#mobile-menu.active {
	/* Estado visible (Activado por JS) */
	display: block;
}
#mobile-menu a {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--brand-green); /* Color principal */
	font-weight: 500;
	text-align: center;
}
#mobile-menu .btn-contact {
	display: block;
	text-align: center;
	margin: 0.5rem auto;
	width: 80%; /* Para que se vea como un botón */
}

/* --- Centrado Horizontal de los Enlaces Sociales en el Menú Móvil --- */

/* 1. Estilo para el contenedor de los enlaces sociales */
#mobile-menu .mobile-social-links {
    /* Clave: Usar Flexbox para el centrado */
    display: flex;
    
    /* Clave: Centra los elementos horizontalmente */
    justify-content: center;
    
    /* Añade espacio verticalmente para separarlos de los enlaces de texto */
    padding: 1rem 0;
    gap: 1.5rem; /* Espacio entre los iconos */
}

/* 2. Sobrescribir estilos genéricos (los enlaces ya no son display: block) */
#mobile-menu .mobile-social-links a {
    /* Sobrescribe la regla general 'display: block' */
    display: inline-block; 
    
    /* Quitar padding vertical excesivo si lo tenian de los enlaces de texto */
    padding: 0; 
}

/* 3. Estilos de los iconos (ya tienes esta clase, la ajustamos) */
.nav-social-icon {
	/* Asegura que no tienen márgenes que interfieran */
	margin: 0;
}
/* Bloque 01: SECCIÓN HERO */
#hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 0 80px 0;
	min-height: 70vh;
	background-color: #ffffff;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	text-align: center;
}
#hero .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.hero-content {
	flex: 1;
	max-width: 100%;
	padding-right: 0;
	order: 2;
}
.hero-content h1 {
	font-size: 2.8rem;
	line-height: 1.2;
	margin-bottom: 24px;
	margin-top: 1.5rem;
}
.hero-content h1 span {
	color: var(--brand-yellow);
}
.hero-content .subtitle {
	font-size: 1.2rem;
	margin-bottom: 16px;
	font-weight: 600;
	color: var(--brand-green);
}
.hero-content p {
	font-size: 1rem;
	color: #5d5d5d;
	margin-bottom: 32px;
	line-height: 1.6;
}
.hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
}
.btn-primary {
	background-color: var(--brand-green);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	transition: background-color 0.3s, transform 0.2s;
	display: inline-block;
}
.btn-primary:hover {
	background-color: #2f4833;
	transform: translateY(-2px);
}
.btn-secondary {
	background-color: transparent;
	color: var(--brand-green);
	border: 2px solid var(--brand-green);
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	transition: background-color 0.3s, color 0.3s;
	display: inline-block;
}
.btn-secondary:hover {
	background-color: var(--brand-green);
	color: white;
}
.hero-image {
	flex: 1;
	max-width: 70%;
	text-align: center;
	order: 1;
}
.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.celebrity-quote {
	grid-column: 1 / -1;
	text-align: center;
	padding: 0 1rem;
}
.celebrity-quote p {
	font-family: 'Dancing Script', cursive;
	color: var(--text-light);
	font-size: 1.5rem;
	line-height: 1.4;
	white-space: normal;
}
/* --- Marquee Section (Carrusel Infinito) --- */
#marquee {
	background-color: var(--brand-yellow);
	padding: 1rem 0;
	transform: rotate(-1deg) scale(1.1);
	overflow: hidden;
	width: 100%;
	/* Cambiado de 100vw a 100% */
	margin-top: 4rem;
}
.marquee-content {
	display: flex;
	width: 200%;
	white-space: nowrap;
	font-weight: 600;
	font-size: 1.25rem;
	animation: marquee 30s linear infinite;
	align-items: center;
}
.marquee-content span {
	margin: 0 2rem;
}
.marquee-content .separator {
	color: #D97706;
}
@keyframes marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-25%);
	}
}
/* Bloque 05: SECCIÓN SOBRE MÍ */
#about {
	padding: 100px 0;
	background-color: #3a5a40;
	color: #f8f0e5;
	margin-top: 4rem;
}
.about-header {
	max-width: 800px;
	margin: 0 auto 60px auto;
	text-align: center;
}
.about-title {
	margin-bottom: 24px;
}
.about-title h2 {
	font-size: 2.2rem;
	margin-top: 12px;
	color: #ffffff;
}
.about-paragraph {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #f8f0e5;
}
.stats {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	margin-bottom: 30px;
	text-align: center;
}
.stats-item span {
	font-size: 3.5rem;
	font-weight: 700;
	color: #fbbf24;
	display: block;
}
.stats-item p {
	font-size: 1.2rem;
	color: #f8f0e5;
	margin-top: 8px;
}
.about-actions {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.signature {
	font-family: 'Dancing Script', cursive;
	font-size: 1.75rem;
	color: #ffffff;
}
.btn-download {
	background-color: #fbbf24;
	color: #333;
	border-radius: 8px;
	font-weight: 600;
	transition: background-color 0.3s, transform 0.2s;
	display: inline-block;
}
.btn-download:hover {
	background-color: #f59e0b;
	color: #333;
	transform: translateY(-2px);
}
#about .btn-download {
	font-size: 1.1rem;
	padding: 14px 32px;
}
/* --- Título de Sección Genérico --- */
.section-title {
	text-align: center;
	margin-bottom: 3rem;
}
.section-title .subtitle {
	font-weight: 600;
	color: var(--brand-green);
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}
.section-title h2 {
	font-size: 2.2rem;
	color: var(--text-dark);
}
/* --- Estilos para tarjetas de servicio (reutilizados) --- */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
.service-card {
	background-color: var(--bg-light);
	padding: 2.5rem 2rem;
	border-radius: 12px;
	text-align: center;
	border: 1px solid #E5E7EB;
	transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.service-icon {
	display: inline-flex;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--brand-green);
	color: var(--brand-yellow);
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}
.service-icon i {
	width: 32px;
	height: 32px;
}
.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
}
.service-card p {
	color: var(--text-light);
	line-height: 1.7;
}
/* --- Estilos para tarjetas de proyecto (reutilizados) --- */
.projects-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
.project-card {
	background-color: var(--bg-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.project-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
}
.project-info {
	padding: 1.5rem;
}
.project-category {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--brand-green);
	background-color: #e0e8e2;
	border-radius: 99px;
	margin-bottom: 1rem;
}
.project-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.project-info a {
	font-weight: 600;
	color: var(--brand-green);
	transition: color 0.3s;
}
.project-info a:hover {
	color: #2f4833;
}
/* --- (NUEVO) Bloque: En los Medios --- */
#media {
	background-color: var(--bg-white);
}
.media-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}
.media-logo {
	background-color: var(--bg-light);
	padding: 1.5rem;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #E5E7EB;
}
.media-logo img {
	max-width: 100%;
	height: 40px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 0.3s, opacity 0.3s;
}
.media-logo:hover img {
	filter: grayscale(0%);
	opacity: 1;
}
/* --- (NUEVO) Sección Creación de Contenido --- */
#content-creation {
	background-color: var(--bg-white);
}
#content-creation .content-text {
	max-width: 800px;
	margin: 0 auto 3rem auto;
	text-align: center;
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.8;
}
#content-creation .cta-button {
	display: block;
	max-width: 300px;
	margin: 0 auto;
	background-color: var(--brand-green);
	color: white;
	padding: 0.9rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	transition: background-color 0.3s, transform 0.2s;
	text-align: center;
	font-size: 1.1rem;
}
#content-creation .cta-button:hover {
	background-color: #2f4833;
	transform: translateY(-2px);
}
/* --- (NUEVO) Grid de Instagram --- */
.instagram-grid-title {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-top: 4rem;
	margin-bottom: 2rem;
}
.instagram-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* Cambiado de 1fr 1fr */
	gap: 0.5rem;
	/* Reducido de 1rem */
}
.insta-post {
	position: relative;
	display: block;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background-color: var(--bg-light);
}
.insta-post img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.insta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.insta-overlay i {
	width: 48px;
	height: 48px;
}
.insta-post:hover .insta-overlay {
	opacity: 1;
}
.insta-post:hover img {
	transform: scale(1.05);
}
/* --- (NUEVO) Grid de Logos de Compañías (en Pestaña) --- */
.company-logos-grid {
	display: flex; /* Cambiado a flex para centrar */
	justify-content: center; /* Centra horizontalmente */
	grid-template-columns: 1fr 1fr;
	/* 2 columnas en móvil, aunque flexbox tomará prioridad */
	gap: 1.5rem;
	align-items: center;
	max-width: 900px;
	/* Ancho máximo */
	margin: 2rem auto 0 auto; /* Centrado y margen superior ajustado */
}
.company-logo-item {
	background-color: var(--bg-light);
	padding: 1.5rem;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #E5E7EB;
	max-width: 150px; /* Ancho máximo definido para evitar que sean enormes */
}
.company-logo-item img {
	max-width: 100%;
	height: 40px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 0.3s, opacity 0.3s;
}
.company-logo-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}
/* --- (NUEVO) Estilos para Pestañas (Tabs) --- */
#extra-info {
	background-color: var(--bg-white);
	padding-top: 4rem;
	padding-bottom: 6rem;
}
.tab-nav {
	display: flex;
	flex-wrap: wrap;
	/* Para que en móvil no se rompa */
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2.5rem;
	border-bottom: 2px solid #E5E7EB;
}
.tab-link {
	background: none;
	border: none;
	padding: 1rem 1.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-light);
	cursor: pointer;
	transition: color 0.3s, border-bottom 0.3s;
	border-bottom: 4px solid transparent;
	transform: translateY(2px);
	/* Para alinear con el borde inferior */
}
.tab-link:hover {
	color: var(--text-dark);
}
.tab-link.active {
	color: var(--brand-green);
	border-bottom-color: var(--brand-green);
}
/* ----- INICIO DE LA MODIFICACIÓN ----- */
.tab-link:focus {
	outline: none;
	/* Elimina el recuadro de enfoque */
}
/* ----- FIN DE LA MODIFICACIÓN ----- */
.tab-panel {
	display: none;
	animation: fadeIn 0.5s ease-in-out;
	/* Añadimos padding para que el contenido no esté pegado */
	padding-top: 1rem;
}
.tab-panel.active {
	display: block;
}
/* Animación simple de fade-in */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* Ajustes para el contenido movido dentro de las pestañas */
.tab-panel .full-width-text {
	margin-bottom: 2.5rem;
}
/* Estilos para alinear texto en los párrafos de pestañas */
.text-left {
	text-align: left;
}
.mt-4 {
	margin-top: 1rem;
}
/* Simulación de mt-4 de Tailwind */
/* --- Estilos para la cascada de Medios --- */
.media-item-card:hover {
	border-color: var(--brand-green, #007bff);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.spotify-card {
	border: 1px solid #1DB954 !important;
	background-color: #f6fff9 !important;
}
.spotify-card:hover {
	border-color: #1DB954 !important;
}
.media-cascada-list .media-item-card:nth-child(2) {
	margin-left: 10px;
}
.media-cascada-list .media-item-card:nth-child(3) {
	margin-left: 20px;
}
.media-cascada-list .media-item-card:nth-child(4) {
	margin-left: 30px;
}

/* --- Responsive Styles (Tablet y Escritorio) --- */
@media (min-width: 768px) {
	h1 {
		font-size: 3.75rem;
	}
	h2 {
		font-size: 2.5rem;
	}
	.section-title h2 {
		font-size: 2.5rem;
	}
	section {
		padding: 6rem 0;
	}
	/* --- Hero Desktop --- */
	#hero {
		padding-top: 4rem;
		padding-bottom: 0;
		flex-direction: row;
		text-align: left;
	}
	#hero .container {
		flex-direction: row;
		align-items: center;
		overflow-x: visible;
	}
	.hero-content {
		max-width: 55%;
		padding-right: 2rem;
		order: 1;
		text-align: left;
	}
	.hero-content h1 {
		font-size: 3.8rem;
		margin-top: 0;
	}
	.hero-content .subtitle {
		font-size: 1.5rem;
	}
	.hero-content p {
		font-size: 1.1rem;
	}
	.hero-actions {
		justify-content: flex-start;
	}
	.hero-image {
		max-width: 45%;
		order: 2;
	}
	/* --- Nav Desktop --- */
	.nav-links {
		display: flex; /* Muestra el menú de navegación estándar */
	}
	.btn-contact {
		display: inline-block;
	}
	#mobile-menu-button {
		display: none; /* Oculta el botón hamburguesa */
	}
	#mobile-menu {
		display: none; /* Asegura que el menú desplegable esté oculto en escritorio */
	}
	/* --- About Desktop --- */
	.stats {
		flex-direction: row;
		gap: 60px;
	}
	.about-title h2 {
		font-size: 3.2rem;
	}
	.about-paragraph {
		font-size: 1.25rem;
	}
	/* --- Nuevas Secciones Desktop --- */
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.projects-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.company-logos-grid {
		/* Añadida regla responsive */
		grid-template-columns: repeat(4, 1fr);
	}
	.media-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	#content-creation .content-text {
		font-size: 1.25rem;
	}
	/* --- (NUEVO) Instagram Grid Desktop --- */
	.instagram-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
		/* Restauramos el gap original para desktop */
	}
	/* --- Footer Desktop --- */
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr;
		text-align: left;
	}
	.footer-grid > div:nth-child(1) {
		text-align: left;
	}
	.footer-grid > div:nth-child(2) {
		text-align: left;
	}
	.footer-grid > div:nth-child(3) {
		text-align: right;
	}
	.footer-links {
		padding-left: 0;
	}
	.social-links {
		justify-content: flex-end;
	}
	/* --- Ajustes para la cita en Escritorio --- */
	.celebrity-quote {
		padding: 0;
	}
	.celebrity-quote p {
		font-size: 1.7rem;
		white-space: nowrap;
	}
}
/* --- Estilos para el Modal/Popup (Unificados) --- */
.modal {
	display: none;
	/* Oculto por defecto */
	position: fixed;
	/* Fijo en la pantalla */
	z-index: 1000;
	/* Asegura que esté encima de todo */
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	/* Habilita el scroll si el contenido es demasiado largo */
	background-color: rgba(0,0,0,0.7);
	/* Fondo oscuro semitransparente */
	padding-top: 60px;
}

.modal.active {
	display: block;
	/* Muestra el modal cuando tiene la clase 'active' */
}

.modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	/* 5% superior y centrado horizontalmente */
	padding: 30px;
	border-radius: 10px;
	width: 90%;
	/* Ancho base */
	max-width: 600px;
	/* Ancho máximo para pantallas grandes */
	position: relative;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	animation: slideIn 0.3s ease-out;
	/* Animación de entrada */
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.close-button {
	color: #aaa;
	float: right;
	font-size: 30px;
	font-weight: bold;
	background: none;
	border: none;
	cursor: pointer;
	line-height: 1;
	position: absolute;
	top: 10px;
	right: 20px;
}

.close-button:hover {
	color: #333;
}

/* --- Estilos para el Footer Sencillo (Centrado Vertical CORREGIDO) --- */

#simple-footer {
    background-color: var(--bg-light, #F9FAFB); 
    color: var(--text-light, #4B5563); 
    padding: 2rem 0; /* Mantenemos un padding simétrico arriba y abajo */
    text-align: center;
}

.footer-simple-content {
    /* CLAVE: Convertimos el contenedor en un Flex Container */
    display: flex;
    
    /* Centra los elementos horizontalmente (ya lo hacía 'text-align: center', pero es más explícito) */
    justify-content: center; 
    
    /* CLAVE: Centra los elementos verticalmente (los centra en el eje transversal) */
    align-items: center; 
    
    /* Aseguramos que los elementos se apilen verticalmente, no uno al lado del otro */
    flex-direction: column; 
    
    gap: 0.5rem;
    
    /* Aseguramos que el contenedor ocupe el espacio para que el centrado sea visible */
    height: 100%; 
}

/* El resto de estilos se mantiene igual: */
.copyright-text {
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--brand-green, #3A5A40); 
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--text-dark, #1F2937);
    text-decoration: underline;
}

.legal-links span {
    margin: 0 0.5rem;
    color: #A0AEC0;
}