@charset "utf-8";

/* BODY ------------------------------------ */

body{ 
	margin: 0;
	background: #39393b; 
}

/* Estilos Tipografía ------------------------ */

@font-face {
	font-family: "TTFirsLight";
	src: url("fonts/TT Firs Light.ttf") format("truetype");
}

@font-face {
	font-family: "TTFirsMedium";
	src: url("fonts/TT-Firs-Medium.ttf") format("truetype");
}

@font-face {
	font-family: "TTFirsRegular";
	src: url("fonts/TT-Firs-Regular.ttf") format("truetype");
}

@font-face {
	font-family: "TTFirsBold";
	src: url("fonts/TT-Firs-Bold.ttf") format("truetype");
}

@font-face {
	font-family: "Scope One Regular";
	src: url("fonts/ScopeOne-Regular.ttf") format("truetype")
}

/* ESTILOS EN TEXTO ------------------------ */

h1 {
	font-family: "TTFirsMedium";
	font-size: 56px; 
	color: #FFFFFF;
	margin: 0;
}

h2 {
	font-family: "TTFirsMedium";
	/*font-weight: lighter;*/
	font-size: 40px; 
	color: #333333;
	margin-bottom: 30px;
}

h3 {
	font-family: "TTFirsMedium";
	font-size: 20px;
	color: #333333;
	margin: 0;
}

/* ESTILO CAMPOS ---------------------------- */

.txtBox { 
	width: 100%;
	height: 35px; 
	padding: 10px 0px 12px 10px;  
	margin-bottom: 18px;
	box-sizing: border-box;

	font-family: "TTFirsMedium";
	font-size: 20px; 
	color: #FFF;
	letter-spacing: 1px;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    border: 0; 
	border-bottom: 1px solid #FFF;
    background: none;
} 
 
.txtBox:focus { 
    border: 0px solid #50c2dd; 
	border-bottom: 1px solid #6adddd;
	outline: none; 
} 

.txtBox2 { 
	border: 1px solid #FFF;
}

.txtBox2:focus { 
	border: 1px solid #6adddd;
}

::-webkit-input-placeholder {
	font-family: "TTFirsMedium";
    color: rgba(255,255,255,0.6);
	font-size: 20px;  
	letter-spacing: 1px;
} /* WebKit */

:-moz-placeholder { 
	font-family: "TTFirsMedium";
	color: rgba(255,255,255,0.7);
	font-size: 20px;   
	letter-spacing: 1px;
} /* Firefox 18- */

::-moz-placeholder { 
	font-family: "TTFirsMedium";
	color: rgba(255,255,255,0.7);
	font-size: 20px; 
	letter-spacing: 1px;
} /* Firefox 19+ */

:-ms-input-placeholder { 
	font-family: "TTFirsMedium";
	color: rgba(255,255,255,0.7);
	font-size: 20px; 
	letter-spacing: 1px;
} /* IE 10+ */

/* ESTILO BOTON SUBMIT ----------------------- */

.button_1 {
	width: auto;
	height: auto;
	padding: 8px 20px 8px 20px;

	font-family: "TTFirsRegular";
	font-weight: bold;
	font-size: 20px;
	color: #FFF;

	float: left;
	box-sizing: border-box;
	cursor: pointer;
	background: #10b5af;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button_1:hover {
	color: #10b5af;
	background: #929486;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button_1 img {
	float: left;
}

.button_1_2 {
	background: #82d4d7;
}

.button_1_2:hover {
	background: #929486;
}

.button_2 {
	width: auto;
	height: auto;
	padding: 7px 15px 7px 45px;

	font-family: "TTFirsRegular";
	font-weight: bold;
	font-size: 20px;
	color: #237e8c;
	letter-spacing: 1px;
	text-align: right;

	position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	border: 0;
	background: #6adede;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button_2:hover {
	color: #82d4d7;
	background: #333;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button_2 img { 
	position: absolute;
	top: 13px;
	left: 15px;
}



/* SECTION ----------------------------- */

section {
	width: 100%; 
	height: auto;
	text-align: center;
	position: relative;
	float: left;
	box-sizing: border-box;
}

/* BARRA HEADER ---------------------------- */

.contheader {
	width: 100%;
	height: auto;
	position: fixed;
	box-sizing: border-box;
	background: #39393b;
	z-index: 2;
	/*border: 1px solid #FF0000;*/
}

.header {
	width: 100%;
	max-width: 1115px;
	height: auto;
	position: relative;
	margin: 0 auto;
	box-sizing: border-box;
	background: #39393b;
	/*border: 1px solid #FF0000;*/
}

.cajaLogo {
	width: auto;
	height: auto;
	padding: 8px 0px 8px 15px;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.cajaLogo img {
	float: left;
}

.cajaTelefono {
	width: auto;
	height: auto;
	margin-top: 13px;

	font-family: "TTFirsRegular";
	font-weight: bold;
	font-size: 20px;
	color: #82d4d7;

	position: relative;
	float: right;
	box-sizing: border-box;
	display: inherit;
	/*border: 1px solid #FF0000;*/
}

.cajaInfoTelefono {
	width: auto;
	height: auto;
	padding: 0px 0px 0px 30px;
	margin-top: 2px;
	margin-right: 15px;

	font-family: "TTFirsRegular";
	font-weight: bold;
	font-size: 20px;
	color: #82d4d7;

	position: relative;
	float: left;
	box-sizing: border-box;
	display: inherit;
	cursor: pointer;
	/*border: 1px solid #FF0000;*/
}

.cajaInfoTelefono img {
	width: auto;
	height: auto;
	position: absolute;
	bottom: 2px;
	left: 0;
}

.cajaInfo {
	width: auto;
	height: auto;
	margin-left: 18px;

	position: relative;
	float: left;
	box-sizing: border-box;
	cursor: pointer;
	/*border: 1px solid #FF0000;*/
}

/* BANNER ------------------------------------ */

.banner {
	width: 100%;
	height: 70vh;
	margin-top: 55px;
	float: left;
	box-sizing: border-box;

	background: url(../images/banner.jpg);
	background-position: top center;
  	background-repeat: no-repeat;
  	background-size: cover;
	/*border-top: 5px solid #17b4ae;*/
}

.slogan {
	width: 80%;
	max-width: 700px;
	height: auto;

	font-family: "TTFirsLight";
	font-size: 46px; 
	color: #FFFFFF;
	margin: 0;

	position: absolute;
	left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);

    /*border: 1px solid #FF0000;*/
}

.slogan_bold {
	font-family: "TTFirsBold";
}

/* MAPA ------------------------------------ */

.mapa {
	width: 100%;
	height: 70vh;
	margin-top: 55px;
	float: left;
	box-sizing: border-box;
	/*border-top: 5px solid #17b4ae;*/
}

/* FORMULARIO ------------------------------ */

.Formulario {
	width: 100%;
	max-width: 450px; 
	margin-top: 65px;
	margin-bottom: 75px;
	padding: 45px 35px 45px 35px;
	text-align: center;
	position: relative;
	display: inline-block;
	background: #5b5b5f;
	box-sizing: border-box;
}

.tit-Formulario {
	width: 100%;
	height: auto;
	margin-bottom: 35px;

	font-family: "TTFirsBold";
	font-size: 44px;
	color: #FFF;
	line-height: 43px;
	text-align: left;

	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.tit-Formulario span {
	font-family: "TTFirsLight";
	font-size: 32px;
	padding: 13px;
}

.caja-Formulario {
	width: 90%; 
	height: auto;
	position: relative;
	display: inline-block;
	box-sizing: border-box;

	font-family: "TTFirsLight";
	font-weight: bold;
	font-size: 20px;
	color: rgba(255,255,255,0.7);
	letter-spacing: 1px;
	text-align: left;

	/*background:#666;*/
	
}

/* OFERTAS ------------------------------------ */

.contOfertas {
	width: 16.66%;
	height: auto;
	
	position: relative;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.Ofertas {
	width: 100%;
	height: auto;
	padding: 30px 0px 30px 0px;
	text-align: center;

	position: relative;
	box-sizing: border-box;
	background: #ebebeb;
	cursor: pointer;
	/*border: 1px solid #FF0000;*/
}

.Ofertasbackground {
	background: #e4e3e3;
}

.contitOferta {
	width: auto;
	height: auto;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
	text-align: left;
    box-sizing: border-box;
    /*border: 1px solid #FF0000;*/
}

.icoOferta {
	width: 30px;
	height: auto;
	padding: 1px 0px 0px 0px;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.icoOferta img {
	width: 100%;
	height: auto;
	float: left;
}

.titOferta {
	width: auto;
	height: auto;
	padding: 0px 0px 0px 20px;
	float: left;
	box-sizing: border-box;
	/*border: 1px solid #FF0000;*/
}

.titpadding {
	padding: 0px 0px 0px 20px;
}

.openOferta {
	width: 100%;
	height: auto;
	text-align: center;

	float: left;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
}

.openOferta img {
	width: 16px;
	height: auto;
}

#cajaspaceoption {
	display: inherit;
}

.contdescOferta {
	width: 100%;
	height: auto;
	position: absolute;
	top: 95px;
	text-align: center;
	background: #ebebeb;
	z-index: 1;
	box-sizing: border-box;
	display: none;
	z-index: 1;
	/*border: 1px solid #333;*/
}

.contdescbackground {
	background: #e4e3e3;
}

.cajatxtOpcion {
	width: 80%;
	height: auto;
	padding: 0px 10px 0px 10px;

	position: relative;
	display: inline-block;
	box-sizing: border-box;

	font-family: "Scope One Regular";
	font-size: 15px; 
	color: #333333;
	text-align: left;
	/*border: 1px solid #FF0000;*/
}

.cajatxtOpcionwidth {
	width: 70%;
}

.cajatxtOpcion span {
	position: absolute;
	top: 0;
	left: -5px;
	color: #fe2c37;
}

.cajatxtOpcionsub {
	font-size: 14.5px; 
	color: #818376;
}

/* GRACIAS ---------------------------------- */

.contgracias {
	width: 100%;
	height: 85vh;
	margin-top: 55px;
	float: left;
	box-sizing: border-box;
	background: #ffffff;
	/*border: 1px solid #FF0000;*/
}

.gracias { 
	width: 720px;
	height: 200px;
	position: absolute;
	left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    /*border: 1px solid #FF0000;*/
}

.cajagracias_1 { 
	width: 43%;
	height: 200px;
	padding: 36px 15px 0px 0px;
	float: left;
	box-sizing: border-box;
    border-right: 1px solid #959595;
}

.cajagracias_1 img { 
	width: 95%;
	height: auto;
	float: left;
}

.cajagracias_2 { 
	width: 57%;
	height: 200px;
	padding: 0px 0px 0px 40px;

	font-family: "Scope One Regular";
	font-size: 26px; 
	color: #c2c2c2;
	text-align: left;

	float: left;
	box-sizing: border-box;
    /*border: 1px solid #000;*/
}

.cajagracias_2 p {
	margin-top: 0;
	margin-bottom: 13px;
	font-family: "TTFirsLight";
	font-weight: bold;
	font-size: 45px;
	color: #929486;
}

/* FOOTER ---------------------------------- */

.Footer { 
	width:100%;
	height:100px;
	padding: 0px 130px 0px 130px;
	float:left;
	box-sizing:border-box;
	background:#39393b;
}

.cajaTexto { 
	width: 320px;
	height: 22px;

	top: 50%;
	margin-top: -11px;

	position: relative;
	box-sizing: border-box;
	/*background:#666;*/

	font-family: "Scope One Regular";
	font-size: 18px;
	color: #ceccc8;
}

.logoFooter { 
	width: 30px;
	height: 30px;

	top: 50%;
	margin-top: -25px;
		
	position: relative;
	left: 50%;
	margin-left: -15px;

	box-sizing: border-box;
	/*background:#666;*/
}

.logoFooter img{ 
	width:100%;
	height:auto;
}

.cajaRedes {
	width: auto;
	height: 32px;

	top: 50%;
	margin-top: -31px;

	position: relative;
	float: right;
	box-sizing: border-box;
	/*background: #FF0000;*/
}

.cajaRedes img {
	width: 45px;
	height: auto;
	margin-left: 0px;
	margin-right: 0px;
	float: right;
	box-sizing: border-box;
}		


/* CAJA FLOTANTE ----------------------- */

#caja-flotante {
	width: 40px;
	height: 40px;
	background: none;
	position: fixed;
	right: 2%;
	bottom: 2%;
	z-index: 1;
}

#caja-flotante img {
	width:100%;
	height: auto;
}