/* ==========================================================================
   Cape Verde Trip — Tour Page
   public/tour/tour.css
   ========================================================================== */

:root {
	--cvt-green     : #1D9E75;
	--cvt-green-dk  : #0F6E56;
	--cvt-green-lt  : #E8F5F0;
	--cvt-amber     : #BA7517;
	--cvt-amber-lt  : #FEF3C7;
	--cvt-red       : #E24B4A;
	--cvt-blue      : #185FA5;
	--cvt-tx        : #1A1917;
	--cvt-tx2       : #4B5563;
	--cvt-tx3       : #9CA3AF;
	--cvt-border    : #E5E7EB;
	--cvt-bg        : #F7F6F3;
	--cvt-white     : #FFFFFF;
	--cvt-r         : 10px;
	--cvt-max       : 1200px;
}

.cvt-tour-page *, .cvt-tour-page *::before, .cvt-tour-page *::after { box-sizing: border-box; }
.cvt-tour-page img { max-width: 100%; height: auto; display: block; }

/* ── Contentor ── */
.cvt-container       { max-width: var(--cvt-max); margin: 0 auto; padding: 0 20px; }
.cvt-container-wide  { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

/* ── Botões ── */
.cvt-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 24px; border-radius: 8px; font-size: 14px;
	font-weight: 600; text-decoration: none; cursor: pointer;
	border: none; font-family: inherit; transition: all 0.15s;
}
.cvt-btn-primary   { background: var(--cvt-green); color: #fff; }
.cvt-btn-primary:hover { background: var(--cvt-green-dk); color: #fff; transform: translateY(-1px); }
.cvt-btn-ghost     { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.cvt-btn-ghost:hover { background: rgba(255,255,255,0.25); }
.cvt-btn-full      { width: 100%; justify-content: center; }
.cvt-btn-lg        { padding: 14px 32px; font-size: 16px; }

/* ══════════════════════════════════════
   LANGUAGES
══════════════════════════════════════ */


.cvt-tour-lang-switch {
	display: flex;
	justify-content: center;
	gap: 6px;
	max-width: 340px;      /* mesma largura da sidebar */
	margin: 0 0 16px auto; /* encosta à direita, alinhado com a sidebar, com espaço por baixo */
}
.cvt-lang-link {
	padding: 5px 10px; border-radius: 6px;
	font-size: 12px; font-weight: 700; letter-spacing: .03em;
	color: var(--cvt-tx3); text-decoration: none;
}
.cvt-lang-link:hover  { background: var(--cvt-bg); color: var(--cvt-tx); }
.cvt-lang-link.active { background: var(--cvt-green-lt); color: var(--cvt-green-dk); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.cvt-tour-hero {
	position: relative;
	min-height: 470px;
	border-radius: 20px;
	overflow: hidden;
	background: #1A1917 center/cover no-repeat;
	display: flex;
	align-items: flex-start;
	padding-top: 32px;
}
.cvt-tour-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient( 90deg, rgba(4,25,27,.88) 0%, rgba(4,25,27,.62) 45%, rgba(4,25,27,.12) 100% );
}
.cvt-tour-hero-inner {
	position: relative; z-index: 1;
	max-width: 620px;
	padding: 0 32px;
}
.cvt-hero-duration-badge {
	position: absolute; top: 20px; right: 20px; z-index: 2;
	background: var(--cvt-green);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 8px 14px;
	border-radius: 8px;
}
.cvt-trust-icon-glyph { font-size: 16px; }
.cvt-tour-badges { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.cvt-badge {
	display: inline-block; padding: 4px 12px; border-radius: 4px;
	font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.cvt-badge-amber { background: var(--cvt-amber); color: #fff; }
.cvt-badge-dark  { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.3); }

.cvt-tour-hero-title {
	font-size: clamp(28px, 5vw, 52px); font-weight: 800; color: #fff;
	line-height: 1.1; margin: 0 0 10px; letter-spacing: -0.02em;
}
.cvt-tour-hero-subtitle {
	font-size: clamp(16px, 2.5vw, 22px); color: var(--cvt-green);
	font-weight: 600; margin: 0 0 12px; font-style: italic;
}
.cvt-tour-hero-desc {
	font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6;
	margin: 0 0 20px; max-width: 580px;
}
.cvt-tour-trust-icons {
	display: flex; flex-wrap: wrap; gap: 20px;
	margin-bottom: 24px;
}
.cvt-trust-icon {
	display: flex; align-items: center; gap: 6px;
	font-size: 13px; color: rgba(255,255,255,0.85);
}
.cvt-tour-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sidebar no hero */
.cvt-tour-sidebar-card {
	position: sticky;
	top: 110px;
	background: #fff;
	border-radius: 20px;
	border: 1px solid #e6ecea;
	box-shadow: 0 10px 30px rgba(0,45,43,.08);
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.cvt-sb-section + .cvt-sb-section {
	padding-top: 18px;
	border-top: 1px solid #eef2f1;
}
.cvt-sb-eyebrow { font-size: 12px; color: var(--cvt-tx3); text-transform: uppercase; letter-spacing: .04em; }
.cvt-sb-price-val { font-size: 44px; font-weight: 800; color: var(--cvt-tx); line-height: 1.05; }
.cvt-sb-price-onreq { font-size: 22px; }
.cvt-sb-price-unit { font-size: 13px; color: var(--cvt-tx3); margin-bottom: 8px; }

.cvt-sb-facts { display: flex; flex-direction: column; gap: 10px; }
.cvt-sb-fact { display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--cvt-tx2); }
.cvt-sb-fact-icon { font-size: 16px; width: 18px; text-align: center; }

.cvt-sb-expert-title { font-size: 13px; font-weight: 700; color: var(--cvt-tx); margin-bottom: 10px; }
.cvt-sb-expert-row { display: flex; align-items: flex-start; gap: 12px; }
.cvt-sb-expert-photo { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.cvt-sb-expert-name { font-weight: 700; font-size: 15px; }
.cvt-sb-expert-role { font-size: 13px; color: var(--cvt-tx3); margin-bottom: 4px; }
.cvt-sb-expert-btn {
	display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600;
	color: var(--cvt-green); text-decoration: none;
}

.cvt-sb-benefits ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.cvt-sb-benefits li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--cvt-tx2); }
.cvt-sb-cta {
	width: 100%; height: 56px; display: flex; align-items: center; justify-content: center;
	background: var(--cvt-tx); color: #fff; border-radius: 12px; font-weight: 700;
	text-decoration: none; font-size: 16px;
}
.cvt-sb-whatsapp {
	display: flex; gap: 10px; align-items: flex-start;
	background: #EAF5F1; border-radius: 14px; padding: 14px;
	text-decoration: none; color: var(--cvt-tx); font-size: 13.5px; line-height: 1.4;
}
.cvt-sb-whatsapp-icon { font-size: 18px; }

.cvt-price-label { font-size: 28px; font-weight: 800; color: var(--cvt-tx); }
.cvt-price-unit  { font-size: 12px; color: var(--cvt-tx3); margin-bottom: 10px; }
.cvt-price-meta  { display: flex; flex-direction: column; gap: 5px; margin: 12px 0; }
.cvt-price-meta-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--cvt-tx2); }
.cvt-price-agent { display: flex; align-items: center; gap: 10px; margin: 12px 0; padding: 10px; background: var(--cvt-bg); border-radius: 8px; }
.cvt-agent-avatar-sm { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.cvt-agent-name-sm { font-size: 13px; font-weight: 600; color: var(--cvt-tx); }
.cvt-agent-role-sm { font-size: 11px; color: var(--cvt-tx3); }

/* Stars */
.cvt-tour-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.cvt-star.full  { color: #F59E0B; }
.cvt-star.half  { color: #F59E0B; opacity: 0.6; }
.cvt-star.empty { color: #D1D5DB; }
.cvt-rating-val   { font-weight: 700; font-size: 14px; }
.cvt-rating-count { font-size: 12px; color: var(--cvt-tx3); }

/* ══════════════════════════════════════
   METRICS BAR
══════════════════════════════════════ */
.cvt-tour-metrics-bar {
	background: #fff;
	border-bottom: 1px solid var(--cvt-border);
	padding: 16px 0;
}
.cvt-metrics-inner {
	display: flex; flex-wrap: wrap; gap: 24px; align-items: center;
}
.cvt-metric-item {
	display: flex; align-items: center; gap: 10px;
}
.cvt-metric-icon { font-size: 20px; }
.cvt-metric-label { font-size: 10px; font-weight: 700; color: var(--cvt-tx3); text-transform: uppercase; letter-spacing: 0.06em; }
.cvt-metric-val   { font-size: 14px; font-weight: 600; color: var(--cvt-tx); }

/* ══════════════════════════════════════
   TABS NAV
══════════════════════════════════════ */
.cvt-tour-tabs-nav {
	position: sticky; top: 0; z-index: 100;
	background: #fff; border-bottom: 2px solid var(--cvt-border);
	overflow-x: auto;
}
.cvt-tour-tabs-nav .cvt-container { display: flex; gap: 0; }
.cvt-tab-link {
	display: inline-block; padding: 14px 18px;
	font-size: 13px; font-weight: 500; color: var(--cvt-tx2);
	text-decoration: none; white-space: nowrap;
	border-bottom: 2px solid transparent; margin-bottom: -2px;
	transition: all 0.15s;
}
.cvt-tab-link:hover  { color: var(--cvt-green); }
.cvt-tab-link.active { color: var(--cvt-green); border-bottom-color: var(--cvt-green); font-weight: 700; }

/* ══════════════════════════════════════
   LAYOUT PRINCIPAL
══════════════════════════════════════ */
.cvt-tour-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 40px;
}
.cvt-tour-main-col {
	min-width: 0; /* impede que imagens/galeria "estiquem" a coluna */
}
@media (max-width: 1439px) {
	.cvt-tour-shell { gap: 28px; }
}
@media (max-width: 1023px) {
	.cvt-tour-shell { grid-template-columns: 1fr; }
	.cvt-tour-sidebar { display: none; }
}

/* ══════════════════════════════════════
   GALERIA
══════════════════════════════════════ */
.cvt-tour-gallery {
	position: relative; margin: 28px 0; border-radius: var(--cvt-r);
	overflow: hidden;
}
.cvt-gallery-slider { display: flex; transition: transform 0.4s ease; }
.cvt-gallery-slide  {
	flex: 0 0 100%;
	padding: 0 4px; /* cria o "gap" de 8px entre fotos sem mexer no transform em % */
	box-sizing: border-box;
}
.cvt-gallery-slide img { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; }

@media (min-width: 1024px) {
	.cvt-gallery-slide { flex: 0 0 33.3333%; }
	.cvt-gallery-slide img { height: 280px; }
}
.cvt-gallery-prev,
.cvt-gallery-next {
	position: absolute; top: 50%; transform: translateY(-50%);
	background: rgba(0,0,0,0.5); color: #fff; border: none; cursor: pointer;
	width: 40px; height: 40px; border-radius: 50%; font-size: 20px;
	display: flex; align-items: center; justify-content: center;
	transition: background 0.15s;
}
.cvt-gallery-prev { left: 12px; }
.cvt-gallery-next { right: 12px; }
.cvt-gallery-prev:hover,
.cvt-gallery-next:hover { background: rgba(0,0,0,0.75); }
.cvt-gallery-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.cvt-gallery-dot {
	width: 8px; height: 8px; border-radius: 50%; border: none;
	background: rgba(255,255,255,0.5); cursor: pointer; padding: 0;
}
.cvt-gallery-dot.active { background: #fff; }

/* ══════════════════════════════════════
   WHY CHOOSE
══════════════════════════════════════ */
.cvt-tour-why { padding: 32px 0; }
.cvt-why-card-wrap {
	border: 1px solid var(--cvt-border);
	border-radius: 20px;
	background: #fff;
	padding: 28px 26px 30px;
}
.cvt-tour-why h2 {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	color: var(--cvt-tx);
	margin: 0 0 26px;
}
.cvt-why-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.cvt-why-card {
	text-align: center;
	padding: 0 18px;
	border-right: 1px solid var(--cvt-border);
}
.cvt-why-card:last-child { border-right: none; }
.cvt-why-icon { font-size: 32px; margin-bottom: 10px; }
.cvt-why-card h3 { font-size: 14px; font-weight: 700; color: var(--cvt-tx); margin: 0 0 6px; }
.cvt-why-card p  { font-size: 13px; color: var(--cvt-tx2); line-height: 1.5; margin: 0; }

@media (max-width: 768px) {
	.cvt-why-card { border-right: none; border-bottom: 1px solid var(--cvt-border); padding: 16px 0; }
	.cvt-why-card:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════
   ABOUT + HIGHLIGHTS
══════════════════════════════════════ */
.cvt-tour-about-wrap  { padding: 40px 0; border-bottom: 1px solid var(--cvt-border); }
.cvt-about-highlights-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.cvt-about-col h2,
.cvt-highlights-col h2 { font-size: 22px; font-weight: 700; margin: 0 0 16px; color: var(--cvt-tx); }
.cvt-about-agent {
	display: flex; align-items: center; gap: 12px;
	margin-bottom: 16px; padding: 12px; background: var(--cvt-bg); border-radius: 8px;
}
.cvt-agent-avatar   { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.cvt-agent-name     { font-size: 14px; font-weight: 600; color: var(--cvt-tx); }
.cvt-agent-stars    { font-size: 13px; color: var(--cvt-tx2); margin-top: 2px; }
.cvt-about-text     { font-size: 14px; color: var(--cvt-tx2); line-height: 1.7; }
.cvt-readmore-btn {
	background: none; border: none; color: var(--cvt-green);
	font-size: 14px; font-weight: 600; cursor: pointer; margin-top: 10px;
	padding: 0; font-family: inherit;
}
.cvt-highlights-col {
	background: var(--cvt-green-lt);
	border-radius: 20px;
	padding: 30px 28px;
}
.cvt-highlights-list { list-style: none; margin: 0 0 16px; padding: 0; }
.cvt-highlights-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 15px; color: var(--cvt-tx2); }
.cvt-hl-check {
	color: var(--cvt-green-dk);
	font-weight: 700;
	flex-shrink: 0;
	font-size: 18px;
	width: 22px; height: 22px;
	display: inline-flex; align-items: center; justify-content: center;
}
.cvt-highlights-img img { border-radius: var(--cvt-r); width: 100%; }

/* ══════════════════════════════════════
   ITINERÁRIO
══════════════════════════════════════ */
.cvt-tour-itinerary { padding: 40px 0; border-bottom: 1px solid var(--cvt-border); }
.cvt-itin-map-grid { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 48px; }
.cvt-itin-col, .cvt-map-col { min-width: 0; }
.cvt-leaflet-map { max-width: 100%; }
.cvt-tour-itinerary h2 { font-size: 22px; font-weight: 700; margin: 0 0 20px; color: var(--cvt-tx); }
.cvt-itin-item { border: 1px solid var(--cvt-border); border-radius: var(--cvt-r); margin-bottom: 8px; overflow: hidden; }
.cvt-itin-item.featured { border-color: var(--cvt-green); }
.cvt-itin-head {
	width: 100%; background: none; border: none; cursor: pointer;
	padding: 14px 16px; text-align: left; display: flex; align-items: center; gap: 10px;
	font-family: inherit; transition: background 0.12s;
}
.cvt-itin-head:hover { background: var(--cvt-green-lt); }
.cvt-itin-num     { font-size: 12px; font-weight: 700; color: var(--cvt-green); min-width: 40px; }
.cvt-itin-title   { font-size: 15.5px; font-weight: 700; color: var(--cvt-tx); flex: 1; }
.cvt-itin-summary { font-size: 12.5px; font-style: italic; color: var(--cvt-tx2); flex: 2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cvt-itin-chevron { font-size: 12px; color: var(--cvt-tx3); transition: transform 0.2s; }
.cvt-itin-head[aria-expanded="true"] .cvt-itin-chevron { transform: rotate(180deg); }
.cvt-itin-body    { padding: 16px; border-top: 1px solid var(--cvt-border); background: var(--cvt-bg); }
.cvt-itin-img     { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; margin-bottom: 12px; }
.cvt-itin-body p  { font-size: 14px; color: var(--cvt-tx2); line-height: 1.65; margin: 0 0 12px; }
.cvt-itin-meta    { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--cvt-tx2); margin-bottom: 8px; }
.cvt-itin-note    { font-size: 12px; color: var(--cvt-amber); background: var(--cvt-amber-lt); padding: 8px 12px; border-radius: 6px; }
.cvt-itin-head {
	flex-wrap: wrap;
	row-gap: 4px;
}
.cvt-itin-num     { order: 1; }
.cvt-itin-title   { order: 2; flex: 1 1 auto; }
.cvt-itin-chevron { order: 3; margin-left: auto; }
.cvt-itin-summary {
	order: 4;
	flex: 1 1 100%;
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
	padding-left: 50px;
}

/* ══════════════════════════════════════
   MAPA
══════════════════════════════════════ */
.cvt-map-col h2 { font-size: 18px; font-weight: 700; margin: 0 0 14px; }
.cvt-leaflet-map { height: 400px; border-radius: var(--cvt-r); overflow: hidden; border: 1px solid var(--cvt-border); }
.cvt-map-static  { width: 100%; border-radius: var(--cvt-r); }
.cvt-map-legend  { display: flex; flex-wrap: wrap; gap: 12px; font-size: 11px; color: var(--cvt-tx3); margin-top: 8px; }
.cvt-map-tags    { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.cvt-map-tag     { background: var(--cvt-bg); border-radius: 8px; padding: 10px; }
.cvt-map-tag small { display: block; font-size: 10px; color: var(--cvt-tx3); text-transform: uppercase; }
.cvt-map-tag strong { font-size: 13px; color: var(--cvt-tx); }

/* ══════════════════════════════════════
   INCLUDED
══════════════════════════════════════ */
.cvt-tour-included { padding: 40px 0; }
.cvt-included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cvt-included-col {
	border-radius: 18px;
	padding: 24px 26px;
	background: var(--cvt-bg);
}
.cvt-included-col--included { background: var(--cvt-green-lt); }
.cvt-included-col--excluded { background: #FDEAEA; }
.cvt-included-col--extras   { background: #fff; border: 1px solid var(--cvt-border); }
.cvt-included-col--ideal    { background: #fff; border: 1px solid var(--cvt-border); }
.cvt-included-col h3 { font-size: 16px; font-weight: 700; margin: 0 0 14px; color: var(--cvt-tx); }
.cvt-included-col ul { list-style: none; margin: 0; padding: 0; }
.cvt-included-col li { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; font-size: 14px; color: var(--cvt-tx2); }
.cvt-check-green { color: var(--cvt-green); font-weight: 700; }
.cvt-check-red   { color: var(--cvt-red);   font-weight: 700; }
.cvt-check-blue  { color: var(--cvt-blue);  font-weight: 700; }
.cvt-extra-price { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--cvt-green); }

.cvt-ideal-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.cvt-ideal-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--cvt-tx2); }
.cvt-ideal-icon { font-size: 18px; width: 22px; text-align: center; }

@media (max-width: 768px) {
	.cvt-included-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   PREÇOS
══════════════════════════════════════ */
.cvt-price-card {
	position: relative;
	border: 1px solid var(--cvt-border);
	border-radius: 16px;
	padding: 18px 20px;
}
.cvt-price-card.highlight { background: var(--cvt-green-lt); border-color: var(--cvt-green); }
.cvt-price-card-tag {
	position: absolute; top: 12px; right: 12px;
	background: var(--cvt-amber); color: #fff; font-size: 10px; font-weight: 700;
	padding: 3px 10px; border-radius: 10px; text-transform: uppercase;
}
.cvt-price-card-row { display: flex; align-items: center; gap: 14px; }
.cvt-price-card-icon { font-size: 22px; flex-shrink: 0; }
.cvt-price-card-participants { font-size: 13px; font-weight: 600; color: var(--cvt-tx2); margin-bottom: 3px; }
.cvt-price-card-amount { font-size: 22px; font-weight: 800; color: var(--cvt-tx); line-height: 1.1; }
.cvt-price-card-unit { font-size: 12px; color: var(--cvt-tx3); }
.cvt-price-note {
	background: var(--cvt-green-lt);
	color: var(--cvt-green-dk);
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 13px;
	margin-top: 16px;
}

.cvt-price-table-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

@media (max-width: 600px) {
	.cvt-price-table-wrap { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   GROUP DATES
══════════════════════════════════════ */

.cvt-tour-group-dates { padding: 40px 0; border-bottom: 1px solid var(--cvt-border); }
.cvt-tour-group-dates h2 { font-size: 22px; font-weight: 700; margin: 0 0 20px; }
.cvt-group-dates-list { display: flex; flex-direction: column; gap: 12px; }
.cvt-group-date-row {
	display: grid;
	grid-template-columns: 1fr auto auto auto;
	align-items: center;
	gap: 20px;
	border: 1px solid var(--cvt-border);
	border-radius: var(--cvt-r);
	padding: 16px 20px;
}
.cvt-group-date-range { font-size: 14px; color: var(--cvt-tx); }
.cvt-group-date-arrow { color: var(--cvt-tx3); margin: 0 4px; }
.cvt-group-date-spots { font-size: 13px; color: var(--cvt-tx2); }
.cvt-group-date-full { color: var(--cvt-red); font-weight: 600; }
.cvt-group-date-price { font-size: 18px; font-weight: 800; color: var(--cvt-tx); }
.cvt-group-date-price span { font-size: 12px; font-weight: 400; color: var(--cvt-tx3); }
.cvt-btn-disabled { opacity: 0.5; pointer-events: none; }

.cvt-sb-next-date-row { display: flex; justify-content: space-between; align-items: center; margin: 6px 0; font-size: 14px; }
.cvt-group-dates-intro { font-size: 13px; color: var(--cvt-tx2); margin: -8px 0 20px; max-width: 640px; }
@media (max-width: 600px) {
	.cvt-group-date-row { grid-template-columns: 1fr 1fr; row-gap: 10px; }
}


/* ══════════════════════════════════════
   AGENTE BLOCK
══════════════════════════════════════ */
.cvt-tour-agent-block { padding: 32px 0; border-bottom: 1px solid var(--cvt-border); }
.cvt-agent-block-inner { display: flex; align-items: center; gap: 20px; }
.cvt-agent-block-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.cvt-agent-block-label { font-size: 11px; font-weight: 700; color: var(--cvt-tx3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.cvt-agent-block-info h3 { font-size: 18px; font-weight: 700; margin: 0 0 4px; }
.cvt-agent-block-info p  { font-size: 13px; color: var(--cvt-tx2); margin: 0 0 6px; }
.cvt-agent-profile-link  { font-size: 13px; color: var(--cvt-green); font-weight: 600; text-decoration: none; }

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.cvt-tour-reviews { padding: 40px 0; border-bottom: 1px solid var(--cvt-border); }
.cvt-reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.cvt-reviews-header h2 { font-size: 22px; font-weight: 700; margin: 0; }
.cvt-reviews-all { font-size: 13px; color: var(--cvt-green); font-weight: 600; text-decoration: none; }
.cvt-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cvt-review-card { background: var(--cvt-bg); border-radius: var(--cvt-r); padding: 18px; }
.cvt-review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cvt-review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.cvt-review-avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: var(--cvt-green); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.cvt-review-author  { font-size: 14px; font-weight: 600; color: var(--cvt-tx); }
.cvt-review-country { font-size: 12px; color: var(--cvt-tx3); }
.cvt-review-stars   { margin-bottom: 8px; }
.cvt-review-meta    { display: flex; gap: 10px; font-size: 11px; color: var(--cvt-tx3); margin-bottom: 8px; }
.cvt-review-text    { font-size: 13px; color: var(--cvt-tx2); line-height: 1.6; }
.cvt-review-date    { font-size: 11px; color: var(--cvt-tx3); margin-top: 8px; }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cvt-tour-cta-section {
	background: #fff;
	border: 1px solid var(--cvt-border);
	border-radius: 20px;
	padding: 48px;
	margin: 40px 0;
}
.cvt-cta-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: center; }
.cvt-cta-eyebrow { font-size: 12px; font-weight: 700; color: var(--cvt-green); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.cvt-cta-content h2 { font-size: 30px; font-weight: 800; color: var(--cvt-tx); margin: 0 0 14px; line-height: 1.2; }
.cvt-cta-content p  { font-size: 14px; color: var(--cvt-tx2); line-height: 1.6; margin: 0 0 24px; }

.cvt-cta-image { position: relative; border-radius: 16px; overflow: hidden; }
.cvt-cta-image img { border-radius: 16px; width: 100%; height: 320px; object-fit: cover; display: block; }

.cvt-cta-trustbar {
	display: flex; gap: 24px; margin-top: 28px; padding-top: 24px;
	border-top: 1px solid var(--cvt-border);
	flex-wrap: wrap;
}
.cvt-cta-trust-item { display: flex; align-items: flex-start; gap: 10px; }
.cvt-cta-trust-icon {
	width: 34px; height: 34px; border-radius: 50%; background: var(--cvt-green-lt);
	display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.cvt-cta-trust-title { font-size: 13px; font-weight: 700; color: var(--cvt-tx); }
.cvt-cta-trust-sub { font-size: 12px; color: var(--cvt-tx3); }

.cvt-cta-floating-cards {
	position: absolute; top: 16px; right: 16px; left: 16px;
	display: flex; flex-direction: column; gap: 10px;
}
.cvt-cta-floating-card {
	background: rgba(255,255,255,0.94);
	border-radius: 12px;
	padding: 12px 14px;
	display: flex; align-items: flex-start; gap: 10px;
}
.cvt-cta-floating-icon {
	width: 28px; height: 28px; border-radius: 50%;
	background: var(--cvt-green-lt); color: var(--cvt-green-dk);
	display: flex; align-items: center; justify-content: center;
	font-size: 13px; flex-shrink: 0;
}
.cvt-cta-floating-title { font-size: 13px; font-weight: 700; color: var(--cvt-green-dk); }
.cvt-cta-floating-text { font-size: 11.5px; color: var(--cvt-tx2); line-height: 1.35; }

@media (max-width: 1100px) {
	.cvt-cta-grid { grid-template-columns: 1fr; }
	.cvt-cta-floating-cards { position: static; margin-top: 12px; }
	.cvt-cta-image img { height: 220px; }
}

/* ══════════════════════════════════════
   SIMILARES
══════════════════════════════════════ */
.cvt-tour-similar { padding: 40px 0; border-bottom: 1px solid var(--cvt-border); }
.cvt-tour-similar h2 { font-size: 22px; font-weight: 700; margin: 0 0 20px; }
.cvt-similar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cvt-similar-card { border: 1px solid var(--cvt-border); border-radius: var(--cvt-r); overflow: hidden; transition: box-shadow 0.15s; }
.cvt-similar-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.cvt-similar-img img { width: 100%; height: 140px; object-fit: cover; }
.cvt-similar-body { padding: 14px; }
.cvt-similar-body h3 { font-size: 14px; font-weight: 700; margin: 0 0 4px; color: var(--cvt-tx); }
.cvt-similar-island { font-size: 11px; color: var(--cvt-green); font-weight: 600; margin-bottom: 6px; }
.cvt-similar-body p  { font-size: 12px; color: var(--cvt-tx2); margin: 0 0 10px; line-height: 1.4; }
.cvt-similar-link    { font-size: 13px; color: var(--cvt-green); font-weight: 600; text-decoration: none; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.cvt-tour-faq { padding: 40px 0; }
.cvt-tour-faq h2 { font-size: 22px; font-weight: 700; margin: 0 0 20px; }
.cvt-faq-item { border-bottom: 1px solid var(--cvt-border); }
.cvt-faq-q {
	width: 100%; background: none; border: none; cursor: pointer; padding: 16px 0;
	text-align: left; display: flex; justify-content: space-between; align-items: center;
	font-size: 15px; font-weight: 600; color: var(--cvt-tx); gap: 12px; font-family: inherit;
}
.cvt-faq-q:hover { color: var(--cvt-green); }
.cvt-faq-icon { font-size: 20px; color: var(--cvt-green); flex-shrink: 0; transition: transform 0.2s; }
.cvt-faq-q[aria-expanded="true"] .cvt-faq-icon { transform: rotate(45deg); }
.cvt-faq-q { background: transparent; }
.cvt-faq-q[aria-expanded="true"] { background: var(--cvt-green-lt) !important; }
.cvt-faq-q:focus, .cvt-faq-q:focus-visible { outline: 2px solid var(--cvt-green); outline-offset: -2px; }
.cvt-faq-a { padding: 0 0 16px; font-size: 14px; color: var(--cvt-tx2); line-height: 1.7; }

/* ══════════════════════════════════════
   MODAL VÍDEO
══════════════════════════════════════ */
.cvt-video-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.cvt-video-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); }
.cvt-video-modal-inner   { position: relative; z-index: 1; width: 90%; max-width: 900px; }
.cvt-video-modal-close   { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; }
.cvt-video-embed         { position: relative; padding-bottom: 56.25%; }
.cvt-video-embed iframe  { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: var(--cvt-r); }

/* ══════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════ */
@media (max-width: 1100px) {
	.cvt-tour-hero-inner { padding-right: 20px; }
	.cvt-tour-hero { flex-direction: column; align-items: stretch; padding-bottom: 0; }
	.cvt-tour-hero-inner { padding: 80px 20px 32px; }
	.cvt-itin-map-grid { grid-template-columns: 1fr; }
	.cvt-cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.cvt-why-grid       { grid-template-columns: 1fr 1fr; }
	.cvt-about-highlights-grid { grid-template-columns: 1fr; }
	.cvt-included-grid  { grid-template-columns: 1fr; }
	.cvt-similar-grid   { grid-template-columns: 1fr 1fr; }
	.cvt-reviews-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.cvt-why-grid     { grid-template-columns: 1fr; }
	.cvt-similar-grid { grid-template-columns: 1fr; }
	.cvt-gallery-slide img { height: 240px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Esconde o language switcher global (Elementor) só nas páginas de tour —
   aqui usamos o nosso próprio selector (.cvt-tour-lang-switch) em vez dele. */
body.single-cvt_tour .elementor-widget-polylang-language-switcher {
	display: none !important;
}
#cvt-tour .cvt-faq-item,
#cvt-tour .cvt-faq-q,
#cvt-tour .cvt-faq-a {
	background-color: transparent !important;
}
#cvt-tour .cvt-faq-q[aria-expanded="true"] {
	background-color: var(--cvt-green-lt) !important;
}
.cvt-agent-reviews { padding: 40px 0; }
.cvt-agent-reviews-header { margin-bottom: 24px; }
.cvt-agent-reviews-header h2 { font-size: 22px; font-weight: 700; margin: 0; }
.cvt-agent-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cvt-agent-review-card { background: #F7F6F3; border-radius: 10px; padding: 18px; }
.cvt-agent-review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cvt-agent-review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.cvt-agent-review-avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: #1D9E75; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.cvt-agent-review-author  { font-size: 14px; font-weight: 600; }
.cvt-agent-review-country { font-size: 12px; color: #9CA3AF; }
.cvt-agent-review-stars   { margin-bottom: 8px; }
.cvt-agent-review-meta    { display: flex; gap: 10px; font-size: 11px; color: #9CA3AF; margin-bottom: 8px; }
.cvt-agent-review-text    { font-size: 13px; color: #4B5563; line-height: 1.6; }
.cvt-agent-review-date    { font-size: 11px; color: #9CA3AF; margin-top: 8px; }
@media (max-width: 768px) { .cvt-agent-reviews-grid { grid-template-columns: 1fr; } }
