/* Tools */
/* Sube suave el scroll */
html{
	scroll-behavior: smooth;
} 

.zoom {
	transition: transform 1s;
}
.zoom:hover {
    transform: scale(.98);
	box-shadow: 0px 5px 10px#00000083;
	border-width: 10px;
	border-style: solid;
	border-color: #FFF;
}
.whats-flotante{
	position: fixed;
	z-index: 200;
	right: 0px;
	bottom: 0px;
	padding: 15px;   
}
/* sigue */
.sigue {
	position: sticky;
	top: 0;
	z-index: 100;
	}
	
/* LINK */
	a {
    text-decoration: none;
    }
	.link {
		color: #ffffff;
		text-decoration: none;
	}
	.link:hover {
		color: gold;
		transition: color 0.9s;
	}
	.link-negro {
		color: #000000;
		text-decoration: none;
	}
	.link-negro:hover {
		color: gold;
		transition: color 0.9s;
	}

.tipo{
	font-family: fuente;
	}	
@font-face {
	font-family: fuente;
	src: url("../fuente.TTF") format("opentype");
	}

/* COLOR */
    .color-blanco{
        color:#ffffff;
    }
    .color-negro{
        color:#000000;
    }
	.color-gris{
        color:#777777;
    }
    .color-1{
        color:#979797;
    }
    .color-2{
        color:#ffdd6c;
    }
    
/* FONDO */
    .fondo-blanco{
        background-color: #ffffff;
    }
    .fondo-gris{
        background-color: #7d7d7d;
        color:#ffffff;
    }
    .fondo-negro{
        background-color: #000000;
        color:#bbbaba;
    }
    .fondo-1{
        background-color: #c3c3c3;
        color:#535353;
    }
    .fondo-2{
        background-color: #ffdd6c;
        color:#ffffff;
    }



/* ---------- ANIMACIONES ---------- */

.navbar-centered {
justify-content: center;
display: flex;
}

/* Sube over */
.sube{
	top: 0px;
	background-color: transparent ;
}
.sube:hover{
	transform: translate(0, -50px);
	transition-duration: 1s ;
	transition-timing-function: ease-in-out;
	/*background-color: #FFF ;*/
}
.desaparece{
	opacity: 1;
	/*background-color: rgba(255, 255, 255, 0.9) ;*/

}
.desaparece:hover{
	opacity: 0;
	transition-duration: 1s ;
	transition-timing-function: ease-in-out;
}


/* ---------- GENERALES ---------- */

/* Movil */
@media (max-width: 768px) {				
	.ocultar-movil{
		position: relative;
		display:none;
		}	
}		

@media (min-width: 768px) {			
	.mostrar-movil{
		position: relative;
		display:none;
		}
	}	



/* Letras Menu */
.navbar-default .navbar-nav > li > a {
	color: #787878 ;
	background-color: transparent;
	border-width: 1px;
	border-style: solid;
	border-color:  transparent;
}
/* Menu Rallitas icono */
.navbar-default .navbar-toggle .icon-bar {
  background-color:  #ffda1d ;
}
/* Menu Over */
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
color: rgb(255, 255, 255);
background-color:  #707070 ;
border-width: 1px;
border-style: solid;
border-color: transparent;
}

/* MENU Abierto */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: right;
  padding: 10px;
  margin: 2px 0 0;
  font-size: 14px;
  text-align:right;
  list-style: none;
  background-color: rgb(67, 67, 67);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid black;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 10px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: rgb(255, 255, 255);
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #ffda1d ;
  text-decoration: none;
  background-color: transparent;
}


/* BOTON */ 
.btn-btn1 {
	color: #ffffff;
	background-color: black ;
	border-color: gold;
	border: 1px solid;
  }
  .btn-btn1:focus{
	color:  gold;
	background-color: black;
	border-color:  black;
	border: 1px solid;
  }
  .btn-btn1:hover {
	color:  gold;
	background-color: black;
	border-color:  black;
	border: 1px solid;
  }
  .btn {
	display: inline-block;
	padding: 20px 30px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
		touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
	background-image: none;
	border: 1px solid ;
	border-radius:0px;
  }

.sombra {
	box-shadow: 0px 1px 8px#0000004f;
	}	
.sombra-texto {
	text-shadow:0px 3px 8px#0000007c;
	}

