@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 14px;
	font-optical-sizing: auto;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-style: normal;
}

body {
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	font-weight: normal;
}

ul {
	list-style: none;
}

.container {
	max-width: 1180px;
	margin: 0 auto;
}

.sub-titulo {
	font-size: 1.75rem;
	font-weight: 500;
	color: #04297c;
}

.bg-azul {
	background-color: #04297c;
	color: white;
}

.d-none {
	display: none !important;
}

.informacion_social {
	display: flex !important;
	align-items: center;
	align-content: center;
}
.informacion_social li {
	margin-left: 10px;
}
.informacion_social li a {
	height: 30px;
	width: 30px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}
.informacion_social li a svg {
	color: white;
}
.informacion_social li.icon_instagram a {
	background-color: #ea2c59;
}
.informacion_social li.icon_youtube a {
	background-color: #cb2027;
}
.informacion_social li.icon_linkedin a {
	background-color: #0274b3;
}
.informacion_social .icon_instagram,
.informacion_social .icon_youtube,
.informacion_social .icon_linkedin {
	font-size: 20px;
}

header {
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}
header.fixed {
	position: fixed;
	background-color: #ffffff; /* Cambia este color según tu diseño */
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Añade sombra para destacar */
}
header .header_informaciones {
	background-color: #04297c;
	color: white;
}
@media (max-width: 768px) {
	header .header_informaciones {
		display: none;
	}
}
header .header_informaciones .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 40px;
}
header .header_informaciones .container .informacion_contacto {
	display: flex;
}
header .header_informaciones .container .informacion_contacto li {
	margin-right: 20px;
}
header .header_navegacion {
	position: relative;
	height: 60px;
}
@media (min-width: 769px) {
	header .header_navegacion {
		height: 100px;
	}
}
header .header_navegacion .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	padding: 1rem;
}
@media (min-width: 769px) {
	header .header_navegacion .container {
		height: 100px;
		padding: initial;
	}
}
header .header_navegacion .container .logo {
	position: relative;
	z-index: 100;
	padding-top: 0.5rem;
}
@media (max-width: 768px) {
	header .header_navegacion .container .logo {
		order: 1;
	}
}
header .header_navegacion .container .logo img {
	max-width: 100px;
	position: absolute;
	top: -25px;
	left: -30px;
}
@media (min-width: 769px) {
	header .header_navegacion .container .logo img {
		max-width: 170px;
		top: -40px;
		left: initial;
	}
}
header .header_navegacion .container .menu #menu {
	display: none;
}
header .header_navegacion .container .menu .mega-menu {
	cursor: pointer;
	display: flex;
	align-items: center;
	padding: 10px;
	border-radius: 5px;
	background-color: #04297c;
	color: white;
}
header .header_navegacion .container .menu .mega-menu .bi-list {
	margin-right: 10px;
}
header .header_navegacion .container .menu .mega-menu .menu-text {
	font-size: 1rem;
}
header .header_navegacion .container .menu .mega-menu-list {
	visibility: hidden;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	flex-direction: column;
	background-color: white;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	z-index: 1000;
}
header .header_navegacion .container .menu .mega-menu-list li {
	border-bottom: 1px solid #005aff;
}
header .header_navegacion .container .menu .mega-menu-list li:last-child {
	border-bottom: none;
}
header .header_navegacion .container .menu .mega-menu-list li a {
	padding: 10px 20px;
	display: block;
	color: #04297c;
	background-color: white;
	text-decoration: none;
}
header .header_navegacion .container .menu .mega-menu-list li a:hover {
	background-color: #005aff;
	color: white;
}
@media (max-width: 768px) {
	header
		.header_navegacion
		.container
		.menu
		.mega-menu-list
		li
		a.hidden-movil {
		display: none;
	}
}
header .header_navegacion .container .menu #menu:checked ~ .mega-menu-list {
	visibility: visible;
	opacity: 1;
	max-height: 500px;
}
@media (min-width: 769px) {
	header .header_navegacion .container .menu .mega-menu {
		display: none;
	}
	header .header_navegacion .container .menu .mega-menu-list {
		visibility: visible;
		overflow: visible;
		opacity: 1;
		max-height: none;
		display: flex;
		flex-direction: row;
		position: relative;
		background-color: transparent;
		align-items: center;
		height: 100px;
		top: auto;
		left: auto;
	}
	header .header_navegacion .container .menu .mega-menu-list li {
		border-bottom: none;
	}
	header .header_navegacion .container .menu .mega-menu-list li a {
		padding: 5px 20px;
		background-color: transparent;
	}
	header .header_navegacion .container .menu .mega-menu-list li a:hover {
		background-color: #04297c;
		color: white;
	}
	header .header_navegacion .container .menu .mega-menu-list li .sub-menu {
		display: none;
		position: absolute;
		z-index: 200;
		top: 100%;
		left: 0;
		background-color: #04297c;
		padding: 0;
		list-style: none;
		margin: 0;
		width: 200px;
	}
	header .header_navegacion .container .menu .mega-menu-list li .sub-menu li {
		border-bottom: 1px solid #005aff;
	}
	header
		.header_navegacion
		.container
		.menu
		.mega-menu-list
		li
		.sub-menu
		li
		a {
		padding: 10px;
		color: white;
		display: block;
		text-decoration: none;
		line-height: initial;
	}
	header
		.header_navegacion
		.container
		.menu
		.mega-menu-list
		li
		.sub-menu
		li
		a:hover {
		background-color: #005aff;
	}
	header .header_navegacion .container .menu .mega-menu-list li.has-submenu {
		position: relative;
	}
	header
		.header_navegacion
		.container
		.menu
		.mega-menu-list
		li.has-submenu:hover
		.sub-menu {
		display: block;
	}
}
header .header_navegacion .container .contacto-boton {
	background-color: rgb(197, 48, 48) !important;
	color: white !important;
	cursor: pointer;
	border-radius: 35px;
	border: 0 solid transparent;
	box-shadow: none;
	text-decoration: none !important;
	font-weight: normal;
	text-transform: uppercase;
	margin: 5px 20px;
}
@media (min-width: 769px) {
	header .header_navegacion .container .contacto-boton {
		padding: 10px 20px !important;
		margin: auto 0 auto 200px;
		display: initial !important;
	}
}
header .header_navegacion .container .contacto-boton:hover {
	background-color: darkred;
}
@media (min-width: 769px) {
	header .header_navegacion .container .informacion_social {
		display: none !important;
	}
}
@media (max-width: 768px) {
	header .header_navegacion .container .informacion_social {
		order: 2;
	}
}

main .hero {
	position: relative;
	width: 100%;
	height: 70vh;
}
@media (min-width: 769px) {
	main .hero {
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-image: url("../images/sliders/slider-aseo-desktop-1920x650.webp");
	}
}
main .hero .hero-content {
	position: absolute;
	/*top: 50%;*/
	bottom: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
	color: white;
	padding: 20px;
}
@media (max-width: 768px) {
	main .hero .hero-content {
		width: 90%;
	}
}
main .hero .hero-content h1 {
	font-size: 2.5em;
	margin-bottom: 10px;
}
main .hero .hero-content p {
	font-size: 1.2em;
}
main .carousel-section {
	text-align: center;
	padding: 20px;
}
main .carousel-section .sub-titulo {
	margin: 30px auto 50px;
}
main .carousel-section .carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: auto;
}
main .carousel-section .carousel .carousel-images {
	display: flex;
	transition: transform 0.5s ease-in-out;
	gap: 10px;
}
main .carousel-section .carousel .carousel-images img {
	width: 100%;
	flex-shrink: 0;
	max-width: 230px;
	border-radius: 5px;
	height: auto;
}
main .carousel-section .carousel button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	z-index: 1;
}
main .carousel-section .carousel button:focus {
	outline: none;
}
main .carousel-section .carousel button.prev {
	left: 10px;
}
main .carousel-section .carousel button.next {
	right: 10px;
}
main .box-contenido,
main .page-article .container {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 30px 0;
}
@media (max-width: 768px) {
	main .box-contenido,
	main .page-article .container {
		padding: 30px 25px;
		flex-direction: column;
	}
}
main .box-contenido .texto,
main .box-contenido .imagen,
main .page-article .container .texto,
main .page-article .container .imagen {
	flex: 1;
}
main .box-contenido .texto,
main .page-article .container .texto {
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 300;
}
main .box-contenido .texto p,
main .page-article .container .texto p {
	margin-bottom: 1.5rem;
}
main .box-contenido .imagen,
main .page-article .container .imagen {
	display: flex;
	justify-content: center;
	align-items: center;
}
main .box-contenido .imagen img,
main .page-article .container .imagen img {
	max-width: 400px;
	height: auto;
}
@media (max-width: 768px) {
	main .box-contenido .imagen img,
	main .page-article .container .imagen img {
		width: 100%;
	}
}
main .page-article .container .imagen img {
	max-width: initial;
}
main .box-empresa-aseo {
	background-image: url("../images/bg-tgf-clean-movil_1.jpeg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	width: 100%;
	height: 620px;
}
@media (min-width: 769px) {
	main .box-empresa-aseo {
		background-image: url("../images/bg-tgf-clean.jpeg");
	}
}
main .box-empresa-aseo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 85, 170, 0.4); /* azul con opacidad */
    z-index: 1;
}
main .box-empresa-aseo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 85, 170, 0.4); /* azul con opacidad */
    z-index: 1;
}
main .box-empresa-aseo .texto-central {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 100%;
	padding: 0 20px 50px;
}
main .box-empresa-aseo .texto-central p {
	max-width: 800px;
	font-size: 1.25rem;
	line-height: 1.5rem;
	text-align: center;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
	color: white;
	margin: 0;
	z-index:2;
}
@media (max-width: 768px) {
	main .box-empresa-aseo .texto-central p {
		font-size: 1.5rem !important;
		line-height: 2rem !important;
	}
	main .box-servicios .servicios figure {
    	max-width: none !important;
    }
}
main .box-servicios {
	text-align: center;
	padding: 50px 0;
}
main .box-servicios h2 {
	font-weight: normal;
	margin-bottom: 20px;
	font-size: 2rem;
	color: #04297c;
}
main .box-servicios .servicios {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
main .box-servicios .servicios figure {
	flex: 1 1 calc(25% - 20px);
	max-width: calc(25% - 20px);
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
}
main .box-servicios .servicios figure a {
	text-decoration: none;
	color: inherit;
}
main .box-servicios .servicios figure a img {
	width: 100%;
	height: auto;
	display: block;
}
main .box-servicios .servicios figure a figcaption {
	margin-top: 10px;
}
main .box-servicios .servicios figure a figcaption h3 {
	font-weight: bold;
    font-size: 1.25rem;
    margin: 0 0 1rem;
    color: #062a7c;
}

footer .container {
	display: flex;
	gap: 15px;
	padding: 50px 0;
	color: white;
}
@media (max-width: 768px) {
	footer .container {
		padding: 50px 25px;
		flex-direction: column;
	}
}
footer .container .col {
	flex: 1;
}
footer .container .col h4 {
	text-transform: uppercase;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	letter-spacing: 1px;
}
footer .container .col a {
	display: block;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
footer .container .col a .logo-footer {
	max-width: 150px;
}
footer .container .col p {
	line-height: 2rem;
	font-size: 1.18rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.85);
}
footer .container .col .informacion_contacto li a {
	color: white;
	font-size: 1.18rem;
	text-decoration: none;
}
footer .container .col form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
footer .container .col form input,
footer .container .col form textarea,
footer .container .col form button {
	padding: 1rem;
	outline: none;
	border: none;
	letter-spacing: 1px;
	border-radius: 5px;
	font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
	font-weight: normal;
}
footer .container .col form button {
	background-color: #c53030;
	color: white;
	font-size: 1.1rem;
	font-weight: 300;
	cursor: pointer;
}
footer .container .col form button:hover {
	background-color: #8f2525;
}
footer .copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.8);
	padding: 1.5rem;
	font-size: 0.9rem;
	line-height: 1.5rem;
	text-align: center;
}
footer .copyright a {
	color: yellow;
}

.btn-whatsapp__container {
	bottom: 90px;
	position: fixed;
	right: 30px;
	z-index: 100;
}
.btn-whatsapp__container .btn-whatsapp {
	position: relative;
	display: flex;
}
.btn-whatsapp__container .btn-whatsapp::before,
.btn-whatsapp__container .btn-whatsapp::after {
	content: "";
	position: absolute;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: #00e676;
	opacity: 0;
	top: 2px;
	left: 4px;
	animation: ondas 1.7s infinite;
}
.btn-whatsapp__container .btn-whatsapp::before {
	animation-delay: 1s;
}
.btn-whatsapp__container .btn-whatsapp::after {
	animation-delay: 1.3s;
}
.btn-whatsapp__container .btn-whatsapp img {
	position: relative;
	z-index: 2;
}
@keyframes ondas {
	0% {
		transform: scale(1);
	}
	15% {
		opacity: 1;
	}
	100% {
		transform: scale(2.5);
		opacity: 0;
	}
} /*# sourceMappingURL=style.css.map */
