
	/* [Object] Modal
   * =============================== */
  .modal {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: left;
	background: rgba(0,0,0, .8);
	transition: opacity .35s ease;
  }
  
  .modal__bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	cursor: pointer;
  }
  
  .modal-state {
	display: none;
  }
  
  .modal-state:checked + .modal {
	opacity: 1;
	visibility: visible;
  }
  
  .modal-state:checked + .modal .modal__inner {
	top: 0;
  }
  
  .modal__inner {
	transition: top .25s ease;
	position: absolute;
	top: -15%;
	right: 0;
	bottom: 0;
	left: 0;
	width: 50%;
	margin: auto;
	overflow: auto;
	background: #fff;
	border-radius: 5px;
	padding: 1em 2em;
	height: 60%;
  }
  
  .modal__close {
	position: absolute;
	right: 1em;
	top: 1em;
	width: 1.1em;
	height: 1.1em;
	cursor: pointer;
  }
  
  .modal__close:after,
  .modal__close:before {
	content: '';
	position: absolute;
	width: 2px;
	height: 1.5em;
	background: #ccc;
	display: block;
	transform: rotate(45deg);
	left: 50%;
	margin: -3px 0 0 -1px;
	top: 0;
  }
  
  .modal__close:hover:after,
  .modal__close:hover:before {
	background: #aaa;
	
  }
  
  .modal__close:before {
	transform: rotate(-45deg);
  }

h1{
  font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
  font-size: 2.5em;
  height: 30px;
  line-height: 35px;
  position: relative;
  font-weight: 700;
  color: rgba(138, 134, 18, 0.5);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
  padding: 0px 0px 5px 0px;

}

.texto-p{
	font-family: Constantia, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
	background: #f1e0a7 url() repeat top left;
	font-weight: 400;
	font-size: 15px;
	color: #aa3e03;
	overflow-y: scroll;
	text-align: center;
	left: 50%;
}

.sombra{
text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
  text-align: center;
}
  
  @media screen and (max-width: 900px) {
	  
	.modal__inner {
	  width: 90%;
	  height: 90%;
	  box-sizing: border-box;
	}
  }
  
  
  
  @media screen and (max-width: 768px) {
	  
	.modal__inner {
	  width: 90%;
	  height: 90%;
	  box-sizing: border-box;
	}
  }
  
  
  
  /* Other
   * =============================== */
  
  .btn {
	cursor: pointer;
	display: inline-block;
	padding: 0;
	color: #fff;
	border-radius: 3px;
  }
  
  .btn:hover,
  .btn:focus {
	box-shadow: 0 1px 2px rgba(13, 13, 13, 0.3) inset;
	
  }
  
  .btn:active {
	background: #27ae60;
	box-shadow: 0 1px 2px rgba(0,0,0, .4) inset;
  }
  
  .btn--blue {
	background: #2980b9;
  }
  
  .btn--blue:hover, img-bt
  .btn--blue:focus {
	background: #3498db;
	
  }
  
  .btn--blue:active {
	background: #2980b9;
	background: rgba(46, 45, 45, 0.1);
	transition: opacity 700ms;
  }
  
  p img {
	max-width: 75%;
	height: auto;
	float: left;
	margin: 0 1em 1em 0;
	background: rgba(46, 45, 45, 0.1);
	transition: opacity 700ms;
  }
  
  @media screen and (max-width: 768px) {
  
	img {
	max-width: 100%;
	height: auto;
	padding: 10px 0 0 0;
	top:3px;
	background: rgb(255, 255, 255);
	}
  }
  
  
  @media screen and (max-width: 600px) {
  
  p img {
  max-width: 100%;
  height: auto;
  padding: 10px 0 0 0;
  top:3px;
  background: rgb(255, 255, 255);
  }
  }
  
