/* ── VARIABLES HOME ────────────────────────────────────────────── */
:root {
    --home-primary:    var(--color-primary-blue, #1f4768);
    --home-accent:     var(--color-secondary-green, #3e775e);
    --home-light:      #f7f5f0;
    --home-dark:       #10202d;
    --home-text:       #1a1a1a;
    --home-text-muted: #6b6b6b;
    --home-border:     rgba(0,0,0,.08);
    --radius-card:     16px;
    --section-gap:     100px;
    --container-max:   1240px;
    --transition:      .3s ease;
}

/* ── HELPERS ──────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
}
.home-section {
    padding: var(--section-gap) 0;
}
.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .2em;
    color: var(--son-secondary-green, #3E775E);
    text-transform: uppercase;
    margin: 0 0 1.4rem;
}
.eyebrow--light { color: var(--son-accent-green, #B4D882); }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center h2 { margin: 0 auto; }
/* Títulos de sección en Cormorant (línea Pencil) */
.section-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3.6rem, 4.5vw, 5.2rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--son-text, #10202D);
    margin-top: 0;
    margin-bottom: 0;
}
.section-subtitle {
    font-size: 1.7rem;
    color: var(--son-text-secondary, #4A5A66);
    max-width: 60rem;
    line-height: 1.6;
    margin: 1.6rem auto 0;
}
.section-action { text-align: center; margin-top: 48px; }

/* Botones: ver assets/css/buttons.css (sistema Pencil unificado, site-wide) */

/* ── HERO ─────────────────────────────────────────────────────── */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    max-height: 960px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero-slider,
.hero-slider--fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--home-dark);
}
.hero-slide,
.swiper-slide { position: relative; overflow: hidden; }
.hero-slide__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}
video.hero-slide__media { object-fit: cover; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,32,45,.55) 0%, rgba(16,32,45,.3) 45%, rgba(16,32,45,.75) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 4rem !important;
}
.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(180,216,130,.85);
    text-transform: uppercase;
    margin: 0 0 20px;
}
.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 92px);
    font-weight: 500;
    line-height: 1.02;
    color: #fff;
    margin: 0 0 24px;
}
.hero-subheading {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    max-width: 580px;
    line-height: 1.6;
    margin: 0 0 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Hero pagination bullets */
.hero-pagination { z-index: 2; bottom: 100px !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,.5); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: #fff; width: 24px; border-radius: 4px; }

/* Trust bar */
.hero-trust-bar {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 48px;
}
.hero-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
.hero-trust-bar__item i { font-size: 18px; color: rgba(180,216,130,.9); }
.hero-trust-bar__item .sonadv-ic { width: 20px; height: 20px; color: rgba(180,216,130,.9); }

/* ── FEATURED EXPERIENCES ─────────────────────────────────────── */
.home-featured-exp { background: var(--home-light); }
.tour-grid--exp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.tour-card-exp { border-radius: var(--radius-card); overflow: hidden; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.06); transition: transform var(--transition), box-shadow var(--transition); }
.tour-card-exp:hover { transform: translateY(-4px); box-shadow: 0 8px 40px rgba(0,0,0,.12); }
.tour-card-exp__link { display: block; text-decoration: none; color: inherit; }
.tour-card-exp__img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tour-card-exp__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.tour-card-exp:hover .tour-card-exp__img { transform: scale(1.05); }
.tour-card-exp__img--placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#e8e0d5,#c5b9a8); }
.tour-card-exp__badge {
    position: absolute; top: 14px; left: 14px;
    background: rgba(16,32,45,.75); color: #fff;
    font-size: 11px; font-weight: 600; letter-spacing: .5px;
    padding: 5px 10px; border-radius: 4px; backdrop-filter: blur(4px);
}
.tour-card-exp__body { padding: 22px 24px 24px; }
.tour-card-exp__title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin: 0 0 10px; color: var(--home-text); }
.tour-card-exp__excerpt { font-size: 14px; color: var(--home-text-muted); line-height: 1.55; margin: 0 0 16px; }
.tour-card-exp__footer { display: flex; justify-content: space-between; align-items: center; }
.tour-card-exp__price { font-size: 14px; color: var(--home-text-muted); }
.tour-card-exp__price strong { color: var(--home-text); font-size: 18px; }
.tour-card-exp__cta { font-size: 13px; font-weight: 600; color: var(--home-accent); }

/* ── WHY SONCCO ───────────────────────────────────────────────── */
.home-why { background: #fff; }
.home-why__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: center;
}
.home-why__img-wrap { border-radius: 24px; overflow: hidden; aspect-ratio: 9/11; }
.home-why__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-why__img-wrap--placeholder { background: linear-gradient(135deg,#1f4768,#3e775e); }
.home-why__title { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 500; line-height: 1.08; color: var(--home-text); margin: 0 0 16px; }
.home-why__subtitle { font-size: 17px; color: var(--home-text-muted); line-height: 1.6; margin: 0 0 36px; }
.home-why__benefits { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.why-benefit { display: flex; gap: 18px; align-items: flex-start; }
.why-benefit__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--home-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-benefit__icon i { font-size: 18px; color: var(--home-accent); }
.why-benefit__text strong { display: block; font-size: 15px; font-weight: 600; color: var(--home-text); margin-bottom: 4px; }
.why-benefit__text p { font-size: 14px; color: var(--home-text-muted); line-height: 1.55; margin: 0; }

/* ── DESTINATIONS ─────────────────────────────────────────────── */
.home-destinations { background: var(--home-light); }
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 300px;
}
/* Masonry-style for 6+ items */
.dest-grid--many .dest-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.dest-grid--many .dest-card:nth-child(4) { grid-column: 1 / 3; }
.dest-card { position: relative; border-radius: var(--radius-card); overflow: hidden; }
.dest-card__link { display: block; width: 100%; height: 100%; }
.dest-card__img, .dest-card__img--placeholder {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .6s ease;
}
.dest-card:hover .dest-card__img { transform: scale(1.06); }
.dest-card__img--placeholder { background: linear-gradient(135deg,#2d5a40,#1f4768); }
.dest-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(16,32,45,.7) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
}
.dest-card__name { font-family: 'Cormorant Garamond',serif; font-size: 24px; font-weight: 500; color: #fff; line-height: 1.2; }
.dest-card__count { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ── FEATURED JOURNEYS ────────────────────────────────────────── */
/* ── FEATURED JOURNEYS (Pencil component/Journey Card) — prefijo .jcx ── */
.jcx { background: var(--son-background, #F8F8F5); }
.jcx__head { text-align: center; max-width: 64rem; margin: 0 auto 5.6rem; }
.jcx__eyebrow { font-size: 1.3rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--son-secondary-green, #3E775E); margin-bottom: 1.2rem; }
.jcx__title { font-family: 'Cormorant Garamond',serif; font-size: clamp(3.2rem, 4vw, 5rem); font-weight: 500; line-height: 1.05; color: var(--son-text, #10202D); margin: 0 0 1.4rem; }
.jcx__sub { font-size: 1.7rem; line-height: 1.6; color: var(--son-text-secondary, #4A5A66); }

.jcx-list { display: flex; flex-direction: column; gap: 2.4rem; max-width: 110rem; margin-inline: auto; }
.jcx-card {
    display: grid;
    grid-template-columns: 30rem 1fr auto;
    align-items: stretch;
    background: var(--son-surface, #fff);
    border: 1px solid var(--son-border-subtle, #E4E4DD);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 1.2rem 3rem rgba(16,32,45,.10);
    transition: transform .25s ease, box-shadow .25s ease;
}
.jcx-card:hover { transform: translateY(-3px); box-shadow: 0 1.8rem 4rem rgba(16,32,45,.16); }
.jcx-card__img {
    position: relative; display: block; min-height: 18.8rem;
    background-size: cover; background-position: center;
    background-color: var(--son-primary-blue, #1F4768);
    padding: 1.6rem;
}
.jcx-card__badge {
    display: inline-flex; align-items: center; gap: .6rem;
    background: rgba(16,32,45,.8); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    color: #fff; font-size: 1.3rem; font-weight: 600;
    padding: .7rem 1.4rem; border-radius: 999px;
}
.jcx-card__badge .sonadv-ic { width: 1.4rem; height: 1.4rem; }
.jcx-card__info { display: flex; flex-direction: column; justify-content: center; gap: 1rem; padding: 2.4rem 3.2rem; min-width: 0; }
.jcx-card__title { font-family: 'Cormorant Garamond',serif; font-size: clamp(2.4rem, 2.4vw, 3rem); font-weight: 600; line-height: 1.05; margin: 0; }
.jcx-card__title a { color: var(--son-text, #10202D); text-decoration: none; }
.jcx-card__title a:hover { color: var(--son-deep-burgundy, #752632); }
.jcx-card__desc { font-size: 1.5rem; line-height: 1.5; color: var(--son-text-secondary, #4A5A66); margin: 0; }
.jcx-card__meta { display: flex; flex-wrap: wrap; gap: 2.4rem; padding-top: .6rem; }
.jcx-meta { display: inline-flex; align-items: center; gap: .7rem; font-size: 1.4rem; font-weight: 500; color: var(--son-text, #10202D); }
.jcx-meta .sonadv-ic { width: 1.5rem; height: 1.5rem; color: var(--son-secondary-green, #3E775E); }
.jcx-meta strong { font-weight: 700; }
.jcx-card__cta { align-self: center; margin: 2.4rem 3.2rem 2.4rem 0; flex-shrink: 0; }
.jcx__action { text-align: center; margin-top: 4.8rem; }

@media (max-width: 860px) {
    .jcx-card { grid-template-columns: 1fr; }
    .jcx-card__img { min-height: 20rem; }
    .jcx-card__cta { margin: 0 3.2rem 2.4rem; align-self: flex-start; }
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.home-testimonials { background: var(--home-light); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
}
.testimonial-card__stars { display: flex; gap: 4px; color: #f5a623; font-size: 14px; }
.testimonial-card__text { font-size: 16px; line-height: 1.65; color: var(--home-text); font-style: italic; margin: 0; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-card__photo--initial {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--home-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 500;
    flex-shrink: 0;
}
.testimonial-card__name { display: block; font-size: 15px; font-weight: 600; color: var(--home-text); }
.testimonial-card__location { display: block; font-size: 12px; color: var(--home-text-muted); }
.testimonial-card__tour { display: block; font-size: 11px; color: var(--home-accent); font-weight: 600; margin-top: 2px; }

/* ── TRAVEL INSPIRATION (BLOG) ────────────────────────────────── */
.home-blog { background: #fff; }
.home-blog__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.home-blog__header h2 { margin: 0; font-family: 'Cormorant Garamond',serif; font-size: 42px; font-weight: 500; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.blog-card { display: flex; flex-direction: column; }
.blog-card__img-link { display: block; border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 16/10; margin-bottom: 20px; }
.blog-card__img, .blog-card__img--placeholder { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.blog-card__img-link:hover .blog-card__img { transform: scale(1.05); }
.blog-card__img--placeholder { background: linear-gradient(135deg,#e8e0d5,#c5b9a8); }
.blog-card__date { font-size: 12px; color: var(--home-text-muted); letter-spacing: 1px; }
.blog-card__title { font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 500; line-height: 1.3; margin: 10px 0 10px; }
.blog-card__title a { color: var(--home-text); text-decoration: none; }
.blog-card__title a:hover { color: var(--home-accent); }
.blog-card__excerpt { font-size: 14px; color: var(--home-text-muted); line-height: 1.6; margin: 0 0 16px; }
.blog-card__read-more { font-size: 13px; font-weight: 600; color: var(--home-accent); text-decoration: none; }

/* ── SUSTAINABLE (Pencil "Travel That Gives Back") ─────────────── */
.home-sustainable {
    background: linear-gradient(115deg, var(--son-primary-blue, #1F4768) 0%, var(--son-secondary-green, #3E775E) 100%);
    color: #fff;
}
.home-sustainable__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 52rem 1fr;
    gap: 9.6rem;
    align-items: center;
}
.home-sustainable .eyebrow--light { color: var(--son-accent-green, #B4D882); }
.home-sustainable__title { font-family: 'Cormorant Garamond',serif; font-size: clamp(4rem, 4.5vw, 5.6rem); font-weight: 500; line-height: 1.04; color: #fff; margin: 0 0 2.2rem; }
.home-sustainable__text { font-size: 1.7rem; color: rgba(248,248,245,.78); line-height: 1.65; margin: 0 0 3.2rem; max-width: 50ch; }
.home-sustainable__left .btn { align-self: flex-start; }

/* Pilares como cards translúcidas (glass) */
.home-sustainable__pillars { display: flex; flex-direction: column; gap: 1.8rem; }
.sustainable-pillar {
    display: flex; gap: 2rem; align-items: flex-start;
    background: rgba(255,255,255,.08);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 2.4rem;
    transition: background .25s ease, transform .25s ease;
}
.sustainable-pillar:hover { background: rgba(255,255,255,.13); transform: translateY(-2px); }
.sustainable-pillar__icon {
    width: 5.2rem; height: 5.2rem; border-radius: 1.4rem;
    background: rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sustainable-pillar__icon .sonadv-ic { width: 2.4rem; height: 2.4rem; color: var(--son-accent-green, #B4D882); }
.sustainable-pillar__icon i { font-size: 2.2rem; color: var(--son-accent-green, #B4D882); }
.sustainable-pillar__title { display: block; font-size: 1.7rem; font-weight: 600; color: #fff; margin-bottom: .6rem; }
.sustainable-pillar__text { font-size: 1.4rem; color: rgba(248,248,245,.72); line-height: 1.5; margin: 0; }

/* ── CTA ──────────────────────────────────────────────────────── */
.home-cta {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background-color: var(--home-dark);
    background-size: cover;
    background-position: center;
}
.home-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(16,32,45,.85) 0%,rgba(16,32,45,.5) 100%);
}
.home-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}
.home-cta__title {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(38px,5vw,68px);
    font-weight: 500;
    color: #fff;
    line-height: 1.06;
    margin: 0 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.home-cta__subtitle { font-size: 17px; color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 40px; line-height: 1.6; }
.home-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .tour-grid--exp { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .home-why__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
    .home-sustainable__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
    .journey-card { grid-template-columns: 48px 180px 1fr auto; gap: 20px; }
}
@media (max-width: 768px) {
    :root { --section-gap: 64px; }
    .container, .home-why__inner, .home-sustainable__inner { padding: 0 24px; }
    .tour-grid--exp { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .dest-grid--many .dest-card:nth-child(1) { grid-column: auto; grid-row: auto; }
    .home-why__inner, .home-sustainable__inner { grid-template-columns: 1fr; }
    .hero-trust-bar__inner { flex-wrap: wrap; gap: 16px; padding: 16px 14px; }

    /* Hero mobile: título −4px, subtítulo −2px respecto a desktop */
    .hero-headline { font-size: 48px; }
    .hero-subheading { font-size: 16px; }

    /* Botones del hero: lado a lado en una sola fila (como desktop).
       Reparten ancho y escalan padding/tipografía con el viewport para no desbordar. */
    .hero-buttons { flex-wrap: nowrap; width: 100%; gap: clamp(8px, 2.5vw, 16px); }
    .hero-buttons .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 1.4rem clamp(1rem, 3vw, 2.4rem);
        font-size: clamp(1.25rem, 3.4vw, 1.5rem);
        white-space: nowrap;
    }

    .journey-card { grid-template-columns: 1fr; }
    .journey-card__num, .journey-card__img-wrap { display: none; }
    .journey-card__meta { flex-direction: row; flex-wrap: wrap; align-items: center; }
    .home-blog__header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* =============================================================
   HOME — Travel Inspiration (Pencil "Stories & Journals"). Prefijo .tinx
   ============================================================= */
.tinx {
	--tinx-burg:   var(--son-deep-burgundy, #752632);
	--tinx-green:  var(--son-secondary-green, #3E775E);
	--tinx-text:   var(--son-text, #10202D);
	--tinx-text-2: var(--son-text-secondary, #4A5A66);
	--tinx-border: var(--son-border-subtle, #E4E4DD);
	--tinx-head:   var(--son-font-heading, 'Cormorant Garamond', serif);
	background: var(--son-surface, #fff);
}
.tinx__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 5.6rem; }
.tinx__eyebrow { font-size: 1.3rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--tinx-green); margin-bottom: 1.4rem; }
.tinx__title { font-family: var(--tinx-head); font-size: clamp(3.4rem, 4vw, 5.2rem); font-weight: 500; line-height: 1.05; color: var(--tinx-text); margin: 0; }
.tinx__viewall { display: inline-flex; align-items: center; gap: .8rem; border: 1.5px solid var(--tinx-border); border-radius: 100px; padding: 1.4rem 2.6rem; font-size: 1.4rem; font-weight: 600; color: var(--tinx-text); text-decoration: none; white-space: nowrap; transition: border-color .2s ease; }
.tinx__viewall:hover { border-color: var(--tinx-green); }
.tinx__viewall .sonadv-ic { width: 1.6rem; height: 1.6rem; }

.tinx__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.6rem; }
.tinx-card__img { display: block; position: relative; height: 28rem; border-radius: 2rem; overflow: hidden; background-size: cover; background-position: center; background-color: var(--tinx-border); }
.tinx-card__tag { position: absolute; top: 2rem; left: 2rem; background: rgba(255,255,255,.94); color: var(--tinx-burg); font-size: 1.1rem; font-weight: 600; letter-spacing: .12em; padding: .8rem 1.6rem; border-radius: 100px; }
.tinx-card__body { padding: 1.8rem .4rem 0; }
.tinx-card__meta { font-size: 1.3rem; color: var(--tinx-text-2); }
.tinx-card__title { font-family: var(--tinx-head); font-size: 2.8rem; font-weight: 600; line-height: 1.12; margin: .8rem 0; }
.tinx-card__title a { color: var(--tinx-text); text-decoration: none; }
.tinx-card__title a:hover { color: var(--tinx-burg); }
.tinx-card__excerpt { font-size: 1.5rem; line-height: 1.55; color: var(--tinx-text-2); margin-bottom: 1.2rem; }
.tinx-card__read { display: inline-flex; align-items: center; gap: .6rem; font-size: 1.4rem; font-weight: 600; color: var(--tinx-burg); text-decoration: none; }
.tinx-card__read .sonadv-ic { width: 1.5rem; height: 1.5rem; transition: transform .2s ease; }
.tinx-card__read:hover .sonadv-ic { transform: translateX(.3rem); }

@media (max-width: 1024px) { .tinx__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) {
	.tinx__head { flex-direction: column; align-items: flex-start; }
	.tinx__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   HOME — Testimonios (Pencil "What Our Travelers Say"). Prefijo .tsx
   ============================================================= */
.tsx {
	--tsx-blue:   var(--son-primary-blue, #1F4768);
	--tsx-green:  var(--son-secondary-green, #3E775E);
	--tsx-gold:   #E0A53B;
	--tsx-bg:     var(--son-background, #F8F8F5);
	--tsx-surface:var(--son-surface, #FFFFFF);
	--tsx-text:   var(--son-text, #10202D);
	--tsx-text-2: var(--son-text-secondary, #4A5A66);
	--tsx-border: var(--son-border-subtle, #E4E4DD);
	--tsx-head:   var(--son-font-heading, 'Cormorant Garamond', serif);
	background: var(--tsx-bg);
}
.tsx__head { text-align: center; max-width: 64rem; margin: 0 auto 5.6rem; }
.tsx__eyebrow { font-size: 1.3rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--tsx-green); margin-bottom: 1.2rem; }
.tsx__title { font-family: var(--tsx-head); font-size: clamp(3.2rem, 4vw, 5rem); font-weight: 600; line-height: 1.05; color: var(--tsx-text); margin: 0; }

.tsx-carousel { padding-bottom: 5rem; }
.tsx-card { background: var(--tsx-surface); border: 1px solid var(--tsx-border); border-radius: 2rem; padding: 3.6rem; height: 100%; display: flex; flex-direction: column; gap: 2rem; box-shadow: 0 1.6rem 4rem rgba(16,32,45,.07); }
.tsx-card__stars { display: flex; gap: .4rem; }
.tsx-star .sonadv-ic { width: 2rem; height: 2rem; color: var(--tsx-border); }
.tsx-star.is-on .sonadv-ic { color: var(--tsx-gold); fill: var(--tsx-gold); }
.tsx-card__text { font-family: var(--tsx-head); font-size: 2.1rem; font-style: italic; line-height: 1.45; color: var(--tsx-text); margin: 0; flex: 1; }
.tsx-card__author { display: flex; align-items: center; gap: 1.4rem; }
.tsx-card__avatar { width: 5rem; height: 5rem; border-radius: 999px; object-fit: cover; flex-shrink: 0; }
.tsx-card__avatar--initial { display: grid; place-items: center; background: var(--tsx-blue); color: #fff; font-family: var(--tsx-head); font-size: 2.2rem; font-weight: 600; }
.tsx-card__meta { display: flex; flex-direction: column; gap: .1rem; }
.tsx-card__name { font-size: 1.6rem; font-weight: 700; color: var(--tsx-text); }
.tsx-card__loc { font-size: 1.35rem; color: var(--tsx-text-2); }
.tsx-card__tour { font-size: 1.35rem; font-weight: 600; color: var(--tsx-green); margin-top: .2rem; }
.tsx-pagination { bottom: 0 !important; }
.tsx-pagination .swiper-pagination-bullet { background: var(--tsx-text-2); opacity: .35; }
.tsx-pagination .swiper-pagination-bullet-active { background: var(--tsx-blue); opacity: 1; width: 2.4rem; border-radius: 6px; }

/* Botón "Deja tu reseña" bajo el carrusel de testimonios */
.tsx__action { text-align: center; margin-top: 4.8rem; }
.tsx__action .btn .sonadv-ic { width: 1.7rem; height: 1.7rem; }
