/* =========================================================
   Punta Caribbean Tours — estilos del tema
   ========================================================= */

:root {
	--pc-azul: #1668b0;
	--pc-azul-oscuro: #0d4a80;
	--pc-azul-pie: #0e63a8;
	--pc-azul-claro: #2e86c1;
	--pc-navy: #13303f;
	--pc-arena: #f7efe3;
	--pc-crema: #fdfaf5;
	--pc-tinta: #22303b;
	--pc-gris: #6b7a86;
	--pc-borde: #e4ebf1;
	--pc-blanco: #fff;

	--pc-display: 'Jost', 'Century Gothic', 'Futura', sans-serif;
	--pc-cuerpo: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--pc-ancho: 1120px;
	--pc-radio: 6px;
	--pc-sombra: 0 20px 45px -30px rgba(13, 74, 128, .45);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--pc-cuerpo);
	font-size: 16px;
	line-height: 1.65;
	color: var(--pc-tinta);
	background: var(--pc-blanco);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--pc-azul);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4 {
	font-family: var(--pc-display);
	font-weight: 400;
	letter-spacing: -.01em;
	color: var(--pc-tinta);
	margin: 0 0 .5em;
}

:focus-visible {
	outline: 3px solid var(--pc-azul-claro);
	outline-offset: 2px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.pc-saltar {
	position: absolute;
	left: -9999px;
	background: var(--pc-azul);
	color: #fff;
	padding: 10px 16px;
	z-index: 999;
}

.pc-saltar:focus {
	left: 12px;
	top: 12px;
}

.pc-contenedor {
	width: 100%;
	max-width: var(--pc-ancho);
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- Botones ---------- */

.pc-boton {
	display: inline-block;
	padding: 13px 30px;
	border-radius: 4px;
	font-family: var(--pc-cuerpo);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	transition: background .18s ease, transform .18s ease;
}

.pc-boton:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.pc-boton--primario {
	background: var(--pc-azul);
	color: #fff;
}

.pc-boton--primario:hover {
	background: var(--pc-azul-oscuro);
	color: #fff;
}

/* ---------- Cabecera ---------- */

.pc-cabecera {
	background: #fff;
	border-bottom: 1px solid var(--pc-borde);
	position: relative;
	z-index: 30;
}

.pc-cabecera--transparente {
	position: absolute;
	inset: 0 0 auto;
	background: transparent;
	border-bottom: 0;
}

.pc-cabecera__interior {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 74px;
}

.pc-logo img,
.custom-logo {
	max-height: 62px;
	width: auto;
}

.pc-cabecera--transparente .pc-logo {
	background: #fff;
	border-radius: 0 0 var(--pc-radio) var(--pc-radio);
	padding: 10px 18px 12px;
	margin-top: -4px;
	box-shadow: 0 12px 24px -18px rgba(0, 0, 0, .5);
}

.pc-logo__texto {
	font-family: var(--pc-display);
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--pc-azul-oscuro);
	letter-spacing: .02em;
}

.pc-nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.pc-nav__lista {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pc-nav__lista a {
	font-size: .82rem;
	color: var(--pc-tinta);
	letter-spacing: .01em;
}

.pc-cabecera--transparente .pc-nav__lista a {
	color: var(--pc-tinta);
}

.pc-nav__lista a:hover {
	color: var(--pc-azul);
	text-decoration: none;
}

.pc-nav__whatsapp {
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	border: 1px solid var(--pc-azul);
	color: var(--pc-azul);
	border-radius: 4px;
	padding: 7px 14px;
}

.pc-nav__whatsapp:hover {
	background: var(--pc-azul);
	color: #fff;
	text-decoration: none;
}

.pc-menu-boton {
	display: none;
	background: none;
	border: 0;
	width: 42px;
	height: 42px;
	cursor: pointer;
	position: relative;
}

.pc-menu-boton__barras,
.pc-menu-boton__barras::before,
.pc-menu-boton__barras::after {
	position: absolute;
	left: 10px;
	width: 22px;
	height: 2px;
	background: var(--pc-tinta);
	transition: transform .2s ease;
}

.pc-menu-boton__barras { top: 20px; }
.pc-menu-boton__barras::before { content: ''; top: -7px; left: 0; }
.pc-menu-boton__barras::after { content: ''; top: 7px; left: 0; }

/* ---------- Héroe ---------- */

.pc-hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	background: var(--pc-navy) center/cover no-repeat;
	color: #fff;
	padding: 130px 0 90px;
}

.pc-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(11, 40, 58, .72) 0%, rgba(11, 40, 58, .35) 55%, rgba(11, 40, 58, .12) 100%);
}

.pc-hero__interior {
	position: relative;
	z-index: 2;
	max-width: 640px;
}

.pc-hero__titulo {
	font-size: clamp(2.2rem, 5vw, 3.35rem);
	line-height: 1.14;
	font-weight: 300;
	color: #fff;
	margin-bottom: .35em;
}

.pc-hero__texto {
	font-size: .95rem;
	max-width: 460px;
	color: rgba(255, 255, 255, .92);
	margin: 0 0 28px;
}

/* ---------- Secciones ---------- */

.pc-seccion-cabecera {
	text-align: center;
	margin-bottom: 44px;
}

.pc-eyebrow {
	display: block;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--pc-azul-claro);
	margin-bottom: 10px;
}

.pc-titulo {
	font-size: clamp(1.7rem, 3.4vw, 2.2rem);
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
}

.pc-titulo--izq {
	text-align: left;
	max-width: 16ch;
}

.pc-subrayado {
	display: block;
	width: 46px;
	height: 2px;
	background: var(--pc-tinta);
	margin: 16px auto 0;
}

.pc-vacio {
	text-align: center;
	color: var(--pc-gris);
	background: rgba(255, 255, 255, .7);
	border: 1px dashed var(--pc-borde);
	border-radius: var(--pc-radio);
	padding: 28px;
}

/* ---------- Tours ---------- */

.pc-tours {
	background: var(--pc-arena) bottom center/cover no-repeat;
	padding: 74px 0 96px;
}

.pc-carrusel {
	position: relative;
}

.pc-carrusel__pista {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc(25% - 18px);
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px 2px 18px;
	scrollbar-width: none;
}

.pc-carrusel__pista::-webkit-scrollbar {
	display: none;
}

.pc-carrusel__flecha {
	position: absolute;
	top: 42%;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(34, 48, 59, .25);
	background: rgba(255, 255, 255, .85);
	color: var(--pc-tinta);
	cursor: pointer;
	display: grid;
	place-items: center;
	z-index: 3;
	transition: background .18s ease;
}

.pc-carrusel__flecha:hover {
	background: #fff;
}

.pc-carrusel__flecha svg {
	width: 16px;
	height: 16px;
}

.pc-carrusel__flecha--izq {
	left: -18px;
	transform: rotate(180deg);
}

.pc-carrusel__flecha--der {
	right: -18px;
}

.pc-tarjeta {
	scroll-snap-align: start;
	background: #fff;
	border-radius: var(--pc-radio);
	box-shadow: var(--pc-sombra);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.pc-tarjeta:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 50px -28px rgba(13, 74, 128, .6);
}

.pc-tarjeta__enlace {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	padding: 12px 12px 18px;
}

.pc-tarjeta__enlace:hover {
	text-decoration: none;
}

.pc-tarjeta__figura {
	margin: 0;
	border-radius: 3px;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: #dfe7ee;
}

.pc-tarjeta__figura img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.pc-tarjeta:hover .pc-tarjeta__figura img {
	transform: scale(1.04);
}

.pc-tarjeta__cuerpo {
	padding: 16px 6px 0;
	flex: 1;
	text-align: center;
}

.pc-tarjeta__titulo {
	font-family: var(--pc-cuerpo);
	font-size: .84rem;
	font-weight: 500;
	line-height: 1.45;
	margin: 0 0 6px;
	color: var(--pc-tinta);
}

.pc-tarjeta__precio {
	font-size: .82rem;
	color: var(--pc-gris);
	margin: 0;
}

.pc-tarjeta__precio .pc-precio-desde,
.pc-tarjeta__precio .pct-precio-desde {
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.pc-tarjeta__mas {
	display: grid;
	place-items: center;
	margin: 14px auto 0;
	width: 22px;
	height: 22px;
	color: var(--pc-gris);
}

.pc-tarjeta__mas svg {
	width: 20px;
	height: 20px;
}

/* ---------- Banners destacados ---------- */

.pc-destacados {
	padding: 66px 0 10px;
	background: #fff;
}

.pc-destacados__rejilla {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 26px;
}

.pc-destacado {
	position: relative;
	min-height: 260px;
	display: flex;
	align-items: flex-end;
	border-radius: 3px;
	overflow: hidden;
	background: var(--pc-navy) center/cover no-repeat;
	color: #fff;
}

.pc-destacado::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 28, 42, .92) 0%, rgba(8, 28, 42, .55) 45%, rgba(8, 28, 42, .05) 100%);
}

.pc-destacado__contenido {
	position: relative;
	z-index: 2;
	padding: 24px 26px 22px;
}

.pc-destacado__titulo {
	font-size: 1.3rem;
	font-weight: 400;
	color: #fff;
	margin: 0 0 8px;
}

.pc-destacado__titulo a {
	color: inherit;
}

.pc-destacado__texto {
	font-size: .82rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, .88);
	margin: 0 0 14px;
	max-width: 46ch;
}

.pc-destacado__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
}

.pc-tag {
	display: inline-block;
	background: rgba(255, 255, 255, .18);
	backdrop-filter: blur(2px);
	color: #fff;
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .04em;
	padding: 7px 14px;
	border-radius: 3px;
}

.pc-tag--azul {
	background: var(--pc-azul);
}

/* ---------- Sobre nosotros ---------- */

.pc-confianza {
	padding: 74px 0 60px;
	background: #fff;
}

.pc-confianza__rejilla {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 54px;
	align-items: center;
}

.pc-confianza__intro {
	font-style: italic;
	font-size: .88rem;
	color: var(--pc-gris);
	max-width: 42ch;
	margin: 18px 0 26px;
}

.pc-ventajas {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 18px;
}

.pc-ventajas li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 14px;
	align-items: start;
	font-size: .84rem;
	line-height: 1.55;
	color: #3c4a55;
}

.pc-ventajas__icono {
	color: var(--pc-azul);
	margin-top: 2px;
}

.pc-ventajas__icono svg {
	width: 18px;
	height: 18px;
	display: block;
}

.pc-confianza__imagen {
	margin: 0;
	border-radius: 3px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.pc-confianza__imagen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Banda de beneficios ---------- */

.pc-beneficios {
	padding: 34px 0 74px;
	background: #fff;
}

.pc-beneficios__caja {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 54px 40px 58px;
	border-radius: 3px;
	overflow: hidden;
	background: var(--pc-navy) center/cover no-repeat;
	color: #fff;
	text-align: center;
}

.pc-beneficios__caja::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(11, 35, 48, .82);
}

.pc-beneficio {
	position: relative;
	z-index: 2;
	padding: 0 14px;
}

.pc-beneficio__icono {
	display: block;
	color: #fff;
	margin-bottom: 14px;
}

.pc-beneficio__icono svg {
	width: 42px;
	height: 42px;
	margin: 0 auto;
	stroke-width: 1.3;
}

.pc-beneficio__titulo {
	font-size: 1.28rem;
	font-weight: 300;
	line-height: 1.2;
	color: #fff;
	margin: 0 0 10px;
}

.pc-beneficio__texto {
	font-size: .8rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, .85);
	margin: 0;
	max-width: 30ch;
	margin-inline: auto;
}

/* ---------- Reseñas ---------- */

.pc-resenas {
	padding: 20px 0 80px;
	background: #fff;
}

.pc-resenas__intro {
	font-size: .84rem;
	color: var(--pc-gris);
	max-width: 52ch;
	margin: 12px 0 26px;
}

.pc-resenas__barra {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	border: 1px solid var(--pc-borde);
	border-radius: 4px;
	padding: 14px 20px;
	font-size: .85rem;
	margin-bottom: 20px;
}

.pc-estrellas {
	display: inline-flex;
	gap: 2px;
	color: #f5a623;
}

.pc-estrellas svg {
	width: 15px;
	height: 15px;
}

.pc-estrellas--pequenas svg {
	width: 12px;
	height: 12px;
}

.pc-resenas__nota {
	font-weight: 700;
}

.pc-resenas__conteo {
	color: var(--pc-gris);
}

.pc-resenas__rejilla {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.pc-resena {
	border: 1px solid var(--pc-borde);
	border-radius: 4px;
	padding: 16px 18px 18px;
	font-size: .82rem;
}

.pc-resena__cabecera {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.pc-resena__avatar {
	border-radius: 50%;
}

.pc-resena__fecha {
	display: block;
	font-size: .72rem;
	color: var(--pc-gris);
}

.pc-resena p {
	margin: 8px 0 0;
	color: #46545f;
}

/* ---------- Pie ---------- */

.pc-pie {
	background: var(--pc-azul-pie);
	color: rgba(255, 255, 255, .9);
	font-size: .8rem;
	padding-top: 52px;
}

.pc-pie a {
	color: #fff;
}

.pc-pie__rejilla {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
	gap: 34px;
	padding-bottom: 40px;
}

.pc-pie__marca {
	margin-top: 0;
}

.pc-pie__titulo {
	font-family: var(--pc-cuerpo);
	font-size: .78rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}

.pc-pie__col h3 + h3 {
	margin-top: 18px;
}

.pc-pie__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.pc-pie__redes {
	display: flex;
	gap: 8px;
	margin-top: 18px;
}

.pc-pie__red {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .6);
	font-size: .8rem;
	font-weight: 600;
}

.pc-pie__red:hover {
	background: #fff;
	color: var(--pc-azul-pie);
	text-decoration: none;
}

.pc-pie__col--sellos .pc-widget {
	background: #fff;
	color: var(--pc-tinta);
	border-radius: 4px;
	padding: 12px 14px;
	margin-bottom: 10px;
}

.pc-pie__legal {
	border-top: 1px solid rgba(255, 255, 255, .22);
	padding: 14px 0;
	font-size: .74rem;
}

.pc-pie__legal p {
	margin: 0;
}

/* ---------- Contenido general y WooCommerce ---------- */

.pc-main--tienda,
.pc-main--pagina {
	padding: 48px 0 72px;
}

.pc-entrada__titulo {
	font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--pc-cuerpo);
	font-size: .9rem;
	font-weight: 500;
}

.woocommerce div.product .product_title {
	font-family: var(--pc-display);
	font-weight: 400;
	font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--pc-azul);
	border-radius: 4px;
	font-weight: 600;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background: var(--pc-azul-oscuro);
}

/* ---------- Adaptación a pantallas pequeñas ---------- */

@media (max-width: 1180px) {
	.pc-carrusel__flecha--izq { left: 2px; }
	.pc-carrusel__flecha--der { right: 2px; }
}

@media (max-width: 1024px) {
	.pc-carrusel__pista {
		grid-auto-columns: calc(33.333% - 16px);
	}

	.pc-pie__rejilla {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 860px) {
	.pc-menu-boton {
		display: block;
	}

	.pc-nav {
		position: absolute;
		top: 100%;
		right: 24px;
		left: 24px;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #fff;
		border-radius: var(--pc-radio);
		box-shadow: 0 24px 40px -24px rgba(0, 0, 0, .45);
		padding: 10px 4px;
		display: none;
	}

	.pc-nav.esta-abierto {
		display: flex;
	}

	.pc-nav__lista {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.pc-nav__lista a {
		display: block;
		padding: 11px 18px;
	}

	.pc-nav__whatsapp {
		margin: 8px 18px;
		text-align: center;
	}

	.pc-carrusel__pista {
		grid-auto-columns: calc(50% - 12px);
	}

	.pc-confianza__rejilla {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.pc-titulo--izq {
		max-width: none;
	}

	.pc-beneficios__caja {
		grid-template-columns: 1fr;
		gap: 34px;
		padding: 40px 24px;
	}

	.pc-hero {
		min-height: 460px;
		padding: 120px 0 70px;
	}
}

@media (max-width: 560px) {
	.pc-carrusel__pista {
		grid-auto-columns: 82%;
	}

	.pc-pie__rejilla {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ---------- Ficha de producto (los tours los maqueta el plugin) ---------- */

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--pc-azul-oscuro);
	font-size: 1.4rem;
}

.woocommerce div.product .product_title {
	font-family: var(--pc-display);
	font-weight: 500;
}
