*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
}
.banner{
	width: 100%;
	height: 700px;
	animation: banner 15s infinite linear alternate;
	background-size: 100% 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
@keyframes banner{
	0%, 20%{
		background-image: url("img/slider/Ptar01.jpg");
	}
	25%, 45%{
		background-image: url("img/slider/2.jpg");
	}
	50%, 70%{
		background-image: url("img/slider/Ptar02.jpg");
	}
	75%, 100%{
		background-image: url("img/slider/Ptar03.jpg");
	}
}
.capa{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
}
.info {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            width: 100%; /* Asegura que el contenedor ocupe todo el ancho */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-top: -20px; /* Ajusta este valor para mover el texto hacia arriba */
        }
.info h1 {
		color: #ffffff;
            font-size: 58px; /* Tamaño del texto grande */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra del texto */
            white-space: nowrap; /* Evita que el texto se divida en varias líneas */
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra del texto */
        }
.info p{
	color: #c7c7c7;
	line-height: 1.7;
	margin-bottom: 30px;
}
.info a{
	color: #fff;
	text-decoration: none;
	background: #3088e0;
	padding: 16px 37px;
	display: inline-block;
	border-radius: 50px;
}

.info h5{
	color: #fff;
	font-size: 20px;
	margin-bottom: 20px;
	letter-spacing: -0.5px;
	font-family:'Open Sans';
	word-wrap: break-word; /* Permite que las palabras largas se dividan */
}

