/* ============================================================
   BACHATA ESCAPE — style.css
   Tipografía: Cormorant Garamond (headings) + DM Sans (cuerpo)
   Paleta: Verde Selva #1C3A2A · Ámbar #C97A1E · Crema #F7F2EB
   ============================================================ */

:root {
    /* ── Colores de marca ── */
    --primary-green: #1C3A2A;          /* verde selva dominicana */
    --primary-dark: #1A2820;           /* noche tropical (footer/oscuros) */
    --accent-terracotta: #C97A1E;      /* ámbar ron añejo (CTA) */
    --accent-coral: #C85A3A;           /* terracota merengue (acentos) */
    --bg-cream: #ffffff;
    --bg-soft: #F7F2EB;                /* crema arena cálida */
    --soft-sand: #f0ebe3;
    --off-white: #faf8f5;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #777777;
    --shadow-light: 0 4px 24px rgba(0, 0, 0, 0.08);
    --radius: 8px;
    --transition: all 0.3s ease;
    --max-width: 1100px;
    --accent-gold: #C97A1E;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--bg-soft);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
}

img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

/* ============================================================
   HEADER Y NAVEGACIÓN
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(26, 40, 32, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* backdrop-filter en ::before para que el header NO sea containing block
   de los hijos position:fixed (el nav mobile). Si backdrop-filter está
   en el elemento padre, Chromium lo convierte en containing block y el
   nav queda encerrado en los ~70px del header en vez del viewport. */
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.logo,
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    flex-shrink: 0;
    z-index: 101;
    position: relative;
}

/* ── Nav desktop ── */
.site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav a:not(.btn) {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background: var(--accent-terracotta, #C97A1E);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
    color: var(--primary-green);
    background: rgba(28, 58, 42, 0.06);
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn):focus-visible::after {
    transform: scaleX(1);
}

.site-nav a.active:not(.btn) {
    color: var(--primary-green);
}

.site-nav a.active:not(.btn)::after {
    transform: scaleX(1);
}

.site-nav .nav-cta {
    margin-left: 0.75rem;
    padding: 0.55rem 1.25rem;
    background: var(--accent-terracotta, #C97A1E);
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(201, 122, 30, 0.28);
}

.site-nav .nav-cta:hover {
    background: #A66218;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 122, 30, 0.38);
}

.site-nav .nav-cta::after { display: none !important; }

/* ── Hamburger button ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary, #1a1a1a);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.25s ease,
                width 0.3s ease;
    transform-origin: center;
}

/* X animation when open */
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile overlay backdrop ── */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 40, 32, 0.45);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
}

.nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(15, 31, 27, 0.24), rgba(15, 31, 27, 0.84)), url('../img/playa-hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.13), transparent 35%);
}

.hero-content {
    position: relative;
    max-width: 760px;
    padding: 3rem 1.5rem;
    display: grid;
    gap: 1.5rem;
}

.hero-label,
.subtitle,
.eyebrow {
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.72rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.85);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
}

.hero-copy {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 38rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ============================================================
   BOTONES
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    border-radius: 999px;
    padding: 0 1.9rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent-terracotta);
    color: #fff;
    box-shadow: 0 18px 40px rgba(201, 122, 30, 0.22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

/* ============================================================
   SECCIONES
   ============================================================ */

.section {
    padding: 5rem 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-top: 1rem;
}

.section-header p {
    font-family: var(--font-body);
    font-weight: 300;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

.grid-2 {
    display: grid;
    gap: 2.5rem;
}

.gap-40 {
    gap: 2.5rem;
}

/* ============================================================
   CARDS
   ============================================================ */

.content-block,
.aside-card,
.price-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
}

.content-block h2,
.aside-card h3,
.price-card .price-value,
.timeline-card h3,
.testimonial-card p,
.benefit-card h3 {
    color: var(--text-primary);
}

.feature-list {
    list-style: none;
    margin-top: 1.75rem;
    display: grid;
    gap: 1rem;
}

.feature-list li {
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-secondary);
    font-weight: 300;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-terracotta);
}

.pill {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(201, 122, 30, 0.12);
    color: var(--accent-terracotta);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.6rem 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.eyebrow {
    color: var(--accent-terracotta);
    margin-bottom: 0.75rem;
}

.aside-card p,
.content-block p,
.price-card p,
.timeline-card p,
.testimonial-card p,
.benefit-card p,
.faq-answer {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
}

/* ============================================================
   TIMELINE / BENEFITS / TESTIMONIALS
   ============================================================ */

.timeline-grid,
.benefit-grid,
.testimonial-grid,
.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

.timeline-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-card,
.benefit-card,
.testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.timeline-step {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--accent-terracotta);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
}

.timeline-card h3,
.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    letter-spacing: -0.01em;
}

.benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
}

.testimonial-card span {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ============================================================
   PRECIO
   ============================================================ */

.price-card {
    display: grid;
    gap: 1.5rem;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--primary-green);
}

.price-note,
.small-note {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-secondary);
    font-size: 0.96rem;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-container {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-primary);
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    width: 1.8rem;
    height: 1.8rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(201, 122, 30, 0.12);
    color: var(--accent-terracotta);
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 1.8rem 1.6rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.section-final-cta {
    background: var(--primary-dark);
}

.section-final-cta .section-header .eyebrow {
    color: var(--accent-terracotta);
}

.section-final-cta .section-header h2,
.section-final-cta .section-header p {
    color: #fff;
}

.section-final-cta .section-header p {
    color: rgba(255,255,255,0.75);
}

.final-cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: none;
}

.final-cta-card h2,
.final-cta-card p {
    color: #fff;
}

.final-cta-card p {
    color: rgba(255,255,255,0.72);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 2.3rem 0;
}

.site-footer {
    background: var(--primary-dark);
    color: #fff;
}

.site-footer p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    opacity: 0.75;
    margin-top: 0.4rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-nav a {
    font-family: var(--font-body);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: #fff;
}

/* ============================================================
   HERO BLOG
   ============================================================ */

.hero-blog {
    position: relative;
    min-height: 70vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(15, 31, 27, 0.28), rgba(15, 31, 27, 0.9)), url('../img/playa-hero.jpg') center/cover no-repeat;
}

.hero-blog h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

/* ============================================================
   BLOG — GRID DE POSTS
   ============================================================ */

.post-feature-grid,
.blog-list {
    display: grid;
    gap: 1.5rem;
}

.post-feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.post-feature,
.blog-card,
.sidebar-box {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.post-feature {
    display: grid;
    gap: 1.1rem;
}

.post-feature h2,
.blog-card h3,
.sidebar-box h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1.15;
}

.post-feature p,
.blog-card p,
.sidebar-box p {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--accent-terracotta);
    letter-spacing: 0.02em;
    margin-top: 0.75rem;
    transition: color var(--transition);
}

.btn-link:hover {
    color: var(--primary-green);
}

.tag {
    display: inline-flex;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(201, 122, 30, 0.14);
    color: var(--accent-terracotta);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
}

.blog-list {
    grid-template-columns: 1fr;
}

.blog-card {
    display: grid;
    gap: 1rem;
}

.read-more {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--accent-terracotta);
    transition: color var(--transition);
}

.read-more:hover {
    color: var(--primary-green);
}

.sidebar {
    display: grid;
    gap: 1.5rem;
}

.sidebar-box h3 {
    margin-bottom: 0.85rem;
}

.sidebar-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding-left: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.sidebar-list li {
    position: relative;
    padding-left: 1.1rem;
}

.sidebar-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--accent-terracotta);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
    background: linear-gradient(135deg, rgba(201, 122, 30, 0.12), rgba(26, 40, 32, 0.04));
}

.newsletter-form {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    border: 1px solid rgba(27, 43, 38, 0.14);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-primary);
    background: #fff;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-terracotta);
    box-shadow: 0 0 0 4px rgba(201, 122, 30, 0.12);
}

/* ============================================================
   ACCESIBILIDAD
   ============================================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
}

/* ============================================================
   POSTS — ARTÍCULOS INDIVIDUALES
   ============================================================ */

.post-single {
    display: grid;
    gap: 0;
}

.post-hero {
    background: linear-gradient(135deg, rgba(201, 122, 30, 0.12), rgba(26, 40, 32, 0.06));
    padding: 4rem 0 3rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.post-category {
    display: inline-flex;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(201, 122, 30, 0.14);
    color: var(--accent-terracotta);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.67rem;
}

.post-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.post-excerpt {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 720px;
    line-height: 1.85;
}

.post-content {
    padding: 3.5rem 0;
}

.post-body {
    max-width: 780px;
    margin: 0 auto;
}

.post-body h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    line-height: 1.1;
}

.post-body p {
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.post-body a {
    color: var(--accent-terracotta);
    font-weight: 500;
    transition: color var(--transition);
}

.post-body a:hover {
    color: var(--primary-green);
}

.post-body strong {
    color: var(--text-primary);
    font-weight: 500;
}

.intro-text {
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.post-image {
    margin: 2.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.post-image img {
    width: 100%;
    display: block;
    border-radius: 0;
}

.post-cta {
    background: linear-gradient(135deg, rgba(201, 122, 30, 0.12), rgba(26, 40, 32, 0.04));
    border-radius: 14px;
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}

.post-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.post-cta p {
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 0 2.2rem;
    min-height: 3.6rem;
    font-size: 0.95rem;
}

/* ============================================================
   SIDEBAR DE POSTS
   ============================================================ */

.post-sidebar {
    max-width: 780px;
    margin: 3rem auto 0;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.sidebar-box h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.related-posts {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.related-posts li {
    border-bottom: 1px solid rgba(27, 43, 38, 0.12);
    padding-bottom: 0.8rem;
}

.related-posts a {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--accent-terracotta);
    transition: color var(--transition);
}

.related-posts a:hover {
    color: var(--primary-green);
}

/* ============================================================
   RELATED CARDS
   ============================================================ */

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition), box-shadow var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 100px rgba(26, 40, 32, 0.16);
}

.related-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.related-card p {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================================
   ENLACES INTERNOS ENTRE POSTS
   ============================================================ */

.post-related-inline {
    margin: 2rem 0 1rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--accent-terracotta);
    background: var(--bg-soft);
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 300;
}

.post-related-inline a {
    color: var(--accent-terracotta);
    font-weight: 500;
    transition: color var(--transition);
}

.post-related-inline a:hover {
    color: var(--primary-green);
}

/* ============================================================
   LISTAS DENTRO DE POSTS
   ============================================================ */

.post-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
    padding-left: 1.2rem;
}

.post-list li {
    position: relative;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.75;
}

.post-list li::before {
    content: '•';
    position: absolute;
    left: -1.2rem;
    color: var(--accent-terracotta);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .grid-2,
    .final-cta-card,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 82vh;
    }
}

@media (max-width: 760px) {
    .section {
        padding: 3.5rem 0;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    /* ── Mobile nav panel ── */

    .site-header {
        background: rgba(255, 255, 255, 0.98);
    }

    .menu-toggle {
        display: flex;
    }

    .nav-backdrop {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2.5rem;
        gap: 0;
        z-index: 99;
        box-shadow: -8px 0 48px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        overflow-y: auto;
    }

    .site-nav.open {
        transform: translateX(0);
    }

    .site-nav a:not(.btn):not(.nav-cta) {
        width: 100%;
        padding: 1rem 0;
        font-size: 1.05rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        border-radius: 0;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text-primary, #1a1a1a);
        background: transparent;
    }

    .site-nav a:not(.btn):not(.nav-cta)::after {
        display: none;
    }

    .site-nav a:not(.btn):not(.nav-cta):hover {
        color: var(--accent-terracotta, #C97A1E);
        background: transparent;
        padding-left: 6px;
    }

    .site-nav .nav-cta {
        margin-left: 0;
        margin-top: 1.75rem;
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .post-title {
        font-size: clamp(2.2rem, 7vw, 3rem);
    }
}

@media (max-width: 540px) {
    .hero h1 {
        font-size: 3rem;
    }

    .price-value {
        font-size: 3rem;
    }

    .post-cta {
        padding: 1.75rem 1.25rem;
    }
}

/* ============================================================
   ANIMACIONES
   ============================================================ */

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   INDEX.HTML — Estilos específicos de la página principal
   ============================================================ */

/* ── Variables adicionales para compatibilidad ── */
:root {
    --text-main: #1a1a1a;       /* alias de --text-primary */
    --bg-cream: #ffffff;
    --text-muted: #555555;
}

/* ── Base index ── */
body { scroll-behavior: smooth; }
h1, h2, h3 { color: var(--primary-green); }

/* ── Hero index (transparente con foto de fondo) ── */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('../img/playa-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 10px; }
.hero p   { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; opacity: 0.9; }
.subtitle { color: var(--accent-terracotta); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; display: block; margin-bottom: 10px; }

/* ── Utilidades globales ── */
.text-center { text-align: center; }
.section-padding { padding: 64px 0; }
@media (max-width: 768px) { .section-padding { padding: 48px 0; } }

/* ── About grid ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* ── Who / Glance grid (sección #who) ── */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 768px) {
    .who-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Team cards con hover ── */
.team-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 0 40px;
}
.team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    background: #111;
}
.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 0;
}
.team-card:hover img { transform: scale(1.06); }
.team-card-ig {
    position: absolute;
    top: 14px; left: 14px;
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}
.team-card-ig svg { width: 18px; height: 18px; fill: #fff; }
.team-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px 20px 18px;
    background: linear-gradient(to top, rgba(10,20,15,0.88) 0%, transparent 100%);
    color: #fff;
    z-index: 1;
}
.team-card-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 3px; line-height: 1.2; }
.team-card-role { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent-terracotta); }
.team-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 20px 80px;
    background: rgba(10,20,15,0.82);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}
.team-card:hover .team-card-overlay { transform: translateY(0); }
.team-card-bio { font-size: 0.9rem; line-height: 1.55; opacity: 0.88; }
@media (max-width: 900px) { .team-cards { grid-template-columns: repeat(2, 1fr); padding: 0 10px; } }
@media (max-width: 500px)  { .team-cards { grid-template-columns: 1fr; } }

/* ── Botones ── */
/* Note: .btn base styles (border-radius, display, padding) live in the main .btn block above */
.btn-accent { background: #A66218; color: #fff; }
.btn-accent:hover { background: #8a5214; }

/* ── FAQ index — ajustes de color sin romper el diseño de tarjeta ── */
.faq-container { max-width: 800px; margin: 40px auto 0; }
.faq-question { font-weight: 600; font-size: 1.05rem; color: var(--primary-green); }
.faq-icon { font-weight: bold; color: var(--accent-terracotta); flex-shrink: 0; margin-left: 12px; }

/* ── CTA final ── */
.final-cta { background: var(--primary-dark); color: #fff; text-align: center; padding: 80px 20px; }
.final-cta h2 { color: #fff; margin-bottom: 20px; }

/* ── Footer index (solo .site-footer, no afecta .footer-premium) ── */
.site-footer { background: var(--primary-dark); color: #fff; padding: 40px 0; text-align: center; }

/* ── Fade-up ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Tours grid ── */
#tours { line-height: 1.5; }
.tours-grid { display: block; }
.tour-block--single { width: 100%; }
.tour-block { min-height: 280px; display: flex; align-items: center; justify-content: center; }
.tour-block-inner { padding: 48px 24px; width: 100%; max-width: 560px; margin: 0 auto; text-align: center; }
.tour-month { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; }
.tour-edition { display: block; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-bottom: 18px; text-decoration: underline; text-underline-offset: 3px; }
.tour-block-inner p { font-size: 0.95rem; margin-bottom: 6px; }
.tour-btn { margin-top: 22px; display: inline-block; background: rgba(255,255,255,0.2); color: #fff; border: 2px solid rgba(255,255,255,0.6); font-size: 0.9rem; padding: 10px 28px; border-radius: 4px; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.tour-btn:hover { background: rgba(255,255,255,0.35); border-color: #fff; }
.tour-coming-inner { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; min-height: 280px; }
.tour-year { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; display: block; margin-bottom: 8px; opacity: 0.5; }
.tour-coming-label { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; opacity: 0.5; }
@media (max-width: 640px) { .tour-block-inner { padding: 36px 28px; } }

/* ── Modal de reserva ── */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(20,35,28,0.65);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-card {
    background: #fff; border-radius: 16px;
    padding: 36px 32px; width: 100%; max-width: 620px;
    max-height: 90vh; overflow-y: auto; position: relative;
    box-shadow: 0 32px 80px rgba(20,35,28,0.25);
    transform: translateY(16px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-card { transform: translateY(0); }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 1.8rem; line-height: 1; cursor: pointer; color: #666; padding: 4px 8px; border-radius: 8px; }
.modal-close:hover { background: #f5f5f5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #1a1a1a; }
.form-group input, .form-group select, .form-group textarea { padding: 10px 14px; border: 1.5px solid rgba(30,45,39,0.2); border-radius: 10px; font: inherit; font-size: 0.95rem; background: #fff; color: #1a1a1a; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-terracotta); }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-full { width: 100%; text-align: center; padding: 14px; font-size: 1rem; border: none; cursor: pointer; margin-top: 6px; border-radius: 4px; }
.btn-full:disabled { opacity: 0.65; cursor: not-allowed; }
.form-note { text-align: center; font-size: 0.82rem; color: #666; margin-top: 10px; }
.form-success { text-align: center; padding: 20px 0 10px; }
.success-icon { width: 60px; height: 60px; background: var(--primary-green); color: #fff; border-radius: 50%; font-size: 1.8rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success h3 { font-size: 1.4rem; color: var(--primary-green); margin-bottom: 8px; }
.form-success p { color: #666; font-size: 0.95rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } .modal-card { padding: 24px 18px; } }

/* ============================================================
   TESTIMONIOS
   ============================================================ */

.testimonials-section {
    background: var(--soft-sand);
    overflow: hidden;
}

.testimonials-heading {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-style: italic;
    color: var(--primary-green);
    margin-top: 8px;
}

/* ── Outer wrapper: posiciona las flechas ── */
.ts-outer {
    position: relative;
    margin: 48px 0 32px;
    display: flex;
    align-items: center;
    gap: 0;
}

/* ── Flechas de navegación ── */
.ts-arrow {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    z-index: 2;
}

.ts-arrow:hover {
    background: var(--primary-green);
    color: #fff;
    transform: scale(1.08);
}

/* ── Viewport (recorta el track) ── */
.ts-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    margin: 0 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.10);
}

/* ── Track deslizante ── */
.ts-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Slide individual ── */
.ts-slide {
    min-width: 100%;
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

/* ── Columna de imagen (izquierda) ── */
.ts-img-col {
    flex: 0 0 38%;
    position: relative;
}

.ts-photo-wrap {
    width: 100%;
    height: 100%;
    min-height: 440px;
    overflow: hidden;
    position: relative;
}

.ts-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(28, 58, 42, 0.12) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.ts-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ── Columna de contenido (derecha) ── */
.ts-content-col {
    flex: 1;
    padding: 52px 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: #fff;
}

/* ── Comilla decorativa ── */
.ts-quote-icon {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 7rem;
    line-height: 0.65;
    color: var(--accent-terracotta);
    opacity: 0.20;
    margin-bottom: 12px;
    user-select: none;
    pointer-events: none;
}

/* ── Texto de la cita ── */
.ts-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.22rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0 0 28px;
    flex: 1;
}

/* ── Barra de acento ── */
.ts-bar {
    width: 44px;
    height: 3px;
    background: var(--accent-terracotta);
    border-radius: 2px;
    margin-bottom: 22px;
}

/* ── Fila del autor ── */
.ts-author-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ts-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-terracotta);
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(201, 122, 30, 0.30);
}

.ts-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}
.ts-avatar img[src*="dann"]     { object-position: center 55%; }
.ts-avatar img[src*="matina"]   { object-position: 60% 25%; transform: scale(2); transform-origin: 60% 25%; }

.ts-name {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.ts-stars {
    color: var(--accent-terracotta);
    font-size: 0.88rem;
    letter-spacing: 3px;
}

/* ── Dots de navegación ── */
.ts-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.ts-dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    border: none;
    background: #d0c4b4;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
    position: relative;
}
/* Extend touch target to 44×44px without changing visual appearance */
.ts-dot::after {
    content: '';
    position: absolute;
    inset: -17px;
}

.ts-dot.active {
    background: var(--accent-terracotta);
    width: 28px;
    transform: scale(1.1);
}

/* ── Responsive ── */
@media (max-width: 820px) {
    .ts-slide {
        flex-direction: column;
    }
    .ts-img-col {
        flex: 0 0 auto;
    }
    .ts-photo-wrap {
        min-height: 280px;
        height: 280px;
    }
    /* Per-photo face positioning for mobile crop */
    .ts-photo-wrap img[src*="dann"]     { object-position: center 70%; }
    .ts-photo-wrap img[src*="bern"]     { object-position: center 42%; }
    .ts-photo-wrap img[src*="karrzten"] { object-position: center 30%; }
    .ts-photo-wrap img[src*="matina"]   { object-position: center center; transform: scale(2.2); transform-origin: 58% 28%; }
    .ts-content-col {
        padding: 32px 28px 36px;
    }
    .ts-quote-icon {
        font-size: 5rem;
    }
    .ts-quote {
        font-size: 1.05rem;
    }
    .ts-arrow {
        width: 40px;
        height: 40px;
    }
    .ts-arrow svg {
        width: 18px;
        height: 18px;
    }
    .ts-viewport {
        margin: 0 10px;
    }
    .testimonials-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ts-arrow {
        display: none;
    }
    .ts-viewport {
        margin: 0;
    }
}

/* ============================================================
   SELECTOR DE IDIOMA (EN / ES / DE)
   ============================================================ */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 8px;
}

.lang-btn {
    background: none;
    border: 1.5px solid transparent;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 3px 7px;
    line-height: 1;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--primary-green);
    border-color: rgba(28, 58, 42, 0.3);
}

.lang-btn.active {
    color: var(--primary-green);
    border-color: var(--primary-green);
    background: rgba(28, 58, 42, 0.07);
}

@media (max-width: 768px) {
    .lang-switcher {
        margin: 12px 0 4px;
        justify-content: center;
    }
    .lang-btn { font-size: 0.85rem; padding: 5px 10px; }
}

/* ============================================================
   PREMIUM TOUR CARD (PASO 2)
   ============================================================ */
.section-tour-premium {
    padding: 64px 0 56px;
    background: var(--bg-soft);
}
.tour-card-premium {
    background: #fff;
    border: 1px solid rgba(28,58,42,0.12);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    padding: 52px 48px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.tour-card-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}
.tour-card-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 32px;
    line-height: 1.1;
}
.tour-card-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.tour-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 32px;
}
.tour-detail-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}
.tour-detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}
.tour-detail-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.12);
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .tour-card-premium { padding: 36px 24px; }
    .tour-card-title { font-size: 2rem; }
    .tour-detail-item { padding: 0 16px; }
    .tour-card-details { gap: 8px; }
    .tour-detail-divider { display: none; }
}

/* ============================================================
   ELEGANT HIGHLIGHTS LIST (PASO 3)
   ============================================================ */
.highlights-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 20px;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.highlight-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    margin-top: 6px;
}
.highlight-title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}
.highlight-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ============================================================
   PRICING SECTION (PASO 4)
   ============================================================ */
.section-pricing {
    background: var(--bg-soft);
}
.pricing-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 12px 0 40px;
}
.pricing-card {
    background: #fff;
    border: 1px solid rgba(28,58,42,0.15);
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
    max-width: 540px;
    margin: 0 auto;
    padding: 52px 48px;
    text-align: center;
}
.pricing-badge {
    display: inline-block;
    background: rgba(201,122,30,0.12);
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
}
.pricing-currency {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 10px;
}
.pricing-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}
.pricing-per {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    text-align: left;
    display: grid;
    gap: 10px;
}
.pricing-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}
.pricing-includes li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 6px;
}
.pricing-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 14px;
}
@media (max-width: 640px) {
    .pricing-card { padding: 36px 24px; }
    .pricing-number { font-size: 3.5rem; }
}

/* ============================================================
   HERO TRUST SIGNALS (PASO 5)
   ============================================================ */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
}
.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}
.hero-trust-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hero-trust-stars {
    font-family: sans-serif;
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: var(--amber, #C97A1E);
}
.hero-trust-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.7);
    margin-top: 3px;
}
.hero-trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .hero-trust { gap: 0; }
    .hero-trust-item { padding: 0 14px; }
    .hero-trust-number { font-size: 1.4rem; }
}

/* ============================================================
   PREMIUM 3-COLUMN FOOTER (PASO 6)
   ============================================================ */
.footer-premium {
    background: var(--primary-green);
    color: #fff;
    padding: 64px 0 0;
}
.footer-premium-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 260px;
}
.footer-col-heading {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.70);
    margin-bottom: 16px;
}
.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav-links a,
.footer-contact-link {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-nav-links a:hover,
.footer-contact-link:hover {
    color: var(--accent-gold);
}
.footer-col-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-bottom {
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
@media (max-width: 768px) {
    .footer-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-col-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .footer-premium-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SECTION HEADING CENTER (PASO 7)
   ============================================================ */
.section-heading-center {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.15;
}
.section-heading-gold {
    color: var(--accent-gold) !important;
    font-size: 2.2rem;
    margin-bottom: 32px;
}
@media (max-width: 640px) {
    .section-heading-center { font-size: 1.9rem; }
    .section-heading-gold { font-size: 1.7rem; }
}

/* ============================================================
   PRICING: FROM + NOT INCLUDED
   ============================================================ */
.pricing-from {
    display: block;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.pricing-not-included {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: left;
}
.pricing-not-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.pricing-not-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}
.pricing-not-included ul li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}
.pricing-not-included ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-size: 0.75rem;
    top: 2px;
}

/* ============================================================
   TRAVEL INFO SECTION
   ============================================================ */
.travel-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.travel-info-box {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.travel-info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
}
.travel-info-box p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}
.travel-info-box p:last-child {
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .travel-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 580px) {
    .travel-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PRICING TABS + GRID (6 precios)
   ============================================================ */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 32px 0 28px;
}
.pricing-tab {
    padding: 10px 32px;
    border-radius: 50px;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.pricing-tab.active,
.pricing-tab:hover {
    background: var(--primary-green);
    color: #fff;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.price-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.price-card-featured {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 24px rgba(212,163,73,0.18);
    position: relative;
}
.price-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.price-card-tag.early   { background: #e8f5e9; color: #2e7d32; }
.price-card-tag.regular { background: #fff8e1; color: #f57f17; }
.price-card-tag.lastminute { background: #fce4ec; color: #c62828; }
.price-card-period {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-card-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}
.price-currency {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: 8px;
}
.price-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}
.price-card-pp {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.price-card .btn {
    width: 100%;
    font-size: 0.88rem;
    padding: 11px 16px;
}
/* Included section below grid */
.pricing-includes-section {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 24px;
}
.pricing-includes-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}
.pricing-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
}
.pricing-includes li {
    font-size: 0.93rem;
    color: var(--text-muted);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.pricing-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}
/* Deposit box */
.pricing-deposit {
    text-align: center;
}
.deposit-box {
    display: inline-flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: left;
    margin-bottom: 16px;
    max-width: 600px;
}
.deposit-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.deposit-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.deposit-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-includes { grid-template-columns: 1fr; }
    .pricing-includes-section { padding: 24px 20px; }
    .deposit-box { flex-direction: column; gap: 12px; padding: 20px; }
}

/* ══════════════════════════════════════════════════════════════
   BLOG PAGE OVERRIDES  (.page-blog body class)
   ══════════════════════════════════════════════════════════════ */
body.page-blog { background: #fff; }
body.page-blog h1,
body.page-blog h2,
body.page-blog h3,
body.page-blog h4 { font-family: 'Cormorant Garamond', Georgia, serif; color: #1C3A2A; }
body.page-blog .hero-blog h1,
body.page-blog .hero-blog .hero-label,
body.page-blog .hero-blog .hero-copy { color: #fff; }
body.page-blog .site-header { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.08); backdrop-filter: none; -webkit-backdrop-filter: none; }
body.page-blog .logo,
body.page-blog .footer-logo { font-family: 'Cormorant Garamond', Georgia, serif; color: #1C3A2A; }
body.page-blog .site-nav a { color: #1a1a1a; }
body.page-blog .site-nav a:hover { color: #C97A1E; }
body.page-blog .btn-primary { background: #A66218; color: #fff; box-shadow: none; border-radius: 4px; }
body.page-blog .btn-primary:hover { background: #8a5214; }
body.page-blog .btn-secondary { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); border-radius: 4px; }
body.page-blog .subtitle,
body.page-blog .hero-label,
body.page-blog .eyebrow { color: #7a4a10; }
body.page-blog .tag { background: rgba(201,122,30,0.15); color: #7a4a10; }
body.page-blog .btn-link { color: #7a4a10; }
body.page-blog .btn-link:hover { color: #1C3A2A; }
body.page-blog .post-feature h2,
body.page-blog .sidebar-box h3 { font-size: 1.15rem; color: #1C3A2A; }
body.page-blog .post-feature { box-shadow: 0 2px 16px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; cursor: pointer; }
body.page-blog .post-feature:hover { box-shadow: 0 8px 32px rgba(59,125,196,0.12); transform: translateY(-3px); transition: all 0.2s; }
body.page-blog .newsletter { background: linear-gradient(135deg, rgba(59,125,196,0.08), rgba(201,122,30,0.06)); }
body.page-blog .newsletter-form input:focus { border-color: #C97A1E; box-shadow: 0 0 0 4px rgba(201,122,30,0.12); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* ============================================================
   HERO COUNTDOWN
   ============================================================ */
.hero-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 24px;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
}
.hero-countdown .cd-num {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    min-width: 2ch;
    text-align: center;
}
.hero-countdown .cd-unit {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.1em;
    margin-left: 3px;
}
.hero-countdown .cd-sep {
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
    line-height: 1;
}

/* ============================================================
   WHO CARDS (Para quién)
   ============================================================ */
.who-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}
.who-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.who-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.who-card-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}
.who-card-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0 0 4px;
}
.who-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* Form field validation error state */
.field-error {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3px rgba(229,62,62,0.15) !important;
}
