/* Estilos para el bloque de contacto del pie de página */
.rectangulo-form-contacto {
	background: #000000;
	border-radius: 15px 15px 0 0;
	box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	width: 100%;
}

.rectangulo-form-contacto .social-icon {
	width: 28px;
	height: 28px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.rectangulo-form-contacto .social-icon:hover {
	background: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rectangulo-form-contacto .contact-info a {
	color: #007bff !important;
	font-weight: 600;
	text-decoration: none !important;
}

.rectangulo-form-contacto .contact-info a:hover {
	color: #0056b3 !important;
}

.rectangulo-form-contacto .support-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

.rectangulo-form-contacto .logo-solutioma {
	filter: brightness(1.1);
}

.rectangulo-form-contacto .logo-accio {
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.rectangulo-form-contacto .logo-accio:hover {
	opacity: 1;
}

/* Añadir padding bottom al body para evitar que el contenido se oculte cuando hay bloque de contacto */
body:has(.rectangulo-form-contacto) {
	padding-bottom: 200px;
}

/* Fallback para navegadores que no soportan :has() */
.page-with-contact-footer {
	padding-bottom: 200px;
}