.text-decoration-none{
	text-decoration: none !important;
}

.roboto-font{
	font-family: var(--roboto-font);
}

.cursor-pointer{
	cursor: pointer;
}

.text-center{
	text-align: center;
}

.text-white{
	color:white !important;
}

.text-gray{
	color:var(--gray-color) !important;
}

.text-blue{
	color:var(--blue-color);
}

.text-white-75{
	color:rgba(255,255,255,.75) !important;
}

.text-secondary-blue{
	color:var(--secondary-blue);
}

.text-social{
	text-decoration: none;
}

.text-social:hover, .btn-border-white:hover, input[type=submit]:hover, #cargar_mas:hover{
	opacity: .8;
}

.img-fluid{
	max-width: 100% !important;
}

.bg-gray{
	background:var(--gray-color);
}

.bg-blue{
	background: var(--blue-color);
}

.bg-secondary-blue{
	background: var(--secondary-blue);
}

.bg-white{
	background: white;
}


.bg-blue-before{
	position: relative;
}

.bg-blue-before:before{
	content:'';
	width:100%;
	height:332px;
	background: var(--blue-color);
	position:absolute;
	bottom:0px;
	border-radius: 40px;
}

.border-radius-40{
	border-radius: 0px 0px 40px 40px;
}

.border-radius-40-all{
	border-radius: 40px;
}

.text-30{
	font-size: 30px;
	line-height: 35px;
	font-weight: 600;
	font-family: var(--secondary-font);
}

.small-text{
	font-family: var(--roboto-font);
  font-size:13px;
  line-height: 15px;
}

.border-top-white{
	border-top:1px rgba(255,255,255,.25) solid;
}

div.img-around{
	padding:5px;
	width:78px;
	height:78px;
	background:#d9d9d9;
	border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;

}

.titleVertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 128px;
  line-height: 137px;
  font-weight: 600;
  color:var(--blue-color);
}

.certificado{
	max-width: calc(100% - 30px);
	margin:-100px 30px 0px 0px
}

div.divider{
	border-bottom:1px rgba(55,64,65,.2) solid;
}

.circles{
	position: relative;
}

.circles:before{
	content:'';
	position: absolute;
	top:30px;
	left:-80px;
	width:140px;
	height:140px;
	background:#F5F9FA;
	border-radius: 50%;
	z-index:-1;
}

.circles:after{
	content:'';
	position: absolute;
	top:160px;
	right:-130px;
	width:260px;
	height:260px;
	background:#F5F9FA;
	border-radius: 50%;
	z-index:-1;
}

.position-relative{
	position: relative;
}

.paciente{
	position:relative;
	display: flex;
}

.paciente:after{
	content:'';
	position: absolute;
	top:-10%;
	left:20%;
	width:80%;
	height: 120%;
	background:var(--blue-color);
	border-radius: 40px;
	z-index: -1;
}

.paciente .numbers{
	padding:0px 30px;
}

.text-medium{
	font-weight: 500;
}

.blue-container, .blue2-container{
	position: relative;
}

.blue-container:before, .blue2-container:before{
	content:'';
	position: absolute;
	top:-5%;
	left:-40%;
	border-radius: 40px;
	width:calc(180%);
	height:calc(110%);
	background:var(--secondary-blue);
	opacity: 1;
	z-index: -1;
}

.blue2-container:before{
	background:var(--blue-color);
	opacity: 1;
}

.card-team figure{
	background: #d9d9d9;
	border-radius: 20px 20px 0px 0px;
}

.card-team img{
	width:100% !important;
	height:270px;
	object-fit: contain;
	margin-bottom: -30px;
}

.card-team .info{
	height:calc(100% - 270px);
	padding:15px;	
	border-radius: 0px 0px 20px 20px;
}

.h-100{
	height: 100%;
}

.faq-list {
	padding-left: 0px;
	list-style: none;
}

.faq-item {
	margin-bottom: 12px;
	font-family: var(--secondary-font);
}

.faq-question {
	cursor: pointer;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.faq-icon {
	font-weight: bold;
	font-size: 24px;
	color:var(--blue-color);
	transition: transform 0.3s ease;
}

/* Animación */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	color: var(--gray-color);
	margin-left: 20px;
}

/* Estado abierto */
.faq-item.active .faq-answer {
	max-height: 500px; /* ajustable */
}


.faq-item.active .faq-icon {
	transform: rotate(45deg); /* + se vuelve X */
}

.testimonials-wrapper {
	gap: 30px;
}

/* izquierda */
.testimonials-images {
	width: 40%;
}

.testimonials-images img {
	width: 100%;
	border-radius: 40px;
	height: 400px;
	object-fit: cover;
}

/* derecha */
.testimonials-content {
	width: 60%;
	transition: height 0.3s ease;
}

.testimonial-card {
	background: var(--secondary-blue);
	padding: 30px;
	border-radius: 40px;
	min-height: 250px; /* ajusta a tu diseño */
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* dots alineados al contenido */
.testimonials-content .slick-dots {	
	margin-top: 15px;	
}

.testimonials-content .slick-dots li{
	margin:0px;
}

.testimonials-content .slick-dots li button:before{
	font-size:35px;
}

.testimonials-content .slick-dots li.slick-active button:before {    
    color: var(--blue-color);
}

.testimonial-text {
	display: -webkit-box;
	-webkit-line-clamp: 4; /* número de líneas */
	-webkit-box-orient: vertical;
	overflow: hidden;
	height:125px;
	padding-left:60px;
	font-family: var(--secondary-font);
	font-size:20px;
	line-height: 27px;
	color:gray;
}

.dashicons-container{
	width:56px;
	height:56px;
	background:var(--blue-color);
	border-radius: 10px;
	display: flex;
	align-items: center;	
	justify-content: center;
}

.dashicons-container .dashicons{
	color: white;
  font-size: 22px;
}

@media all and (min-width: 1024px){
	.pt-150{
		padding-top:150px
	}

	.title-abs{
		position: absolute; top:0px; width: 120%;
	}
}

@media all and (max-width: 1023px){
	.paciente{
		display: block;
		text-align: center;
	}
	.paciente:after{
		display: none;
	}

	.paciente *{
		color:var(--gray-color) !important;
	}

	.paciente .numbers{
		display: flex;		
		flex-wrap: wrap;
		justify-content: center;
		padding:0px;
	}	

	.paciente .numbers div{
		margin-right:15px;
	}

	.paciente .numbers div h4{
		margin-bottom: 15px !important;
	}
}

@media all and (max-width: 991px){
	#services .bg{
		padding-top:30px;		
	}
	#services .bg:before{
		width:100vw;
	}
	header img.logo{
		max-width: 50vw;
	}
	.sticky{
		position: relative;
		top:auto;
	}
	.menu-header{
		width: 300px;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: -300px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;    
    padding: 30px;
    overflow-y: auto;
    transition: all .2s ease-out;
    transition: all .2s ease-in;
    box-shadow: 0 0 3px rgba(0,0,0,.6);
    background:#1a1a1a;
	}

	body.open .menu-header{
		right:0px;
	}

	body.open .overlay-menu{
		display: block;
    background-color: rgba(0,0,0,.4);
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
	}
	nav ul{
		flex-direction: column;
		text-align: center;
		justify-content: flex-start;
	}

	nav ul li{
		margin:15px 0px;
	}

	.menu-icon{
		font-size: 40px;
		cursor: pointer;
		color:white;
	}

	.close-icon{		
		position: absolute;
  	top: 15px;
  	right: 15px;
  	cursor: pointer;
  	color:white;
	}		

	.blue-container:before, .blue2-container:before{
		max-width: 100% !important;
	}

	.blue-container:before, .blue2-container:before{
		display: none;
	}

	.blue-container{
		background: var(--secondary-blue);
		border-radius: 40px;
		padding:15px;
	}

	.blue2-container{
		background: var(--blue-color);
		border-radius: 40px;
		padding:15px;
		margin-bottom:30px;
	}


	.border-radius-40{
		border-radius: 40px;
	}

	.text-30 {
	    font-size: 22px;
	    line-height: 28px;	    
	}

	.titleVertical {
    writing-mode: revert;
    transform: rotate(0deg);
    font-size: 70px;
    line-height: 75px;
    margin-bottom: 30px;    
	}

	.certificado{
		display: block;
		margin:15px auto;
	}	

	/* ambas secciones full width */
	.testimonials-images{
		display: none !important;
	}	

	.testimonials-content{
		width: 100% !important;
	}

}