

.container_listing_chirurgia {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box_chirurgia {
	display: flex;
    flex-wrap: nowrap;
    background-color: #f2f2f2;

}

.box_chirurgia:nth-child(even) {flex-direction: row-reverse;}
.box_chirurgia:nth-child(odd) {flex-direction: row;}

.box_chirurgia  .box_img {
	
    width: 30%;
	padding: 20px;
}


.box_chirurgia .box_info {
    width: 70%;
    padding: 20px;
    display: flex;
    flex-direction: column;

    gap: 15px;
}


.box_chirurgia .title a {
	color: var(--blu);
	text-decoration-line: underline;
    text-decoration-color: #33cbcc;
    text-underline-offset: 8px;
}

.box_chirurgia .title a:hover {
	color: var(--celeste);
	transition:0.5s;
}


.box_chirurgia .button {
margin-top:auto;
}



@media screen and (max-width: 1200px) and (min-width: 768px) {
	.box_chirurgia .box_img {
		width: 50%;
		
	}
	
	.box_chirurgia .box_info {
		width: 50%;
		
	}
}   

@media screen and (max-width: 768px) {
     
	
	.box_chirurgia:nth-child(even) {flex-direction: column;}
	.box_chirurgia:nth-child(odd) {flex-direction: column;}
	
	.box_chirurgia .box_img {
		width: 100%;
		
	}
	
	.box_chirurgia .box_info {
		width: 100%;
		
	}
	
	.box_chirurgia .button a{
		display:block;
	}
	
}
