<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway';
}

.texto{
    margin: 30px auto;
    width: 80%;
}

.texto p, h1{
    margin-bottom: 30px;
}

.texto p{
    font-size: 20px;
}

.btn-abrir{
    background: #0063a5;
    color:#fff;
    padding: 10px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

/* VENTANA MODAL */

.pop-up{
    background: rgba(48, 48, 48, 0.5);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.pop-up-wrap{
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 950px;
    transform: scale(0.6);
    opacity: 0;
    transition: .3s ease all;
}

.pop-up-title{
    flex-basis: 0;
    flex-grow:1.5;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-image: url('../img/aviso.PNG');
    background-size: 165%;
    background-position: center;
    background-repeat: no-repeat;
}

.pop-up-title::after{
    content: '';
    position: absolute;
    background: rgba(228, 63, 90, 0.75);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.pop-up-title::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.subcription::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.pop-up-title h2,
.pop-up-title p{
    z-index: 10;
    color: #fff;
}

.pop-up-title h2{
    font-family: 'Chiller';
    font-size: 80px;
}


.pop-up-title p{
    font-size: 20px;
    font-weight: 300;
}

.subcription{
    background: #fff;
    flex-basis: 0;
    flex-grow: 2;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: center;
}

.sub-content{
    width: 75%;
}

.sub-content h2{
    font-weight: 500;
    font-size: 40px;
    color: #1F4068;
    margin-bottom: 15px;
}

.sub-content p{
    font-weight: 500;
    color: #1bc59b;
    margin-bottom: 30px;
}

.subs-email{
    width: 100%;
    padding: 15px;
    border: none;
    background: #ccc;
    margin-bottom: 15px;
}

.subs-send{
    width: 100%;
    padding: 15px;
    border: none;
    background: #E43F5A;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: .25s ease background;
}

.subs-send:hover{
    background: #1bc59b;
}

.line{
    width: 100%;
    height: 20px;
    background: #1F4068;
}

#close{
    position: absolute;
    width: 55px;
    height: 55px;
    z-index: 200;
    top: 65px;
    right: 25px;
    cursor: pointer;
}

.pop-up.show{
    visibility: visible;
}

.pop-up-wrap.show{
    transform: scale(1);
    opacity: 1;
}

@media only screen and (max-width: 980px){
    .pop-up-title{
        display: none;
    }

}

@media only screen and (max-width: 320px){
    .sub-content h2{
        font-size: 30px;
	}
}

@media screen and (max-width: 780px) {
		.contenido{
		margin: auto !important;
		width: 95% !important;
		max-width:600px !important;
		margin-top:15px !important;
		margin-bottom:15px !important;
		}
	}
	@media screen and (min-width: 781px) {
		.contenido{
		margin: auto !important;
		width: 600px !important;
		margin-top:15px !important;
		margin-bottom:15px !important;
		}
	}
	
	
	
	
	
	
	
	
	
	
	
	input:valid:not(:focus),select:valid:not(:focus){
		border-color: rgb(28, 150, 22) !important;
	}
	
	select:focus,select[type]:focus, input:focus, input[type]:focus {
		border-color: rgb(28, 150, 22) !important;
		box-shadow: 0 0 20px rgba(28, 150, 22, 0.6) !important;
		outline: 0 none !important;
	}
	button:hover {
		background-color: #189111 !important;
		outline: 0 none !important;
	}
	#btnform1 {
		background-color:#378af5 !important;
		border-color:#378af5;
	}
	#btnform1:hover {
		background-color: #115ab9 !important;
		border-color:#115ab9;
		outline: 0 none !important;
	}
	@media screen and (max-width: 780px) {
		.contenido{
		margin: auto;
		width: 95%;
		max-width:600px;
		margin-top:15px;
		margin-bottom:15px;
		}
	}
	@media screen and (min-width: 781px) {
		.contenido{
		margin: auto;
		width: 600px;
		margin-top:15px;
		margin-bottom:15px;
		}
	}</pre></body></html>