body,
html {
	font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button {
	font-family: 'Poppins', sans-serif;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu {
	display: none;
	position: absolute;
	background-color: white;
	min-width: 200px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
	border-radius: 0.5rem;
	padding: 0.5rem 0;
}

.dropdown-menu a {
	display: block;
	padding: 0.5rem 1rem;
	color: #4a5568;
	transition: all 0.2s;
}

.dropdown-menu a:hover {
	background-color: #f7fafc;
	color: #4282FE;
}

.mobile-dropdown {
	display: none;
}

.mobile-dropdown.active {
	display: block;
}

.dropdown-menu-mobile {
	background-color: white;
	padding-left: 1.5rem;
}

.dropdown-menu-mobile a {
	display: block;
	padding: 0.5rem 0;
	color: #4a5568;
}

.rotate-180 {
	transform: rotate(180deg);
}

.transition-transform {
	transition: transform 0.2s ease;
}

.service-card {
	transition: all 0.3s ease;
	overflow: hidden;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.lottie-container {
	width: 80px;
	height: 80px;
	margin: 0 auto;
}

.hero-slider {
	height: 100vh;
	position: relative;
}

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.swiper-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
	z-index: 1;
}

.slide-content {
	position: relative;
	z-index: 2;
	color: white;
	text-align: center;
	max-width: 800px;
	padding: 0 20px;
	margin-bottom: 80px;
}

.swiper-button-next,
.swiper-button-prev {
	color: white;
	background: #4282FE;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 20px;
	font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: #4282FE;
}

.swiper-pagination-bullet {
	background: white;
	opacity: 0.5;
	width: 12px;
	height: 12px;
}

.swiper-pagination-bullet-active {
	background: #4282FE;
	opacity: 1;
}

@media (max-width: 768px) {
	.slide-content {
		margin-bottom: 100px;
		padding: 0 15px;
	}
	.slide-content h1 {
		font-size: 2rem !important;
		margin-bottom: 1rem !important;
	}
	.slide-content p {
		font-size: 1rem !important;
		margin-bottom: 1.5rem !important;
	}
	.swiper-button-next,
	.swiper-button-prev {
		width: 40px;
		height: 40px;
		bottom: 20px;
		top: auto;
		transform: translateY(0);
	}
	.swiper-button-next {
		right: 20px;
	}
	.swiper-button-prev {
		left: 20px;
	}
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 16px;
	}
	.swiper-pagination {
		bottom: 30px !important;
	}
	.slide-content .flex {
		flex-direction: column;
		gap: 1rem;
	}
	.slide-content a {
		padding: 12px 20px;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.slide-content {
		margin-bottom: 120px;
	}
	.slide-content h1 {
		font-size: 1.8rem !important;
	}
	.slide-content p {
		font-size: 0.9rem !important;
	}
	.swiper-button-next,
	.swiper-button-prev {
		width: 35px;
		height: 35px;
		bottom: 15px;
	}
	.swiper-button-next {
		right: 15px;
	}
	.swiper-button-prev {
		left: 15px;
	}
	.swiper-pagination {
		bottom: 25px !important;
	}
}

@media (max-width: 768px) {
	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}

.nav-link {
	padding: 0.25rem 0;
	transition: color 0.3s ease;
}

.underline-animation {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #4282FE;
	transition: width 0.3s ease;
	z-index: 1;
}

.nav-link:hover .underline-animation {
	width: 100%;
}

.nav-link:hover {
	color: #4282FE;
}

.dropdown>.nav-link {
	display: inline-flex;
	align-items: center;
}

.dropdown-menu .nav-link {
	display: block;
	padding: 0.5rem 1rem;
}

.nav-link-mobile {
	position: relative;
	display: block;
	padding: 0.5rem 0;
	transition: color 0.3s ease;
}

.underline-animation-mobile {
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #4282FE;
	transition: width 0.3s ease;
	z-index: 1;
}

.nav-link-mobile:hover .underline-animation-mobile {
	width: 100%;
}

.nav-link-mobile:hover {
	color: #4282FE;
}

.mobile-menu-active {
	display: block !important;
}

#menu-icon,
#close-icon {
	transition: opacity 0.3s ease;
}

.slider-container {
	overflow: hidden;
	width: 100%;
	padding-bottom: 16px;
}

.slider-track {
	display: flex;
	animation: slide 40s linear infinite;
	padding-top: 8px;
	padding-bottom: 8px;
}

@keyframes slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-272px * 7));
	}
}

@media (max-width: 1024px) {
	.slider-item {
		width: 220px !important;
		height: 160px !important;
	}
	@keyframes slide {
		100% {
			transform: translateX(calc(-252px * 7));
		}
	}
}

@media (max-width: 640px) {
	.slider-item {
		width: 180px !important;
		height: 130px !important;
	}
	@keyframes slide {
		100% {
			transform: translateX(calc(-212px * 7));
		}
	}
	.slider-prev,
	.slider-next {
		display: none;
	}
}

.slider-track:hover {
	animation-play-state: paused;
}

.slider-dot.active {
	background-color: #4282FE !important;
	transform: scale(1.3);
	box-shadow: 0 0 0 2px rgba(66, 130, 254, 0.2);
}

@media (max-width: 768px) {
	.slider-prev {
		left: 2;
		width: 10;
		height: 10;
	}
	.slider-next {
		right: 2;
		width: 10;
		height: 10;
	}
}

@media (max-width: 640px) {
	.slider-prev,
	.slider-next {
		display: none;
	}
	.slider-item {
		width: 56;
		height: 44;
	}
	@keyframes slide {
		100% {
			transform: translateX(calc(-224px * 7));
		}
	}
}

.servicios-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px 0 250px 0;
	font-family: 'Montserrat', sans-serif;
	background-color: #f4f4f4;
}

.servicios-section .card-servicios {
	position: relative;
	width: 1600px;
	height: 450px;
	max-width: 95%;
	background: linear-gradient(135deg, #4176ff 0%, #1a2a8c 100%);
	border-radius: 24px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 60px;
	color: #ffffff;
	box-shadow: 0 30px 60px rgba(26, 42, 140, 0.4);
}

.servicios-section .waves-container {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	border-radius: 24px;
}

.servicios-section .wave {
	position: absolute;
	width: 100%;
	height: 100%;
}

.servicios-section .animate-slow {
	animation: move-servicios 12s ease-in-out infinite alternate;
}

.servicios-section .animate-mid {
	animation: move-servicios 8s ease-in-out infinite alternate-reverse;
}

@keyframes move-servicios {
	from {
		transform: scale(1) translateX(-2%);
	}
	to {
		transform: scale(1.1) translateX(2%);
	}
}

.servicios-section .content-servicios {
	z-index: 10;
	text-align: center;
	font-style: italic;
}

.servicios-section .logo-servicios {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(4px);
	overflow: hidden;
}

.servicios-section .logo-servicios img {
	width: 70%;
	height: 70%;
	object-fit: contain;
}

.servicios-section .full-title {
	font-size: 2.5rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -1px;
	margin: 0;
	line-height: 1;
	text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

@media (max-width: 1024px) {
	.slider-item {
		width: 220px !important;
		height: 160px !important;
	}
	@keyframes slide {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-252px * 7));
		}
	}
}

@media (max-width: 640px) {
	.slider-item {
		width: 180px !important;
		height: 130px !important;
	}
	@keyframes slide {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-212px * 7));
		}
	}
}

.grid-contenedor-servicios {
	position: absolute;
	top: 320px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	width: 90%;
	max-width: 1400px;
	z-index: 20;
}

.card-blanca {
	background: #ffffff;
	border-radius: 25px;
	padding: 60px 20px 30px 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #333;
	transition: transform 0.3s ease;
}

.card-blanca:hover {
	transform: translateY(-10px);
}

.card-blanca .burbuja-titulo {
	position: absolute;
	top: -25px;
	background: #ffffff;
	color: #000;
	font-weight: 800;
	padding: 10px 25px;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	font-size: 1rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 90%;
	text-align: center;
	box-sizing: border-box;
}

.card-blanca img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 15px;
	margin-bottom: 20px;
}

.card-blanca p {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 25px;
	font-style: normal;
}

.btn-saber {
	background: #4176ff;
	color: white;
	padding: 10px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	margin-top: auto;
	transition: background 0.3s;
}

.btn-saber:hover {
	background: #1a2a8c;
}

@media (max-width: 992px) {
	.servicios-section .card-servicios {
		height: 400px;
		padding-top: 40px;
	}
	.grid-contenedor-servicios {
		grid-template-columns: repeat(2, 1fr);
		top: 300px;
	}
	.servicios-section {
		padding-bottom: 800px;
	}
}

@media (max-width: 768px) {
	.servicios-section .full-title {
		font-size: 2.5rem;
	}
	.grid-contenedor-servicios {
		grid-template-columns: 1fr;
		top: 250px;
	}
	.servicios-section {
		padding-bottom: 1500px;
	}
}

.custom-btn-shadow {
	box-shadow: 0 8px 20px rgba(65, 118, 255, 0.35);
}

.custom-btn-shadow:hover {
	box-shadow: 0 10px 25px rgba(65, 118, 255, 0.5);
}

.font-poppins-light-italic {
	font-style: italic;
	font-weight: 300;
}

.font-poppins-bold {
	font-weight: 700;
}

.btn-azul-selecta {
	background-color: #4176ff !important;
	color: white !important;
	box-shadow: 0 8px 20px rgba(65, 118, 255, 0.35);
	border-radius: 1rem;
	transition: all 0.3s ease;
}

.btn-azul-selecta:hover {
	background-color: #2b56cc !important;
	transform: translateY(-3px);
}

.contenedor-sedes-gris {
	background-color: #f3f4f6 !important;
	border-radius: 50px;
	border: 2px solid #ffffff;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.font-montserrat-extrabold {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
}

.dot-pattern-circle {
	background-image: radial-gradient(#4176ff 2px, transparent 2px);
	background-size: 18px 18px;
	border-radius: 50%;
	width: 350px;
	height: 350px;
	filter: opacity(0.5);
}

.quote-circle {
	background-color: #4176ff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 4px 12px rgba(65, 118, 255, 0.4);
	z-index: 20;
	border: 2px solid white;
}

.card-shadow {
	box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.15);
}

:root {
    --whatsapp-green: #25D366;
    --whatsapp-dark-green: #128C7E;
    --text-color: #333;
}

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Gabarito', 'Segoe UI', Roboto, sans-serif;
}

#whatsapp-button {
    background-color: var(--whatsapp-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#whatsapp-button:hover {
    background-color: var(--whatsapp-dark-green);
    transform: scale(1.1);
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    max-height: 70vh; 
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex; 
    flex-direction: column;
    overflow: hidden; 
}

.whatsapp-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-header {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.whatsapp-body {
    padding: 15px;
    overflow-y: auto; 
    flex-grow: 1; 
}

.whatsapp-body::-webkit-scrollbar {
    width: 6px;
}
.whatsapp-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.whatsapp-body p {
    margin: 0 0 15px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.whatsapp-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whatsapp-options li {
    margin-bottom: 10px;
}

.whatsapp-options a {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #f8f8f8;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s ease;
    gap: 10px;
}

.whatsapp-options a:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}


@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-popup {
        width: 280px;
        right: -10px;
        max-height: 60vh; 
    }
}

.whatsapp-logo {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: contain;
}


.whatsapp-options {
	list-style: none;
	padding: 0;
	margin: 0;
}

.whatsapp-options li {
	margin-bottom: 10px;
}

.whatsapp-options a {
	display: flex;
	align-items: center;
	padding: 12px;
	background-color: #f8f8f8;
	border-radius: 8px;
	text-decoration: none;
	color: var(--text-color);
	transition: all 0.2s ease;
	gap: 10px;
}

.whatsapp-options a:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
}

.whatsapp-options i {
	color: var(--whatsapp-green);
	font-size: 24px;
	flex-shrink: 0;
}

.whatsapp-options strong {
	display: block;
	font-size: 14px;
	margin-bottom: 3px;
}

.whatsapp-options span {
	font-size: 12px;
	color: #666;
	display: block;
}