@charset "utf-8";
@import url("../css/variables.css");
@import url("../css/columnas.css");
@import url("../css/menu.css");
@import url("../css/contacto.css");
@import url("../css/boton-flotante.css");
@import url("../css/footer.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: var(--textos);
	font-size: 12pt;
	line-height: 160%;
	background: var(--color4);
	color: var(--color2);
}
hr {
	margin-bottom: 1em;
	height: 1px;
	background: #c6c6c6;
	border: none;
	width: 100%;
}
section {
    width: 100%;
    padding: 2em 1em;
    margin-top: 120px;
}
.afiche {
    width: 300px;
    border-radius: 35px 0 35px 0;
    background: var(--color2);
    border: 4px solid var(--color4);
    display: inline-block;
    transform: rotate(5deg);
    margin: 2em 0;
    box-shadow: var(--sombras);
}
.item__afiche {
    width: 100%;
    padding: 1em 0;
    border-radius: 35px 0 34px 0;
    
}
.blanco {
    color: var(--color4);
}
.boton {
    background: var(--boton);
    color: var(--color4);
    font-size: 1em;
    cursor: pointer;
    transition: 0.5s all;
    text-align: center;
    padding: 5px 15px;
    margin-top: auto;
    display: inline-block;
}

.boton-chico, .boton-blanco {
    color: var(--boton);
    font-size: 12pt;
    cursor: pointer;
    transition: 0.5s all;
    text-align: center;
    padding: 5px;
    text-decoration: underline;
}

.boton-blanco {
    color: var(--color4);
    font-size: inherit;
}

.boton:hover {
    background: var(--color2);
}

.boton-chico:hover, .boton-blanco:hover {
    color: var(--color2);
}

.fondo-rojo {
    background: var(--color1);
    color: var(--color4);
}
.fondo-pink {
    /*background: var(--color5);*/
    border: 1px solid rgba(255,255,255,.4);
    padding: 20px;
    border-radius: 10px;
    transition: 1s;
}
.fondo-gris {
    border: 1px solid var(--boton);
    color: var(--color2);
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.fondo-gris p {
    margin: 0;
    padding: 0;
}
.fondo-descripcion {
    border: 1px solid var(--boton);
    color: var(--color2);
    padding: 15px;
}
.fondo-descripcion p {
    font-size: 10pt;
    padding: 0;
    margin: 0;
}
.fondo-descripcion span {
    font-size: 26pt;
    padding: 10px 0;
    color: var(--boton);
}
.item__icono img {
    width: 30%;
    text-align: center;
}

.titulos {
    font-family: var(--fuente-titulos);
}

.item__img {
    width: 100%;
    text-align: center;
}

.contenedor, .contenedor__columnas {
    width: var(--ancho);
    max-width: var(--ancho-max);
    margin: 0 auto;
    
}

.contenedor-interno {
    margin: 1em;
}
.item__descripcion {
    width: 100%;
    padding: 5px;
    background: #f2f2f2;
}
.item__columnas {
    /*padding: 30px;*/
    margin: 1em 0;
}
.item__columnas:before {
    content: attr(data-label);
    color: inherit;
    color: var(--color1);
}
.clientes {
    width: var(--ancho);
    max-width: var(--ancho-max);
    margin: 2em auto;
    background: var(--color4);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.clientes img {
    width: auto;
}

.borde {
    border-right: 1px dotted #cecece;
}
.barra {
    width: 85%;
    max-width: 500px;
    padding: 15px 10px;
    border: 1px solid #868686;
    color: #454545;
    background: #fff;
    margin: 1em auto;
    position: relative;
    font-size: 15pt;
        
}
.separador {
    width: 1px;
    height: 26px;
    border-right: 1px solid #868686;
    position: relative;
    display: inline-block;
    margin: 0 20px;
    top: 6px;
}
.cabezal {
    display: none;
}
.item__columnas img {
    max-width: 100%;
}
.foto-item {
    width: 100%;
}
.item__columnas li span {
    padding-right: 10px;
}
.item__columnas li {
    list-style: none;
    font-size: 12pt;
}

.item__columnas .icono {
    width: 25px;
    display: inline-block;
}
.tachado {
    text-decoration: line-through;
}

.cabecera {
    display: flex;
    justify-content: center;
    align-items: center;
}
.item__cabecera {
    padding-right: 1em;
    text-align: left;
}

.item__cabecera {
    color: var(--color4);
}

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

.item__columnas:before {
    display: none;
}
.barra {
    font-size: 20pt;
    margin: 2em auto;
        
}
.cabezal {
    display: block;
    background: var(--color2);
    color: var(--color4);
}

h1 {
    margin-top: 0;
}
.contenedor__columnas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

section {
    padding: 2em 0;
    margin-top: 80px;
}
.clientes {
    justify-content: space-between;
}

}