* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
	font-family: 'Montserrat', sans-serif;
}

body{
  background: rgb(212, 212, 212);
	/* background: #fff; */
	/* padding: 125px 0 0; */
}

a:visited, a:link, a:focus, a:hover, a:active{
	list-style: none;
	text-decoration: none;
}

/* REDES - MENU FIJO LATERAL */
.redes{
	position: fixed;
	right: 0;
	top: 50%;
	font-size: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	z-index: 100;
}

.icono-redes{
	background: gray;
	color: white;
	font-size: 22px;
	width: 55px;
	text-decoration: none;
	padding: 8px;
	display: flex;
	transition: all .5s;
}

.redes-facebook{
	border-radius: 1rem 0 0 0;
}

.redes-facebook:hover{
	background: #3b5998;
}

.redes-instagram:hover{
	background: linear-gradient(45deg, #fca925, #ee1d5f,  #6350a2);
}

.redes-correo:hover{
	background: #1769ff;
}

.redes-whatsapp{
	border-radius: 0 0 0 1rem;
}

.redes-whatsapp:hover{
	background: #4dc247;
}

.icono-redes:hover{
	padding-right: 80px;
	color: white;
	border-radius: 1rem 0 0 1rem;
	box-shadow: 0 0 .5rem rgba(0,0,0,0.42);
}

/* Secciones */
.titulo-espacio, .contenido-espacio{
	max-width: var(--ancho-vista);
	margin: 0 auto;
}

section[id] {
	width: 100%;
  margin-bottom: 1px;
	scroll-margin-top: 125px;
	text-align: center;
}

.contenedor-seccion{
	padding: 0 0;
}

.titulo-seccion{
	text-align: center;
	font-size: 30px;
}

/* Etiquetas */
.contenedorEtiqueta{
  display: flex;
  justify-content: center;
  align-items: center;
	padding: 0 0;
}

.marcoEtiqueta{
  width: 100%;
  height: 100%;
}

.marcoEtiqueta img{
  width: 100%;
  height: 100%;
}

.verEtiquetaTv img{
  width: 340px;
  height: 380px;
}

@media (min-width:1200px){

}

@media (max-width:1199.98px) and (min-width:768px){
  .marcoEtiqueta img, .verEtiquetaTv img{
    width: 90%;
    height: 90%;
  }

}

@media (max-width:767.98px) {
  .titulo-seccion{
    font-size: 25px;
  }

	.marcoEtiqueta img, .verEtiquetaTv img{
    width: 80%;
    height: 80%;
  }
}