/* ============================================
   POZO DE ALMAS - ESTILOS EXTRA
   Estilos complementarios sobre css/main.css del template
   ============================================ */

/* Eventos */
.event-item {
	background-color: #fff;
	border: 1px solid #eeeeee;
	border-radius: 6px;
	padding: 25px 30px;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.event-item:hover {
	box-shadow: 0px 10px 30px 0px rgba(245, 63, 81, 0.15);
	border-color: #f53f51;
}

.event-date h2 {
	font-size: 40px;
	font-weight: 700;
	color: #f53f51;
	line-height: 1em;
}

.event-date p {
	margin: 0;
	font-size: 13px;
	text-transform: uppercase;
	color: #222222;
	font-weight: 500;
}

.event-date {
	min-width: 90px;
}

.event-info h4 {
	font-size: 18px;
	color: #222222;
	font-weight: 600;
	margin-bottom: 5px;
}

.event-info p {
	margin: 0;
	font-size: 14px;
}

.event-item .primary-btn {
	padding-left: 30px;
	padding-right: 30px;
	font-size: 14px;
	background: #f53f51;
	color: #fff;
	border: none;
	border-radius: 50px;
}

.event-item .primary-btn:hover {
	background: #ca4829;
	color: #fff;
}

.event-info {
	padding: 10px 0;
}

/* Barra de progreso Verkami */
.progress-wrap .progress {
	height: 12px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.25);
	overflow: hidden;
}

.progress-wrap .progress-bar {
	width: 0%;
	height: 100%;
	background-color: #fff;
	border-radius: 10px;
	-webkit-transition: width 1.5s ease 0s;
	-moz-transition: width 1.5s ease 0s;
	-o-transition: width 1.5s ease 0s;
	transition: width 1.5s ease 0s;
}

.progress-wrap .stats span {
	font-size: 14px;
	font-weight: 400;
}

/* Navegación activa */
.nav-menu .menu-active > a {
	color: #f53f51;
	font-weight: 600;
}

/* Estrellas en testimonios */
.single-testimonial .stars {
	color: #ffc107;
	font-size: 15px;
	letter-spacing: 3px;
}

.single-testimonial .stars i {
	margin: 0 2px;
}

/* Responsive para eventos */
@media (max-width: 767.98px) {
	.event-item {
		text-align: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		flex-direction: column;
	}

	.event-date {
		width: 90px;
		margin: 0 auto 15px;
	}

	.event-item .primary-btn {
		margin-top: 15px;
	}
}

/* Ajuste del hero en móvil */
@media (max-width: 800px) {
	.banner-content .primary-btn {
		font-size: 13px;
		padding-left: 25px;
		padding-right: 35px;
	}
}

.banner-content h1 {
	margin-bottom: 20px;
}

.banner-content h5 {
	margin-bottom: 30px;
}

/* Botón de mapa (solo icono) */
.event-btn-map {
	padding-left: 18px;
	padding-right: 18px;
}

.event-btn-map span {
	position: static;
	transform: none;
	font-size: 16px;
}

/* Botones de eventos lado a lado */
.event-actions .primary-btn + .primary-btn {
	margin-left: 10px;
}

/* Texto justificado en sinopsis */
.info-content p {
	text-align: justify;
}

/* Forzar salto de línea en h1 del hero siempre */
.banner-content h1 br,
.banner-content br {
	display: block !important;
}

/* Enlaces del footer */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links li a {
	color: #ffffff;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-links li a:hover {
	color: #f53f51;
	text-decoration: none;
}

/* Menú negro en páginas legales (sin hero oscuro) */
body.page-legal .nav-menu a {
	color: #333;
}

body.page-legal .nav-menu a:hover {
	color: #f53f51;
}

/* Al hacer scroll, menú vuelve a blanco */
#header.header-scrolled .nav-menu a {
	color: #fff;
}

/* Skip to content link */
.skip-link {
	position: absolute;
	top: -100%;
	left: 0;
	background: #f53f51;
	color: #fff;
	padding: 10px 20px;
	z-index: 9999;
	font-weight: 600;
	text-decoration: none;
}

.skip-link:focus {
	top: 0;
}

/* Header scrolled más compacto */
#header.header-scrolled {
	height: 4em;
}

/* Imagen de fondo del hero */
.banner-area {
	min-height: 100vh;
	background: url('/img/bg-hero.webp') center no-repeat;
	background-size: cover;
}

@media (max-width: 768px) {
	.banner-area {
		background-position: left center;
	}
}

/* H1 del hero 20% más grande */
.banner-content h1 {
	font-size: 100px;
}

/* Estilo de precios (antes era h1, ahora es p.price-value) */
.single-price .price-bottom .price-value {
	font-size: 60px;
	font-weight: 300;
	margin-bottom: 0;
	line-height: 1;
}

.single-price .price-bottom .price-value span {
	font-size: 25px;
	margin-top: -14px;
	position: absolute;
	margin-left: -20px;
}

.single-price:hover .price-bottom .price-value {
	color: #fff;
}

/* Sobre el autor: fondo alineado a la derecha en móvil */
@media (max-width: 768px) {
	.fact-area {
		background-position: calc(100% + 180px) center;
	}
}