body * {
	color: #606062 !important;
	font-style: normal;
}

.cssload-container span {
	background-color: #08539E;
}

.ui-to-top {
	background: #08539E !important;
	color: white !important;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropbtn {
	background-color: #4CAF50;
	color: white;
	padding: 12px;
	font-size: 16px;
	border: none;
	cursor: pointer;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 250px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	padding: 12px 16px;
	z-index: 1;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content:after,
.dropdown-content:before {
	bottom: 100%;
	left: 89%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.dropdown-content:after {
	border-color: rgba(136, 183, 213, 0);
	border-bottom-color: #f9f9f9;
	border-width: 10px;
}

.dropdown-content:before {
	border-width: 12px;
}

.dropdown-content a:hover {
	background-color: #f1f1f1
}

.show {
	display: block;
}

#search-container {
    padding: 20px;
    background-color: #08539E;
    text-align: center;
}

#search-input {
    width: 100%;
    padding: 8px;
    margin-right: 10px;
}

#hide-search {
    padding: 8px 15px;
    cursor: pointer;
}

#search-results {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
    text-align: left;
}

#search-results div {
    padding: 10px;
    cursor: pointer;
}

#search-results div:hover {
    background-color: #f1f1f1;
}

.float-button {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 35px;
	right: 20px;
	background-color: #1ABC9C;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 40px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background-color 0.3s, transform 0.3s;
	cursor: pointer;
}

.float-button:hover {
	background-color: #08539E;
	transform: scale(1.1);
	color: white!important;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15), 0 3px 5px rgba(0, 0, 0, 0.1);
}

.float-menu {
	display: none;
	position: fixed;
	bottom: 100px;
	right: 20px;
	z-index: 100;
	flex-direction: column;
	align-items: center;
}

.float-menu a,
.float-menu .ai-button {
	width: 60px;
	height: 60px;
	background-color: #1ABC9C;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	transition: background-color 0.3s, transform 0.3s;
}

.float-menu a:hover,
.float-menu .ai-button:hover {
	background-color: #08539E;
	transform: scale(1.1);
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15), 0 3px 5px rgba(0, 0, 0, 0.1);
}
.footer-box {
  	text-align: left;
  	padding: 20px;
}
.footer-box h5 {
  	color: white;
  	font-weight: 600;
}
.footer-box ul {
  	list-style-type: none;
  	padding: 0;
  	margin: 0;
}
.footer-box ul li {
  	color: white;
  	margin: 5px 0;
}

.chat-container {
    display: flex;
    position: fixed;
    bottom: 100px;
    right: 80px;
    z-index: 100;
    border: none;
    width: 275px;
    height: 430px;
    background-color: white!important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    overflow: hidden;
    flex-direction: column;
    margin-right: 5px;
    flex-direction: column;
}

.chat-header {
    background-color: #08539E;
    color: white!important;
    padding: 10px;
    text-align: center;
    flex-shrink: 0;
}

.chat-messages {
    flex: 1;
    padding: 5px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
}

.chat-input-container {
    display: flex;
    border-top: 1px solid #ddd;
    flex-shrink: 0;
}

.chat-input {
    flex: 1;
    padding: 10px;
}

.chat-send-button {
    padding: 10px 20px;
    background-color: #08539E;
    color: white!important;
    border: none;
    cursor: pointer;
}

/* Estilo para .servicios-span */
.servicios-span {
    cursor: pointer;
    color: #007bff;
/*    font-weight: bold;*/
    transition: color 0.3s ease;
}

.servicios-span:hover {
    color: #0056b3; /* Color del texto al pasar el mouse */
}

/* Ajuste para la posición del dropdown */
.servicios-img {
    position: relative; /* Necesario para que el dropdown esté posicionado correctamente */
}

footer a:hover {
  text-decoration: none;
}
footer img {
  transition: transform 0.3s ease;
}
footer img:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  	0% {
    	opacity: 0;
    	transform: translateY(20px);
  	}
  	100% {
    	opacity: 1;
    	transform: translateY(0);
 	}
}


@media (max-width: 768px) {
	.flecha {
		display: none !important;
	}

	.div-background {
		height: 15vh !important;
	}

	.p-descripcion {
		font-size: 14px !important;
	}

	.img-logo {
		width: 250px !important;
		height: 50px !important;
		left: -25px !important;
		position: relative;
	}

	.logo-footer {
		width: 190px !important;
	}

	.logo-footer{
		width: 190px!important;
	}
	.img-logo-footer{
		height: 50px!important;
		float: none!important;
	}
}