/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 06 2025 | 14:10:06 */
.btn-flotante2{
  	cursor:pointer;
	position:fixed;
  	bottom: 250px;
  	right: 0;
  	z-index: 9999;
	padding:10px 20px;
	background:white;
	font-family: 'Signika';
    font-weight: bold;
    color: #205fa2;
	font-size:20px;
	border-top-right-radius:10px;
	border-bottom-left-radius:10px;
	transition:all 1s;
	text-decoration: none;
	&:after,&:before{
		content:" ";
		width:10px;
		height:10px;
		position:absolute;
		border :0px solid #fff;
		transition:all 1s;
		}
	&:after{
		top:-1px;
		left:-1px;
		border-top:5px solid #F7C221;
		border-left:5px solid #F7C221;
	}
	&:before{
		bottom:-1px;
		right:-1px;
		border-bottom:5px solid #F7C221;
		border-right:5px solid #F7C221;
	}
	&:hover{
		border-top-right-radius:0px;
	border-bottom-left-radius:0px;
		// background:rgba(0,0,0,.5);
		// color:white;
		&:before,&:after{
			
			width:100%;
			height:100%;
			// border-color:white;
		}
	}
}


@media (max-width: 768px) {
	.btn-flotante2 {
		bottom: 80px;        /* lo subimos un poco si molesta */
		right: 10px;         /* un pequeño margen lateral */
		padding: 6px 10px;   /* menos padding */
		font-size: 14px;     /* texto más pequeño */
		border-radius: 8px;  /* bordes un poco más suaves */
	}
}