@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@font-face {
  font-family: "titulos";
  src:url("../fuentes/leiko.otf");
}



html {
    font-size: 1rem;
    --negro: #101010;
    --margen1: 11.345vw;
    --blanco: #fafafa;
    --fondosobrearticulos: rgba(146,146,146,0.30);
    --fondosobrebotonoscuro: rgba(255,255,255,.4);
    /*Secciones y post, y post del home y encabezado del home el margen el de 11,345vw*/
    
}
body {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0px;
    font-size: 1em;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: 400;
    color: var(--colornegro);
    background-image: url("../imagenes/fondo.jpg");
    background-size: cover;
    opacity: 0;
    transition: .5s linear 0s;
    min-width: 340px;
}
body.cargado {
    transition: opacity .5s linear 0s;
    opacity: 1;
}

h1,h2,h3,h4,h5,h6,.fuentetitulos {
  font-family: "titulos", sans-serif;
    font-weight: 400;
}
main {
	flex-grow: 1;
    padding-bottom:6em;
}
input:focus, textarea:focus, select:focus {
    outline: 0px;
    
}
.traselementoflotate {
	clear: both;
}

.nocortar {
	white-space:nowrap;
}
.romperpalabras {
    word-break: keep-all;
}
.cortar {
	word-break: break-all;
}
.contenedoranimacion {
	height: 0px;
	overflow: hidden;
	transition: height .3s linear 0s;
	box-sizing:border-box;
}
.calculaalturas {
	overflow: hidden;
	margin: 0px;
	padding: 0px;
}
.aladerecha {
    text-align: right;
}
#capamarco, #capamarco1 {
	z-index: 150;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.8);	
	transform: scale(0);
	background-image:url(../imagenes/procesando.gif);
	background-attachment: fixed;
	background-position: center center;
	background-repeat:no-repeat;
	background-size: 3em auto;
	transition: transform .5s ease-in 0s;
}

#capamarco iframe, .capasmarco iframe {
	width: 100%;
	height: 100%;
	background-color: transparent;
	border: none;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
}
/*ventana de avisos*/
#ventanaavisos, #ventanaaceptar {
	position: fixed;
	left: 0px;
	top: 0px;
	background-image:url("../imagenes/fondo.jpg");
    background-size: cover;
	width: 100%;
	height: 100%;
	color: black;
	z-index: 152;	
	transform: scale(0);
	display: flex;
	justify-content:center;
	align-items:center;
	transition: transform .2s linear 0s;
}
#ventanaavisos div, #ventanaaceptar div {
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items:center;
	padding: 1em;
}
#ventanaavisos h2, #ventanaaceptar h2 {
	background-color: transparent;
    font-size: 2em;
    margin-bottom: .25em;
    text-align: center;
}
#ventanaavisos p, #ventanaaceptar p {
}
/* animaciones estandard*/


#cargaprevia {
	display: none;
}
.botonclaro, .botonoscuro, .contenidosdinamicos h6 a {
    padding-left: 1.25em;
    padding-right: 1.25em;
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 1.5em;
    height: 1.785em;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--blanco);
    color: var(--negro);
    border: solid 1px var(--negro);    
    cursor: pointer;
    line-height: 1em;
    vertical-align: center;
    transition: background-color .6s ease-in 0s,color .6s ease-in 0s,border-color .6s ease-in 0s;;
    margin-bottom: .25em;
    text-decoration: none;
}
.botonoscuro {
    background-color: var(--negro);
    color: var(--blanco);
    border-color: var(--blanco);
}

.botonclaro:hover {
     background-color: rgba(232,232,232,0.20);
}
.botonoscuro:hover, .contenidosdinamicos h6 a:hover {
    background-color: var(--fondosobrebotonoscuro):
}
.botonclaro.separado, .botonoscuro.separado {
    margin-right: 4px;
}
.botonclaro.separado {
    margin-left: 2px;
    margin-right: 2px;
}
.negrita {
    font-weight: bold;
    font-weight: 700;
    
}
.seminegrita {
    font-weight: 500;
    font-weight:bolder;    
}
.ocupatodo {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
#contenedorcontacto {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;   
    z-index: 20;
    color: var(--blanco);
    transform-origin: center top;
    transform: scale(1,0);
    opacity: 1;
    transition: transform .6s ease-in-out 0s, opacity .6s ease-in-out 0s;
    background-image:url("../imagenes/fondoformulario.jpg");
    background-size: cover;
}
#contenedorcontacto.abierto {
    opacity:1;
    transform: scale(1,1);
}
#formulariocontacto input[type="text"], #formulariocontacto input[type="email"], #formulariocontacto textarea {
    width: 100%;
    resize: vertical;
    border-radius: 0em;
    padding: .25em .5em .25em .5em;
    box-shadow: none;
    border-color: transparent;
}
#formulariocontacto input::marker {
    background-color: transparent;
}
#formulariocontacto input, #formulariocontacto checkbox {
    color: white;
}
#formulariocontacto input[type="text"], #formulariocontacto textarea, #formulariocontacto input[type="email"] {
    border: none;
    border-bottom: solid 1px white;
    background-color: transparent;
}
#formulariocontacto #inclave3, #formulariocontacto textarea  {
    background-color: rgba(255,255,255,.5);
    border-bottom: none;
}
#formulariocontacto textarea::placeholder {
    color: rgba(55,55,55,1.00);
}

#formulariocontacto #inclave3 {
    width: 4em;
}
#formulariocontacto a {
    color: white;
}
#formulariocontacto .botonclaro {
    background-color: rgba(255,255,255,.7);
}
#formulariocontacto .botonclaro:hover {
     background-color: rgba(232,232,232,0.20);
    color: white;
    border-color: white;
}
#formulariocontacto p:last-of-type {
    margin-top: 1.25em;
    text-align: right;
}

.contenidosdinamicos {
    line-height: 1.4em;
}
.contenidosdimamicos h6 {
    margin-top: 0px;
    margin-bottom: 0px;
}
.contenidosdinamicos a {
    color: var(--negro);
}

.contenidosdinamicos h6 a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5em;
    font-family: 'Space Grotesk', sans-serif;
}
.rotar {
    animation-name: rota;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    animation-timing-function: linear;
}
@keyframes rota {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(360deg);
    }
        
}
@media (max-width: 600px) {
    .botonclaro, .botonoscuro {
        height: 1.5em;
    }
}
@media (max-width: 385px) {
    html {
        --margen1: 1em;
    }
}