.ts-destinations { background: var(--bg-subtle); }
.ts-destinations__title { font-family: var(--font-brand); font-size: var(--fs-h1); text-align: center; color: var(--color-primary-600); margin: var(--space-2) 0 var(--space-4); }
.ts-destinations__subtitle { text-align: center; color: var(--text-secondary); font-family: var(--font-support); font-size: var(--fs-body-lg); max-width: 620px; margin: 0 auto 46px; }
.ts-destinations__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-6); margin-top: var(--space-10); }
.ts-destinations__card { background: var(--surface-card); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(10px); transition: opacity var(--duration-slow) var(--ease-standard), transform var(--duration-slow) var(--ease-standard); }
.ts-destinations__card.is-revealed { opacity: 1; transform: none; }
.ts-destinations__image { height: 160px; background-size: cover; background-position: center; background-color: var(--color-neutral-200); position: relative;}
.ts-destinations__tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ts-destinations__image_tag {
    background: var(--color-primary-500);
    color: rgb(255, 255, 255);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    font-family: var(--font-brand);
}
.ts-destinations__body { padding: var(--space-5); }
.ts-destinations__body h3 { font-family: var(--font-brand); font-size: var(--fs-h4); color: var(--text-primary); margin-bottom: var(--space-2); }
.ts-destinations__body p { font-family: var(--font-support); color: var(--text-secondary); line-height: var(--lh-body); font-size: var(--fs-body-sm); }

/* Cards: badge de bandeira + link, grade vira carrossel com scroll-snap quando há mais de 2 itens */
.ts-destinations__card { position: relative; }
.ts-destinations__flag { position: absolute; top: var(--space-4); left: var(--space-4); display: inline-flex; align-items: center; gap: .35rem; background: rgba(255,255,255,.92); color: var(--text-primary); font-family: var(--font-brand); font-weight: var(--weight-bold); font-size: var(--fs-caption); padding: .3rem .7rem; border-radius: var(--radius-full); }
.ts-destinations__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: var(--space-3); color: var(--text-brand); font-family: var(--font-brand); font-weight: var(--weight-bold); font-size: var(--fs-body-sm); text-decoration: none; }
.ts-destinations__link svg { width: 14px; height: 14px; }
.ts-destinations__footer-link { text-align: center; margin-top: var(--space-10); }
.ts-destinations--carousel .ts-destinations__grid {
	display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: var(--space-4); grid-template-columns: none;
}
.ts-destinations--carousel .ts-destinations__card {
	flex: 0 0 320px; scroll-snap-align: start;
}

/* Spotlight: carrossel com card central em destaque (legenda sobre a foto) e cards menores ao lado.
   Comportamento e valores portados de LP_01.html (componente original com auto-play de 3s). */
.ts-destinations__spotlight { margin-top: var(--space-10); }
.ts-destinations__spotlight-track { display: flex; align-items: center; justify-content: center; gap: var(--space-6); flex-wrap: wrap; min-height: clamp(340px, 40vw, 500px); }
.ts-destinations__scard {
	position: relative; flex: none; order: 2;
	width: clamp(240px, 31vw, 372px); height: clamp(320px, 35vw, 448px);
	border-radius: var(--radius-xl); overflow: hidden; cursor: pointer;
	transform: scale(.84); opacity: .7; z-index: 1;
	box-shadow: 0 12px 30px rgba(20,8,2,.18); filter: saturate(.9) brightness(.78);
	transition: transform 1.05s cubic-bezier(.22,.61,.36,1), box-shadow 1.05s ease, opacity 1.05s ease, filter 1.05s ease;
}
.ts-destinations__scard.is-prev { order: 0; }
.ts-destinations__scard.is-active { order: 1; transform: scale(1.06); opacity: 1; z-index: 3; box-shadow: 0 30px 64px rgba(20,8,2,.42); filter: none; }
.ts-destinations__simage { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #2a1810; }
.ts-destinations__scard::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,8,2,.04) 35%, rgba(20,8,2,.8) 100%); pointer-events: none; }
.ts-destinations__scard .ts-destinations__flag { z-index: 2; top: 15px; left: 15px; background: rgba(255,255,255,.94); box-shadow: 0 6px 16px rgba(0,0,0,.22); font-size: var(--fs-body-sm); }
.ts-destinations__sbody { position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-5) var(--space-5) 26px; color: #fff; z-index: 2; }
.ts-destinations__sbody h3 { font-family: var(--font-brand); font-weight: var(--weight-extrabold); font-size: clamp(23px, 2.5vw, 32px); margin: 0 0 4px; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.ts-destinations__sbody p { font-family: var(--font-support); font-size: var(--fs-body-sm); line-height: 1.4; color: rgba(255,255,255,.92); margin: 0 0 var(--space-2); }
.ts-destinations__scard .ts-destinations__link { color: #fff; margin-top: 0; border-bottom: 2px solid var(--color-primary-500); padding-bottom: 3px; }
.ts-destinations__dots { display: flex; align-items: center; justify-content: center; gap: var(--space-2); margin-top: var(--space-6); }
.ts-destinations__dot-btn { width: 9px; height: 9px; border-radius: var(--radius-full); background: var(--border-default); border: none; padding: 0; cursor: pointer; transition: width .4s ease, background .4s ease; }
.ts-destinations__dot-btn.is-active { width: 28px; background: var(--color-primary-500); }

@media (max-width: 760px) {
	.ts-destinations__spotlight-track { min-height: 0; }
	.ts-destinations__scard { display: none; order: initial; width: min(86vw, 420px); height: min(112vw, 440px); transform: none; opacity: 1; filter: none; box-shadow: 0 24px 50px rgba(20,8,2,.4); transition: opacity .6s ease; }
	.ts-destinations__scard.is-active { display: block; }
}

/* Table mode — paleta e proporções portadas de LP_01.html (tons quentes específicos desta seção, fora da escala padrão de tokens) */
.ts-destinations__hint { display: flex; align-items: center; justify-content: center; gap: .5rem; color: #A8968B; font-family: var(--font-support); font-size: var(--fs-body-sm); margin: 0 0 14px; }
.ts-destinations__hint svg { width: 14px; height: 14px; color: var(--color-primary-500); }
.ts-destinations__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 22px; box-shadow: 0 18px 44px rgba(35,20,12,.1); border: 1px solid #F0E8E2; }
.ts-destinations__table { width: 100%; border-collapse: collapse; background: #fff; font-family: var(--font-support); min-width: 860px; }
.ts-destinations__table thead th { background: linear-gradient(135deg, #FF7A3D, #E94A26); color: #fff; font-family: var(--font-brand); font-weight: var(--weight-bold); font-size: 1.375rem; text-align: left; padding: 22px; }
.ts-destinations__table thead th:nth-child(3) { background: linear-gradient(135deg, #F26A22, #D8401C); }
.ts-destinations__table thead th:first-child { background: #FBF6F2; }
.ts-destinations__dot { display: inline-block; width: 11px; height: 11px; border-radius: 50%; background: #fff; margin-right: .55rem; flex: none; }
.ts-destinations__table tbody th { text-align: left; vertical-align: middle; font-family: var(--font-brand); font-weight: var(--weight-bold); font-size: 1.125rem; color: #23201E; background: #FBF6F2; padding: 20px 22px; border-top: 1px solid #F0E8E2; }
.ts-destinations__table-label { display: inline-flex; align-items: center; gap: .55rem; white-space: nowrap; }
.ts-destinations__table tbody th svg { width: 17px; height: 17px; color: #E94A26; flex-shrink: 0; }
.ts-destinations__table td { padding: 20px 22px; font-size: 1rem; color: #4D4842; border-top: 1px solid #F0E8E2; }
.ts-destinations__table tbody td:nth-child(3) { background: #FFFBF9; }
.ts-destinations__table tbody tr:last-child th { background: #F6ECE5; }
.ts-destinations__table tbody tr:last-child td { background: #FFF4EF; font-weight: 600; color: #23201E; }
