.site-footer {
	 background-color: #001f3f;
	/* azul oscuro */
	 color: #b0b0b0;
	 font-family: 'Lexend Deca', sans-serif;
	/* 👈 tu fuente */
	 padding-top: 4rem;
	 font-size: 0.95rem;
	 line-height: 1.6;
	/* Layout principal */
	/* Secciones */
	/* Contacto */
	/* Barra inferior */
}
 .site-footer .container {
	 max-width: 1200px;
	 margin: 0 auto;
	 padding: 0 1.5rem;
}
 .site-footer .footer-content {
	 display: grid;
	 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 3rem;
	 padding-bottom: 3rem;
}
 .site-footer .footer-section h2, .site-footer .footer-section h3 {
	 color: #fff;
	 margin-bottom: 1.5rem;
	 font-weight: 600;
}
 .site-footer .footer-section h2.footer-logo {
	 color: #04fb06;
	/* verde brillante */
	 font-size: 1.8rem;
	 text-transform: uppercase;
	 letter-spacing: 1px;
}
 .site-footer .footer-section ul {
	 list-style: none;
	 padding: 0;
	 margin: 0;
}
 .site-footer .footer-section ul li {
	 margin-bottom: 0.8rem;
}
 .site-footer .footer-section ul a {
	 color: #ffd700;
	/* amarillo fuerte */
	 text-decoration: none;
	 transition: all 0.3s ease;
	 display: inline-block;
}
 .site-footer .footer-section ul a:hover {
	 color: #04fb06;
	/* verde brillante en hover */
	 transform: translateX(5px);
}
 .site-footer .footer-section ul .highlight-link {
	 color: #04fb06;
	 font-weight: bold;
	 margin-top: 0.5rem;
}
 .site-footer .footer-section ul .highlight-link:hover {
	 color: #32ff32;
	/* verde más claro en hover */
}
 .site-footer .contact .contact-item {
	 display: flex;
	 align-items: flex-start;
	 margin-bottom: 1rem;
}
 .site-footer .contact .contact-item i {
	 color: #ffd700;
	/* íconos en amarillo */
	 margin-right: 1rem;
	 margin-top: 0.3rem;
}
 .site-footer .contact .contact-item a {
	 color: #b0b0b0;
	 text-decoration: none;
	 transition: color 0.3s;
}
 .site-footer .contact .contact-item a:hover {
	 color: #fff;
}
 .site-footer .footer-bottom {
	 background-color: #000;
	/* negro profundo */
	 padding: 1.5rem 0;
	 font-size: 0.8rem;
	 border-top: 1px solid rgba(255, 255, 255, 0.1);
}
 .site-footer .footer-bottom .bottom-content {
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 text-align: center;
	 gap: 1rem;
}
 @media (min-width: 768px) {
	 .site-footer .footer-bottom .bottom-content {
		 flex-direction: row;
		 justify-content: space-between;
		 text-align: left;
	}
}
 .site-footer .footer-bottom .legal-info {
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: center;
	 gap: 0.5rem;
	 opacity: 0.8;
}
 .site-footer .footer-bottom .legal-info .separator {
	 color: #04fb06;
	/* separadores en verde */
	 opacity: 0.7;
}
 