@charset "utf-8";
@import url("../css/fuentes.css");
@import url("../iconos-web/iconos-web.css");
@import url("../css/reset.css");
@import url("../css/header.css");
@import url("../css/footer.css");
@import url("../css/parallax.css");

	
body {
	font-family: 'Pathway Gothic One', sans-serif;
	font-size: 1.2em;
	line-height: 160%;
	font-weight: 400;
	color: #0b2e65;
}

a {
    color: inherit;
    text-decoration: none;
}
h1 {
    font-size: 32pt;
    /*color: #0b2e65;*/
    line-height: normal;
}
.destacado {
    color: yellow;
}
h2 {
    font-size: 24pt;
    color: #30548b;
    line-height: normal;
}

.logo-abanaki {
    max-width: 100px;
    height: auto;
}

.boton {

	font-size: 12pt;
    line-height: 12pt;
	color: #0b2e65;
    background: #fff;
	padding: 3px;
	margin: 10px;
	cursor:pointer;
	border: 1px dotted #0b2e65;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
#inicio {
    background-image: url(../images/foto-fondo-inicio.jpg);
}

#contacto {
    background-image: url(../images/foto-fondo-contacto.jpg);
}

#inicio,
#contacto {
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-size: 12pt;
    color: #fff;
    width: 100%;
    min-height: 100vh;
}

.titulos {
    width: 90%;
	max-width: 1000px;
	margin: 1em auto;
    font-size: 1.3em;
    padding-bottom: .2em;
}

.spoiler {
    width: 100%;
    background: rgba(242, 221, 196, 0.39);
    padding: 1em;
    border-radius: 15px;
    box-shadow: 0px 5px 15px gray;
}
.spoiler h1 {
    font-size: 1.3em;
    padding-bottom: .2em;
    border-bottom: 1px solid #0b2e65;
}
.item-100 ul {
    padding: 1em;
}
.spoiler ul {
    padding: 1em;
}
.contenedor {
	width: 90%;
	max-width: 1000px;
	margin: 1em auto;
    background: rgba(255,255,255,.5);
    padding: 1em;
    border-radius: 12px;
    border: 2px solid #fff;  
}

.contenedor-productos {
    width: 90%;
	max-width: 1000px;
	margin: 1em auto;
    padding: 0;
    color: #0b2e65;
}
.contenedor-productos img {
    width: 100%;
    height: auto;
}
.contenedor-productos p {
    font-size: 15pt;
    line-height: 120%;
}
.textos-index {
	font-size: 1.4em;
	line-height: 130%;
    color: #0b2e65;
	text-align: center;
}
/* CONTACTO */
.contenedor-contacto {
    width: 85%;
    max-width: 400px;
    margin: 2em auto;
    background: rgba(255,255,255,.4);
    text-align: center;
    padding: 1em;
    box-sizing: border-box;
    border-radius: 15px;
    border: 2px dotted gray;
}

input, textarea {
    width: 100%;
    height: 35px;
    margin: 10px 0;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #b2b2b2;
    color: #3e3e3e;
    background: rgba(255,255,255,.4);
    font-size: 1.2em;
    font-family: inherit;
}
textarea {
    height: 60px;
    font-size: 1.2em;
    font-family: inherit;
}
input[type="submit"] {
    background: red;
    color: white;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
    transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;
    padding: .5em;
}
input[type="submit"]:hover {
    background: gray;
    border: none;

}

input:hover, textarea:hover {
    border: 1px solid #d18383;
}

#error, #ok {
	width: 100%;
	font-size: 1.3em;
	line-height: 160%;
	text-align: center;
	padding: 3em;
}


#error {
	color: #484848;
    border: 1px dashed #F00;

}

#ok {
	color: #484848;
	border: 1px solid #484848;
}
/* HASTA ACA CONTACTO */

/* desde */
@media (min-width: 768px){

	.textos-index {
        font-size: 1.6em;
        line-height: 160%;
		text-align: left;	
	}
	
	.derecha {
		text-align: right;
	}
    
    #fotos-secciones img{
    width: 100%;
    margin: 0 auto;
    }
     .contenedor-productos {
         display: flex;
         justify-content: space-between;
         align-items: center;
         
    }   
    .item-100 {
        width: 100%;
    }

   .item-35 {
        width: 35%;
    }

    .item-65 {
        width: 65%;
        padding-left: 2em;
    }

}