/**
 * Estilos da Página de Contacto
 * Template Name: Página de Contactos
 */

.page-contacto {
	
}

.contacto-intro {
	
}

/* Location Section */
.contacto-location {
	
}

/* Wrapper em duas colunas */
.contacto-location__wrapper {
}

/* Coluna Esquerda: Informações */
@media screen and (min-width: 768px) {
	.contacto-location__info {
		height: max-content;
		position: sticky;
		top: 100px;
	}
}

.contacto-info__item {
	background: var(--color-white);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contacto-info__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: var(--brand-verde-tint);
	border-radius: 50%;
	color: var(--color-primary);
}

.contacto-info__content h3 {
	color: var(--color-text-soft);
}

.contacto-info__content a {
	color: var(--color-link);
}

.contacto-info__content a:hover {
	text-decoration: underline;
}

.contacto-info__content p {
}

.contacto-info__maps a {
	width: 32px;
	height: 32px;
}

/* Coluna Direita: Galeria Slider (SwiperJS) */
.contacto-location__gallery {
	aspect-ratio: 1/1;
    position: sticky;
    top: 100px;
}

.swiper-contacto-gallery {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.swiper-contacto-gallery .swiper-slide img {
	object-fit: cover;
	height: 100%;
}

/* Mapa */
.contacto-location__map {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
	height: 450px;
}

.contacto-location__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
/* ==========================================================================
   Slider Navigation & Pagination
   Movido do theme.css: estas classes só são usadas pela galeria desta página
   (ver page-contacto.php e assets/js/pages/page-contacto.js).
   ========================================================================== */
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	transition: all 0.3s ease;
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-nav-prev {
	left: 15px;
	transform: translateY(-50%) rotate(-90deg);
}

.slider-nav-next {
	right: 15px;
	transform: translateY(-50%) rotate(90deg);
}

.slider-nav:hover {
	background: var(--color-white);
}

.slider-nav-prev:hover {
	transform: translateY(-50%) rotate(-90deg) scale(1.1);
}

.slider-nav-next:hover {
	transform: translateY(-50%) rotate(90deg) scale(1.1);
}

.slider-nav svg {
	width: 20px;
	height: 20px;
}

.slider-pagination {
	position: absolute;
	bottom: 15px;
	left: 50%;
	display: flex;
	justify-content: center;
	z-index: 10;
}

.slider-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 1;
}

.slider-pagination .swiper-pagination-bullet-active {
	background: var(--color-white);
	width: 24px;
	border-radius: 5px;
}
