:root {
    --tp-primary: #d71920;
    --tp-dark: #111827;
    --tp-green: #0f766e;
    --tp-gold: #f59e0b;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #1f2937;
    background: #f8fafc;
}

.navbar-brand { letter-spacing: .5px; }
.hero {
    min-height: 520px;
    background: linear-gradient(135deg, rgba(17,24,39,.85), rgba(15,118,110,.70)), url('../img/hero.svg') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
}
.hero h1 { font-weight: 800; font-size: clamp(2.4rem, 6vw, 5rem); }
.place-card { transition: transform .2s, box-shadow .2s; border: 0; overflow: hidden; }
.place-card:hover { transform: translateY(-4px); box-shadow: 0 .75rem 2rem rgba(0,0,0,.14); }
.place-card img { height: 220px; object-fit: cover; }
.icon-circle { width: 48px; height: 48px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background:#fff3cd; color:#a16207; }
.map-box { height: 380px; border-radius: 1rem; overflow: hidden; background:#e5e7eb; }
.admin-sidebar { min-height: 100vh; background: #111827; }
.admin-sidebar .nav-link { color: rgba(255,255,255,.78); border-radius: .6rem; margin-bottom: .15rem; }
.admin-sidebar .nav-link.active, .admin-sidebar .nav-link:hover { background: rgba(255,255,255,.12); color: #fff; }
.stat-card { border: 0; border-radius: 1rem; box-shadow: 0 .5rem 1.5rem rgba(15,23,42,.08); }
.form-section { background:white; border-radius:1rem; padding:1.25rem; box-shadow:0 .5rem 1.5rem rgba(15,23,42,.06); }
.footer { background:#111827; color:#cbd5e1; }
.footer a { color:#e5e7eb; text-decoration:none; }
.badge-soft { background: #ecfeff; color:#0e7490; }
.gallery-img { height: 130px; object-fit: cover; border-radius: .7rem; }

.business-card .card-img-top { background:#f3f4f6; }
.membership-badge { border:1px solid rgba(0,0,0,.08); background:#fff7ed; color:#9a3412; border-radius:999px; padding:.25rem .65rem; font-size:.8rem; }

.gallery-button {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    overflow: hidden;
    border-radius: .7rem;
    cursor: zoom-in;
}
.gallery-button .gallery-img { transition: transform .25s ease, filter .25s ease; }
.gallery-button:hover .gallery-img { transform: scale(1.04); filter: brightness(.78); }
.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: opacity .25s ease;
    background: rgba(0,0,0,.18);
}
.gallery-button:hover .gallery-zoom { opacity: 1; }
.gallery-modal-img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: .5rem;
    background: #111827;
}

/* Lightbox puro para galería de negocios y lugares: no depende del modal de Bootstrap */
.tp-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 99999;
}
.tp-lightbox.show { display: flex; }
.tp-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
}
.tp-lightbox-content {
    position: relative;
    width: min(1100px, 96vw);
    max-height: 92vh;
    background: #111827;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.35);
}
.tp-lightbox-title {
    color: #fff;
    margin: 0 3rem .75rem 0;
    font-weight: 700;
}
.tp-lightbox-img {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: .75rem;
    background: #000;
}
.tp-lightbox-close {
    position: absolute;
    top: .65rem;
    right: .8rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}
.tp-lightbox-close:hover { background: rgba(255,255,255,.28); }
body.tp-lightbox-open { overflow: hidden; }

.tp-lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 3.25rem .75rem 0;
}
.tp-lightbox-header .tp-lightbox-title { margin: 0; }
.tp-lightbox-counter {
    color: rgba(255,255,255,.82);
    font-weight: 700;
    font-size: .92rem;
    white-space: nowrap;
}
.tp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 2.35rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background .2s ease, transform .2s ease;
}
.tp-lightbox-nav:hover {
    background: rgba(255,255,255,.32);
    transform: translateY(-50%) scale(1.04);
}
.tp-lightbox-prev { left: 1.4rem; }
.tp-lightbox-next { right: 1.4rem; }
.tp-lightbox-help {
    color: rgba(255,255,255,.64);
    text-align: center;
    font-size: .82rem;
    margin-top: .65rem;
}
@media (max-width: 768px) {
    .tp-lightbox-content { width: 100vw; min-height: 100vh; border-radius: 0; padding: .85rem; display: flex; flex-direction: column; justify-content: center; }
    .tp-lightbox-header { margin-right: 3rem; }
    .tp-lightbox-img { max-height: 76vh; }
    .tp-lightbox-nav { width: 2.65rem; height: 2.65rem; font-size: 2rem; }
    .tp-lightbox-prev { left: .75rem; }
    .tp-lightbox-next { right: .75rem; }
    .tp-lightbox-help { display: none; }
}


/* Mejoras comerciales TURISMO PERÚ */
.hero-soft{background:linear-gradient(135deg,#fff7f2 0%,#ffffff 55%,#fff2cc 100%)}
.plan-featured{border:2px solid #dc3545!important;transform:translateY(-4px)}
.business-gallery .gallery-button{display:block;position:relative;width:100%;border:0;padding:0;background:transparent;overflow:hidden;border-radius:.7rem;cursor:zoom-in;text-decoration:none}
.business-gallery .gallery-img{height:150px;object-fit:cover;border-radius:.7rem;transition:transform .25s ease,filter .25s ease}
.business-gallery .gallery-button:hover .gallery-img{transform:scale(1.04);filter:brightness(.78)}
.business-gallery .gallery-zoom{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:#fff;font-size:2rem;opacity:0;transition:opacity .25s ease;background:rgba(0,0,0,.18)}
.business-gallery .gallery-button:hover .gallery-zoom{opacity:1}
.business-lightbox[hidden]{display:none!important}
.business-lightbox{position:fixed;inset:0;z-index:2147483000;display:flex;align-items:center;justify-content:center;padding:16px}
.business-lightbox-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.88)}
.business-lightbox-dialog{position:relative;width:min(1100px,96vw);max-height:92vh;background:#111827;border-radius:16px;padding:16px;box-shadow:0 20px 60px rgba(0,0,0,.45)}
.business-lightbox-title{color:#fff;font-weight:700;margin:0 48px 12px 0;min-height:24px}
.business-lightbox-image{display:block;width:100%;max-height:78vh;object-fit:contain;border-radius:12px;background:#000}
.business-lightbox-close{position:absolute;top:10px;right:12px;width:42px;height:42px;border:0;border-radius:50%;background:rgba(255,255,255,.18);color:#fff;font-size:32px;line-height:1;cursor:pointer;z-index:4}
.business-lightbox-close:hover{background:rgba(255,255,255,.3)}
.business-lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);width:50px;height:64px;border:0;border-radius:12px;background:rgba(255,255,255,.18);color:#fff;font-size:2rem;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:4}
.business-lightbox-nav:hover{background:rgba(255,255,255,.32)}
.business-lightbox-prev{left:20px}.business-lightbox-next{right:20px}.business-lightbox-counter{color:#fff;text-align:center;margin-top:10px;font-size:.95rem;opacity:.85}
body.business-lightbox-open{overflow:hidden}
@media(max-width:576px){.business-lightbox-dialog{padding:10px}.business-lightbox-nav{width:42px;height:54px;font-size:1.6rem}.business-lightbox-prev{left:10px}.business-lightbox-next{right:10px}.business-lightbox-image{max-height:74vh}}

/* Mejoras de perfiles de lugares turísticos */
.place-hero{background:linear-gradient(135deg,#fff 0%,#fff7ed 60%,#fee2e2 100%)}
.place-main-image{height:360px;object-fit:cover}
.info-tile,.route-box{background:#f8fafc;border:1px solid #e5e7eb;border-radius:1rem;padding:1rem;height:100%}
.info-tile span,.route-box span{display:block;color:#64748b;font-size:.82rem;margin-bottom:.25rem}
.info-tile strong,.route-box strong{color:#111827;font-size:1rem}
.place-gallery .gallery-img{height:145px;object-fit:cover;border-radius:.8rem}
.map-box{min-height:320px;border-radius:1rem;background:#f3f4f6;overflow:hidden}

/* Mi Pasaporte Turístico */
.traveler-auth {
    background: linear-gradient(135deg, rgba(12, 61, 92, .08), rgba(217, 164, 65, .12)), #fff;
    min-height: 70vh;
}
.passport-hero {
    background: radial-gradient(circle at top left, rgba(217,164,65,.25), transparent 35%), linear-gradient(135deg, #f9f4ec 0%, #ffffff 50%, #eef8f3 100%);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.passport-stat {
    background: #fff;
    border-radius: 22px;
    padding: 1.2rem;
    box-shadow: 0 12px 35px rgba(16,32,39,.08);
    border: 1px solid rgba(16,32,39,.06);
    text-align: center;
}
.passport-stat span {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #0B3D5C;
    line-height: 1;
}
.passport-stat small {
    display: block;
    margin-top: .35rem;
    color: #6c757d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .75rem;
}
.passport-place-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(16,32,39,.08);
    box-shadow: 0 12px 30px rgba(16,32,39,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.passport-place-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(16,32,39,.12);
}
.passport-place-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.passport-tabs .nav-link {
    border-radius: 999px;
    color: #0B3D5C;
    font-weight: 800;
}
.passport-tabs .nav-link.active {
    background: #0B3D5C;
}
.achievement-item {
    display: flex;
    gap: .75rem;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.achievement-item:last-child { border-bottom: 0; }
.achievement-item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(217,164,65,.18);
    color: #9b6b11;
    flex: 0 0 42px;
    font-size: 1.2rem;
}
.achievement-item strong { display: block; color: #102027; }
.achievement-item small { display: block; color: #6c757d; line-height: 1.35; }
.share-card { border: 1px solid rgba(16,32,39,.08); }
.passport-mini-cta {
    border: 1px solid rgba(217,164,65,.45);
    background: rgba(217,164,65,.09);
    border-radius: 18px;
    padding: .9rem 1rem;
}
.passport-mini-cta span { color: #6c757d; font-size: .92rem; }
.traveler-actions .btn-success { color: #fff !important; }
@media (max-width: 768px) {
    .passport-place-card img { height: 145px; }
}
.passport-home-cta {
    background: linear-gradient(135deg, rgba(11,61,92,.06), rgba(31,122,92,.07));
    border-top: 1px solid rgba(16,32,39,.06);
    border-bottom: 1px solid rgba(16,32,39,.06);
}

/* Promociones QR para viajeros */
.promo-claim-item{transition:transform .2s ease, box-shadow .2s ease}
.promo-claim-item:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(16,32,39,.08)}
.letter-spacing-1{letter-spacing:.08em}
.qr-benefit-card{border-radius:1.25rem;overflow:hidden}
.qr-benefit-card img{object-fit:cover}

/* Rediseño detalle destino turístico - guía visual y planificador */
.place-detail-hero {
    position: relative;
    min-height: 620px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.place-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    z-index: -2;
}
.place-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 27, 42, .90) 0%, rgba(11, 61, 92, .68) 48%, rgba(8, 27, 42, .28) 100%), linear-gradient(0deg, rgba(8,27,42,.78) 0%, rgba(8,27,42,.05) 50%);
    z-index: -1;
}
.min-vh-place { min-height: 620px; padding: 5rem 0 4rem; }
.place-detail-hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    line-height: .96;
    max-width: 920px;
    margin-bottom: 1.2rem;
    text-shadow: 0 14px 35px rgba(0,0,0,.35);
}
.place-hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    max-width: 780px;
    color: rgba(255,255,255,.92);
    margin-bottom: 1rem;
}
.place-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1.4rem;
    color: rgba(255,255,255,.86);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .48rem .82rem;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(12px);
    color: #fff;
    font-weight: 800;
    font-size: .88rem;
}
.hero-badge.success { background: rgba(31,122,92,.35); }
.hero-badge.warm { background: rgba(217,164,65,.34); }
.place-quick-card {
    background: rgba(255,255,255,.95);
    color: #102027;
    border-radius: 28px;
    padding: 1.4rem;
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    border: 1px solid rgba(255,255,255,.45);
}
.place-quick-card > span {
    display: block;
    color: #1F7A5C;
    font-weight: 900;
    letter-spacing: .1em;
    margin-bottom: .85rem;
}
.quick-row {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(16,32,39,.10);
}
.quick-row:last-child { border-bottom: 0; }
.quick-row i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(31,122,92,.12);
    color: #1F7A5C;
    flex: 0 0 42px;
}
.quick-row small { display: block; color: #6c757d; font-weight: 800; font-size: .78rem; }
.quick-row strong { display: block; color: #102027; line-height: 1.25; }
.place-actions-bar {
    background: #fff;
    border-bottom: 1px solid rgba(16,32,39,.08);
    position: sticky;
    top: 0;
    z-index: 22;
    box-shadow: 0 10px 28px rgba(16,32,39,.05);
}
.place-actions-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 0;
}
.place-detail-page { background: #f7f5ef; }
.place-section-card,
.side-card {
    background: #fff;
    border-radius: 28px;
    padding: clamp(1.25rem, 2.4vw, 2rem);
    box-shadow: 0 18px 50px rgba(16,32,39,.07);
    border: 1px solid rgba(16,32,39,.06);
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #1F7A5C;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .12em;
    font-weight: 900;
    margin-bottom: .35rem;
}
.place-section-card h2,
.side-card h3 {
    color: #102027;
    margin-bottom: .9rem;
}
.place-section-card h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.lead-text { font-size: 1.05rem; color: #455a64; line-height: 1.75; }
.content-block {
    padding-top: 1.2rem;
    margin-top: 1.2rem;
    border-top: 1px solid rgba(16,32,39,.08);
}
.content-block h3 { font-size: 1.25rem; color: #0B3D5C; }
.content-block p { color: #455a64; line-height: 1.75; }
.visit-planner-grid,
.route-detail-grid,
.rating-aspects-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
}
.planner-tile,
.route-box {
    min-height: 120px;
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(11,61,92,.06), rgba(31,122,92,.08));
    border: 1px solid rgba(16,32,39,.07);
}
.planner-tile i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(217,164,65,.18);
    color: #9b6b11;
    margin-bottom: .75rem;
}
.planner-tile span,
.route-box span {
    display: block;
    color: #6c757d;
    font-size: .80rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 900;
}
.planner-tile strong,
.route-box strong {
    display: block;
    margin-top: .25rem;
    color: #102027;
    line-height: 1.25;
}
.planner-note {
    border-radius: 20px;
    background: #fbfaf7;
    border: 1px solid rgba(16,32,39,.07);
    padding: 1.1rem;
    height: 100%;
}
.planner-note h4 { font-size: 1.05rem; color: #0B3D5C; }
.planner-note p { margin: 0; color: #546e7a; }
.visit-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .38rem .7rem;
    border-radius: 999px;
    background: #f6f8f7;
    border: 1px solid rgba(16,32,39,.08);
    color: #334155;
    font-weight: 800;
    font-size: .82rem;
}
.visit-chip.verified { background: rgba(31,122,92,.10); color: #1F7A5C; }
.visit-chip.linked { background: rgba(11,61,92,.09); color: #0B3D5C; }
.visit-chip.warm { background: rgba(217,164,65,.16); color: #8a5d0a; }
.visit-tabs {
    gap: .5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .2rem;
}
.visit-tabs .nav-link {
    white-space: nowrap;
    border-radius: 999px;
    color: #0B3D5C;
    background: #f6f8f7;
    font-weight: 900;
    border: 1px solid rgba(16,32,39,.08);
}
.visit-tabs .nav-link.active {
    background: #0B3D5C;
    color: #fff;
}
.visit-tabs .nav-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    margin-left: .3rem;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    font-size: .75rem;
}
.visit-business-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.visit-business-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 1rem;
    border-radius: 22px;
    background: #fbfaf7;
    border: 1px solid rgba(16,32,39,.08);
    padding: .85rem;
    min-width: 0;
}
.visit-business-media {
    width: 112px;
    height: 112px;
    border-radius: 18px;
    overflow: hidden;
    background: #eef2f0;
}
.visit-business-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.visit-business-body { min-width: 0; }
.visit-business-body h5 {
    font-size: 1.05rem;
    margin: 0 0 .25rem;
    color: #102027;
}
.visit-business-body p {
    color: #64748b;
    font-size: .9rem;
    line-height: 1.4;
    margin-bottom: .65rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.visit-business-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}
.destination-promo-card {
    display: flex;
    gap: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(16,32,39,.08);
    background: #fbfaf7;
    padding: .8rem;
    height: 100%;
}
.destination-promo-card .promo-image {
    width: 118px;
    height: 138px;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 118px;
    background: #eef2f0;
}
.destination-promo-card .promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.destination-promo-card h5 { margin: .5rem 0 .35rem; color: #102027; }
.destination-promo-card p {
    color: #64748b;
    font-size: .92rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.route-recommendation {
    margin-top: 1rem;
    border-radius: 20px;
    padding: 1rem;
    background: rgba(217,164,65,.14);
    border: 1px solid rgba(217,164,65,.28);
    color: #4d3a12;
}
.place-gallery-pro {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 135px;
    gap: .75rem;
}
.place-gallery-pro .gallery-button {
    height: 100%;
    border-radius: 20px;
}
.place-gallery-pro .gallery-button.featured {
    grid-column: span 2;
    grid-row: span 2;
}
.place-gallery-pro img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.video-frame {
    border-radius: 24px;
    overflow: hidden;
    background: #102027;
    box-shadow: 0 16px 40px rgba(16,32,39,.14);
}
.faq-clean .accordion-item {
    border: 1px solid rgba(16,32,39,.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: .65rem;
}
.faq-clean .accordion-button { font-weight: 900; }
.rating-aspects-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.rating-aspects-grid > div {
    background: #fbfaf7;
    border: 1px solid rgba(16,32,39,.07);
    border-radius: 16px;
    padding: .8rem;
}
.rating-aspects-grid small { display:block; color:#64748b; font-weight:800; }
.rating-aspects-grid span { display:block; margin-top:.25rem; }
.comment-item {
    border-bottom: 1px solid rgba(16,32,39,.08);
    padding: 1rem 0;
}
.comment-item p { margin: .4rem 0 0; color: #455a64; }
.comment-form {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fbfaf7;
    border-radius: 22px;
    border: 1px solid rgba(16,32,39,.08);
}
.comment-form h3 { font-size: 1.25rem; }
.sticky-place-sidebar {
    position: sticky;
    top: 90px;
}
.side-card { padding: 1.2rem; }
.side-card h3 { font-size: 1.25rem; }
.side-card small { color: #6c757d; }
.map-card .map-box {
    height: 320px;
    min-height: 320px;
    border-radius: 20px;
}
.side-place-link {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: .8rem;
    padding: .75rem 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(16,32,39,.08);
}
.side-place-link:last-child { border-bottom: 0; }
.side-place-link img {
    width: 82px;
    height: 66px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}
.side-place-link strong,
.side-place-link small { display:block; }
.side-place-link strong { color: #102027; line-height: 1.25; }
.route-mini {
    padding: .85rem 0;
    border-bottom: 1px solid rgba(16,32,39,.08);
}
.route-mini:last-child { border-bottom: 0; }
.route-mini strong,
.route-mini small,
.route-mini a { display:block; }
.warning-card { background: #fffaf0; border-color: rgba(217,164,65,.25); }
.warning-card p { color: #5c4b20; }
@media (max-width: 992px) {
    .place-actions-bar { position: static; }
    .place-actions-inner { flex-direction: column; align-items: stretch; }
    .visit-planner-grid,
    .route-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .visit-business-grid { grid-template-columns: 1fr; }
    .sticky-place-sidebar { position: static; }
    .min-vh-place { min-height: 560px; }
}
@media (max-width: 768px) {
    .place-detail-hero,
    .min-vh-place { min-height: auto; }
    .min-vh-place { padding: 4rem 0 2.5rem; }
    .place-quick-card { border-radius: 22px; }
    .visit-planner-grid,
    .route-detail-grid,
    .rating-aspects-grid { grid-template-columns: 1fr; }
    .place-gallery-pro { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 120px; }
    .place-gallery-pro .gallery-button.featured { grid-column: span 2; grid-row: span 2; }
    .destination-promo-card { flex-direction: column; }
    .destination-promo-card .promo-image { width: 100%; height: 170px; flex: 0 0 auto; }
}
@media (max-width: 576px) {
    .place-detail-hero h1 { font-size: 2.45rem; }
    .place-hero-meta { font-size: .9rem; }
    .visit-business-card { grid-template-columns: 1fr; }
    .visit-business-media { width: 100%; height: 170px; }
}


/* Carrusel de departamentos en Home */
.department-carousel-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    margin-top: -1px;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--tp-gold);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: .45rem;
}
.section-title {
    color: #102027;
    font-size: clamp(1.75rem, 3.4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -.03em;
}
.section-subtitle {
    max-width: 680px;
    color: #64748b;
    font-size: 1rem;
}
.department-carousel {
    position: relative;
    padding: .15rem 3.15rem 2.35rem;
}
.department-card {
    position: relative;
    display: block;
    min-height: 245px;
    border-radius: 26px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #0B3D5C;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
    isolation: isolate;
    transition: transform .25s ease, box-shadow .25s ease;
}
.department-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .22);
    color: #fff;
}
.department-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .35s ease, filter .35s ease;
    z-index: -2;
}
.department-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08);
}
.department-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 27, 42, .12) 0%, rgba(8, 27, 42, .35) 34%, rgba(8, 27, 42, .88) 100%);
    z-index: -1;
}
.department-card-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.15rem;
}
.department-card-label {
    display: inline-flex;
    padding: .28rem .55rem;
    border-radius: 999px;
    background: rgba(217, 164, 65, .95);
    color: #102027;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    margin-bottom: .55rem;
}
.department-card h3 {
    margin: 0 0 .35rem;
    font-size: 1.45rem;
    line-height: 1.05;
    font-weight: 900;
    text-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.department-card p {
    margin: 0 0 .8rem;
    color: rgba(255,255,255,.86);
    font-size: .9rem;
    line-height: 1.35;
    min-height: 2.45rem;
}
.department-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    font-size: .82rem;
}
.department-card-footer span {
    color: rgba(255,255,255,.85);
}
.department-card-footer strong {
    color: #fff;
    white-space: nowrap;
}
.department-carousel-control {
    top: 50%;
    transform: translateY(-58%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #0B3D5C;
    opacity: 1;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
    border: 1px solid rgba(15, 23, 42, .08);
}
.department-carousel-control:hover {
    background: #0B3D5C;
    color: #fff;
}
.department-carousel .carousel-control-prev { left: 0; }
.department-carousel .carousel-control-next { right: 0; }
.department-carousel-indicators {
    bottom: .35rem;
    margin-bottom: 0;
}
.department-carousel-indicators [data-bs-target] {
    width: 28px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    opacity: 1;
}
.department-carousel-indicators .active {
    background: #0B3D5C;
}
@media (max-width: 992px) {
    .department-carousel { padding: .15rem 0 2.35rem; }
    .department-carousel-control { display: none; }
    .department-card { min-height: 230px; }
}
@media (max-width: 576px) {
    .department-card { min-height: 215px; border-radius: 20px; }
    .department-card p { min-height: auto; }
}

/* Hero administrable desde el panel */
.hero.hero-manageable {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(17,24,39,var(--hero-overlay, .72)), rgba(15,118,110,calc(var(--hero-overlay, .72) - .06))),
        var(--hero-bg, url('../img/hero.svg')) center/cover no-repeat;
}
.hero.hero-manageable::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 72% 40%, rgba(245,158,11,.22), transparent 24%), linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.16));
    pointer-events: none;
}
.hero.hero-manageable .container { position: relative; z-index: 1; }
.hero.hero-manageable .hero-subtitle { max-width: 820px; }
.hero.hero-manageable .hero-search-form { max-width: 880px; }
.hero.hero-manageable .btn-outline-light { border-width: 1.5px; }


/* Hero slider administrable */
.home-hero-slider { position: relative; background: #0f172a; }
.home-hero-slider .carousel-item { min-height: 0; }
.home-hero-slider .hero.hero-manageable { min-height: 560px; display: flex; align-items: center; }
.hero-slider-control {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 1.25rem;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    opacity: 1;
    backdrop-filter: blur(8px);
}
.hero-slider-control:hover { background: rgba(255,255,255,.28); }
.hero-slider-control .bi { font-size: 1.35rem; color: #fff; }
.hero-slider-indicators { margin-bottom: 1.25rem; }
.hero-slider-indicators [data-bs-target] {
    width: 38px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255,255,255,.55);
}
.hero-slider-indicators .active { background-color: #ffc107; }
@media (max-width: 768px) {
    .home-hero-slider .hero.hero-manageable { min-height: 520px; padding-top: 5rem; padding-bottom: 4rem; }
    .hero-slider-control { display: none; }
}


.business-video-frame {
    background: #0f172a;
    box-shadow: 0 16px 35px rgba(15, 23, 42, .12);
}
.business-video-frame iframe {
    border: 0;
}

/* Filtros avanzados de lugares turísticos */
.places-search-section .places-filter-card{
    background:#fff;
    border:1px solid rgba(14,55,78,.12);
    border-radius:18px;
    padding:18px;
    box-shadow:0 16px 40px rgba(14,55,78,.08);
}
.places-search-section .form-control,.places-search-section .form-select{
    min-height:46px;
    border-radius:10px;
}
@media (max-width: 767px){
    .places-search-section .places-filter-card{padding:14px;}
    .places-search-section .btn{width:100%;}
}

/* Corrección y rediseño de Tienda Turística */
.corp-section {
    padding: clamp(3rem, 5vw, 5rem) 0;
}
.corp-soft {
    background: linear-gradient(180deg, #f8fafc 0%, #eef6f3 100%);
}
.corp-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.corp-section-head h2,
.shop-hero-section h1,
.product-title {
    color: #102027;
    letter-spacing: -.02em;
}
.corp-section-head p {
    color: #64748b;
    margin: .35rem 0 0;
}
.corp-section-label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #1F7A5C;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.btn-corp-primary {
    --bs-btn-color: #102027;
    --bs-btn-bg: #D9A441;
    --bs-btn-border-color: #D9A441;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0B3D5C;
    --bs-btn-hover-border-color: #0B3D5C;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0B3D5C;
    --bs-btn-active-border-color: #0B3D5C;
    font-weight: 900;
    border-radius: 999px;
}
.btn-corp-outline {
    --bs-btn-color: #0B3D5C;
    --bs-btn-bg: #fff;
    --bs-btn-border-color: rgba(11,61,92,.22);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0B3D5C;
    --bs-btn-hover-border-color: #0B3D5C;
    font-weight: 900;
    border-radius: 999px;
}
.shop-hero-section {
    position: relative;
    padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(2.6rem, 5vw, 4.5rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 10%, rgba(217,164,65,.25), transparent 28%),
        radial-gradient(circle at 10% 12%, rgba(31,122,92,.14), transparent 32%),
        linear-gradient(135deg, #f7fbfb 0%, #ffffff 48%, #f7efe2 100%);
    border-bottom: 1px solid rgba(16,32,39,.08);
}
.shop-hero-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -150px;
    bottom: -230px;
    border-radius: 50%;
    background: rgba(11,61,92,.08);
    pointer-events: none;
}
.shop-hero-section h1 {
    font-size: clamp(2.2rem, 4.7vw, 4.25rem);
    line-height: 1.02;
    max-width: 840px;
    margin-bottom: 1rem;
}
.shop-hero-section p {
    max-width: 760px;
    color: #455a64;
    font-size: 1.06rem;
    line-height: 1.75;
}
.shop-purpose-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(16,32,39,.08);
    border-radius: 28px;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 18px 50px rgba(16,32,39,.08);
    overflow: hidden;
}
.shop-purpose-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 160px;
    height: 160px;
    border-radius: 0 0 0 100%;
    background: linear-gradient(135deg, rgba(217,164,65,.28), rgba(31,122,92,.10));
    pointer-events: none;
}
.shop-purpose-card h2 {
    position: relative;
    color: #0B3D5C;
    font-size: clamp(1.45rem, 3vw, 2rem);
}
.shop-purpose-card p {
    position: relative;
    font-size: .98rem;
    line-height: 1.65;
}
.shop-purpose-icons {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1rem;
}
.shop-purpose-icons span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .42rem .72rem;
    border-radius: 999px;
    color: #0B3D5C;
    background: rgba(11,61,92,.07);
    border: 1px solid rgba(11,61,92,.09);
    font-size: .84rem;
    font-weight: 900;
}
.shop-filter-card {
    background: #fff;
    border: 1px solid rgba(16,32,39,.08);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 16px 40px rgba(16,32,39,.06);
}
.shop-filter-card .form-label {
    color: #0B3D5C;
    font-weight: 900;
    font-size: .82rem;
}
.shop-filter-card .form-control,
.shop-filter-card .form-select {
    border-radius: 14px;
    border-color: rgba(16,32,39,.14);
    min-height: 48px;
    font-size: .96rem;
}
.shop-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(16,32,39,.08);
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(16,32,39,.07);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.shop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(16,32,39,.13);
    border-color: rgba(31,122,92,.24);
}
.shop-product-img {
    position: relative;
    display: block;
    width: 100%;
    height: 235px;
    overflow: hidden;
    background: linear-gradient(135deg, #e7f0ef, #f7efe2);
    flex: 0 0 auto;
    text-decoration: none;
}
.shop-product-img img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}
.shop-product-card:hover .shop-product-img img {
    transform: scale(1.06);
    filter: saturate(1.06);
}
.shop-product-img > span {
    position: absolute;
    left: .9rem;
    bottom: .9rem;
    max-width: calc(100% - 1.8rem);
    padding: .38rem .68rem;
    border-radius: 999px;
    color: #102027;
    background: rgba(255,255,255,.92);
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
    font-size: .78rem;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.shop-product-body {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    flex: 1 1 auto;
    padding: 1rem 1rem 1.1rem;
    min-width: 0;
}
.shop-product-body small {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #1F7A5C;
    font-weight: 900;
    text-transform: capitalize;
}
.shop-product-body h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.2;
    color: #102027;
}
.shop-product-body h3 a {
    color: inherit;
    text-decoration: none;
}
.shop-product-body h3 a:hover {
    color: #1F7A5C;
}
.shop-product-body p {
    color: #60717c;
    font-size: .94rem;
    line-height: 1.48;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-product-meta {
    margin-top: auto;
    padding-top: .75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    border-top: 1px solid rgba(16,32,39,.08);
}
.shop-product-meta strong {
    color: #0B3D5C;
    font-size: 1.05rem;
    white-space: nowrap;
}
.shop-product-meta span {
    color: #64748b;
    font-size: .82rem;
    text-align: right;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}
.shop-product-body form {
    margin-top: .85rem !important;
}
.shop-product-body .btn {
    border-radius: 14px;
}
.product-detail-hero {
    padding: clamp(2.8rem, 5vw, 5rem) 0;
    background: linear-gradient(135deg, #fbfaf7 0%, #ffffff 52%, #eef6f3 100%);
    border-bottom: 1px solid rgba(16,32,39,.08);
}
.product-main-image {
    overflow: hidden;
    border-radius: 30px;
    background: #eef2f0;
    box-shadow: 0 18px 50px rgba(16,32,39,.10);
    border: 1px solid rgba(16,32,39,.08);
}
.product-main-image img {
    display: block;
    width: 100%;
    height: min(520px, 56vw);
    min-height: 340px;
    object-fit: cover;
}
.product-thumb {
    width: 100%;
    height: 86px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(16,32,39,.08);
}
.product-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}
.product-price-box {
    display: inline-flex;
    align-items: baseline;
    gap: .75rem;
    padding: .85rem 1.1rem;
    border-radius: 18px;
    color: #0B3D5C;
    background: rgba(217,164,65,.16);
    border: 1px solid rgba(217,164,65,.24);
}
.product-price-box strong { font-size: 1.9rem; line-height: 1; }
.product-price-box span { color: #64748b; text-decoration: line-through; }
.product-info-pill {
    display: flex;
    align-items: center;
    gap: .55rem;
    min-height: 56px;
    padding: .75rem .9rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(16,32,39,.08);
    color: #102027;
    text-decoration: none;
    font-weight: 800;
}
.product-info-pill i { color: #1F7A5C; }
.product-buy-card,
.corp-panel {
    background: #fff;
    border: 1px solid rgba(16,32,39,.08);
    border-radius: 24px;
    padding: 1.15rem;
    box-shadow: 0 16px 40px rgba(16,32,39,.06);
}
.product-description {
    color: #455a64;
    line-height: 1.75;
}
.product-check-list {
    padding-left: 1.1rem;
    color: #455a64;
}
@media (max-width: 1199px) {
    .shop-product-img { height: 220px; }
}
@media (max-width: 767px) {
    .corp-section-head { align-items: start; flex-direction: column; }
    .shop-hero-section { padding-top: 2.6rem; }
    .shop-filter-card { padding: .85rem; }
    .shop-product-img { height: 210px; }
    .product-main-image img { height: 340px; min-height: 300px; }
}
@media (max-width: 575px) {
    .shop-product-img { height: 200px; }
    .shop-product-meta { align-items: flex-start; flex-direction: column; }
    .shop-product-meta span { text-align: left; }
}

/* Actualización UX final: búsqueda global, páginas institucionales y estados vacíos */
.section-kicker{display:inline-flex;align-items:center;gap:.45rem;text-transform:uppercase;letter-spacing:.12em;font-size:.76rem;font-weight:800;color:#d99a00;margin-bottom:.35rem}
.search-panel{background:#fff;border:1px solid rgba(11,61,92,.12);border-radius:24px;padding:18px;box-shadow:0 18px 50px rgba(16,32,39,.08)}
.search-result-index{display:flex;gap:.65rem;flex-wrap:wrap}
.search-result-chip{display:inline-flex;align-items:center;gap:.45rem;padding:.72rem .95rem;border:1px solid rgba(11,61,92,.12);border-radius:999px;background:#fff;text-decoration:none;color:#0b3d5c;font-weight:700;box-shadow:0 8px 24px rgba(16,32,39,.05)}
.search-result-chip span{display:inline-flex;min-width:1.55rem;height:1.55rem;border-radius:50%;align-items:center;justify-content:center;background:#f3f7fa;color:#0b3d5c;font-size:.8rem}
.search-result-section{scroll-margin-top:90px}
.result-card{border:0;border-radius:22px;overflow:hidden;box-shadow:0 14px 42px rgba(16,32,39,.08);transition:transform .18s ease, box-shadow .18s ease;background:#fff}
.result-card:hover{transform:translateY(-4px);box-shadow:0 20px 55px rgba(16,32,39,.12)}
.result-card .card-img-top{height:220px;object-fit:cover;background:#eef4f6}
.empty-state-card{display:flex;gap:1rem;align-items:center;background:#fff;border:1px dashed rgba(11,61,92,.25);border-radius:20px;padding:1.3rem;color:#607080}
.empty-state-card i{font-size:2rem;color:#0b3d5c;background:#eef7fb;border-radius:16px;padding:.7rem}
.purpose-card,.value-card,.contact-info-card{border:1px solid rgba(11,61,92,.10);border-radius:24px;background:#fff}
.purpose-card{padding:2rem}
.mini-stat{background:#f5f8fb;border-radius:18px;padding:1rem;text-align:center}
.mini-stat strong{display:block;font-size:2rem;color:#0b3d5c;line-height:1}
.mini-stat span{color:#64748b;font-size:.9rem}
.value-card{padding:1.5rem;height:100%;box-shadow:0 12px 35px rgba(16,32,39,.06)}
.value-card i{font-size:2rem;color:#d9a441;margin-bottom:.8rem;display:inline-block}
.value-card h3{font-size:1.15rem;font-weight:800;margin-bottom:.6rem}
.value-card p{color:#64748b;margin-bottom:0}
.contact-line{display:flex;gap:1rem;align-items:flex-start;padding:1rem 0;border-bottom:1px solid #eef2f6}
.contact-line i{font-size:1.3rem;color:#0b3d5c;background:#eef7fb;border-radius:12px;padding:.65rem}
.contact-line strong{display:block}.contact-line span{display:block;color:#64748b;font-size:.92rem}
@media (max-width: 768px){.search-panel{padding:14px;border-radius:18px}.result-card .card-img-top{height:180px}.search-result-chip{width:100%;justify-content:space-between}.public-main-nav .navbar-collapse{padding-top:1rem}.public-nav-search{width:100%;}.public-nav-search input{min-width:0;width:100%}}


/* Actualización v9 mapa turístico inteligente */
.map-hero-section{background:linear-gradient(135deg,#fff 0%,#f2f7fb 58%,#fff7e6 100%)}
.map-summary-card{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;background:#fff;border:1px solid rgba(11,61,92,.10);border-radius:28px;padding:1.25rem;box-shadow:0 18px 48px rgba(16,32,39,.08)}
.map-summary-card div{border-radius:20px;background:#f5f8fb;padding:1.1rem;text-align:center}
.map-summary-card strong{display:block;font-size:2.1rem;color:#0b3d5c;line-height:1}.map-summary-card span{color:#64748b;font-weight:700;font-size:.92rem}
.smart-map-filter-card{background:#fff;border:1px solid rgba(11,61,92,.10);border-radius:24px;padding:1rem;box-shadow:0 14px 36px rgba(16,32,39,.06)}
.smart-map-panel{position:sticky;top:88px;background:#fff;border:1px solid rgba(11,61,92,.10);border-radius:26px;padding:1rem;box-shadow:0 18px 50px rgba(16,32,39,.09)}
.smart-tourism-map{height:660px;border-radius:22px;overflow:hidden;background:#e5e7eb;z-index:1}.map-legend{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:.85rem;color:#455a64;font-weight:700;font-size:.9rem}.map-legend span{display:inline-flex;align-items:center;gap:.4rem}.legend-dot{display:inline-block;width:.75rem;height:.75rem;border-radius:50%}.legend-place{background:#dc3545}.legend-business{background:#198754}.legend-event{background:#fd7e14}.legend-route{background:#0d6efd}
.smart-map-list{max-height:760px;overflow:auto;padding-right:.35rem}.smart-map-item{display:flex;gap:.9rem;align-items:flex-start;background:#fff;border:1px solid rgba(11,61,92,.10);border-radius:20px;padding:.85rem;margin-bottom:.9rem;box-shadow:0 10px 30px rgba(16,32,39,.05);cursor:pointer;transition:transform .15s ease,box-shadow .15s ease}.smart-map-item:hover{transform:translateY(-2px);box-shadow:0 16px 40px rgba(16,32,39,.09)}.smart-map-item img{width:86px;height:86px;object-fit:cover;border-radius:16px;background:#eef4f6}.smart-map-item h3{font-size:1rem;font-weight:800;margin:.35rem 0 .2rem;color:#102027}.smart-map-item p{margin:0;color:#64748b;font-size:.88rem}.smart-map-badge{display:inline-flex;padding:.28rem .55rem;border-radius:999px;font-size:.72rem;font-weight:800;color:#fff}.smart-map-badge-places{background:#dc3545}.smart-map-badge-businesses{background:#198754}.smart-map-badge-events{background:#fd7e14}.smart-map-badge-routes{background:#0d6efd}
.smart-map-marker span,.smart-map-user-marker span{display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;background:#fff;border:3px solid #dc3545;box-shadow:0 6px 18px rgba(16,32,39,.25);font-size:1rem}.smart-map-marker-businesses span{border-color:#198754}.smart-map-marker-events span{border-color:#fd7e14}.smart-map-marker-routes span{border-color:#0d6efd}.smart-map-user-marker span{border-color:#111827;background:#fff7e6}.smart-map-popup{width:230px}.smart-map-popup img{width:100%;height:110px;object-fit:cover;border-radius:12px;margin-bottom:.55rem}.smart-map-popup strong{display:block;font-size:1rem}.smart-map-popup small{display:block;color:#64748b;margin:.2rem 0}.smart-map-popup p{font-size:.86rem;color:#455a64;margin:.4rem 0 .7rem}.leaflet-popup-content{margin:12px}.leaflet-container a.btn{color:inherit}.leaflet-container a.btn-danger{color:#fff}
@media(max-width:991px){.smart-map-panel{position:relative;top:auto}.smart-tourism-map{height:480px}.smart-map-list{max-height:none}}@media(max-width:575px){.map-summary-card{grid-template-columns:1fr 1fr;padding:.9rem}.smart-map-item{align-items:stretch}.smart-map-item img{width:72px;height:72px}.smart-tourism-map{height:420px}}

.smart-tourism-map .leaflet-pane,.smart-tourism-map .leaflet-top,.smart-tourism-map .leaflet-bottom{z-index:2}.smart-tourism-map .leaflet-control-container{font-family:inherit}.smart-map-panel{min-height:520px}.smart-map-list::-webkit-scrollbar{width:8px}.smart-map-list::-webkit-scrollbar-thumb{background:#cbd5e1;border-radius:999px}

/* v12 - Blog turístico profesional */
.blog-index-hero,
.blog-detail-hero {
    position: relative;
    background:
        radial-gradient(circle at 12% 12%, rgba(245, 158, 11, .14), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(215, 25, 32, .10), transparent 30%),
        linear-gradient(135deg, #fff 0%, #fff7ed 55%, #f8fafc 100%);
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}
.blog-index-hero { padding: clamp(3rem, 7vw, 6rem) 0; }
.blog-detail-hero { padding: clamp(2.5rem, 6vw, 5.5rem) 0; }
.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #b91c1c;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: .75rem;
}
.blog-index-title,
.blog-detail-title {
    color: #111827;
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.03;
    margin-bottom: 1rem;
}
.blog-index-title { font-size: clamp(2.4rem, 6vw, 5.2rem); }
.blog-detail-title { font-size: clamp(2.25rem, 5.2vw, 4.7rem); }
.blog-index-lead,
.blog-detail-summary {
    color: #475569;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.65;
    max-width: 780px;
}
.blog-filter-card,
.blog-featured-card,
.blog-article-card,
.blog-gallery-card,
.blog-side-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 1.4rem;
    box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
}
.blog-filter-card { padding: 1.4rem; }
.blog-featured-card { padding: clamp(1rem, 2.5vw, 1.75rem); }
.blog-featured-img,
.blog-hero-image {
    width: 100%;
    object-fit: cover;
    display: block;
    background: #f1f5f9;
}
.blog-featured-img { height: clamp(280px, 34vw, 450px); border-radius: 1.15rem; }
.blog-hero-image-wrap {
    padding: .75rem;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .16);
    transform: rotate(1deg);
}
.blog-hero-image { height: clamp(290px, 35vw, 500px); border-radius: 1.1rem; }
.blog-meta-row,
.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1rem;
    color: #64748b;
    font-size: .94rem;
}
.blog-meta-row span,
.blog-card-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.blog-detail-section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.blog-article-card { overflow: hidden; }
.blog-content {
    padding: clamp(1.35rem, 3vw, 2.6rem);
    color: #1f2937;
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    line-height: 1.9;
}
.blog-content::first-letter {
    font-size: 3.2rem;
    line-height: .95;
    font-weight: 900;
    color: #dc2626;
    float: left;
    margin: .14rem .45rem 0 0;
}
.blog-gallery-card { padding: clamp(1rem, 2.3vw, 1.5rem); }
.blog-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: .85rem;
}
.blog-gallery-item {
    position: relative;
    border: 0;
    padding: 0;
    background: #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 155px;
    cursor: zoom-in;
}
.blog-gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 330px; }
.blog-gallery-item:nth-child(2),
.blog-gallery-item:nth-child(3),
.blog-gallery-item:nth-child(4),
.blog-gallery-item:nth-child(5) { grid-column: span 5; }
.blog-gallery-item:nth-child(n+6) { grid-column: span 4; }
.blog-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease, filter .25s ease;
}
.blog-gallery-item span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.65rem;
    background: rgba(0, 0, 0, .25);
    opacity: 0;
    transition: opacity .25s ease;
}
.blog-gallery-item:hover img { transform: scale(1.05); filter: brightness(.78); }
.blog-gallery-item:hover span { opacity: 1; }
.blog-sidebar-sticky { position: sticky; top: 88px; }
.blog-side-card { padding: 1.2rem; margin-bottom: 1.15rem; }
.blog-side-card h3 { font-size: 1rem; font-weight: 900; margin-bottom: 1rem; color: #111827; }
.blog-side-link,
.blog-mini-post,
.blog-related-card,
.blog-card-v12 a { text-decoration: none; }
.blog-side-link {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: .8rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
}
.blog-side-link:last-child { border-bottom: 0; padding-bottom: 0; }
.blog-side-link strong,
.blog-mini-post strong { display: block; color: #111827; line-height: 1.25; }
.blog-side-link small,
.blog-mini-post small { display: block; color: #64748b; margin-top: .15rem; }
.blog-side-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1f2;
    color: #b91c1c;
}
.blog-mini-post {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.blog-mini-post:last-child { border-bottom: 0; padding-bottom: 0; }
.blog-mini-post img { width: 78px; height: 64px; object-fit: cover; border-radius: .75rem; background: #e5e7eb; }
.blog-category-chip {
    display: inline-flex;
    align-items: center;
    padding: .45rem .7rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    color: #334155;
    text-decoration: none;
    font-size: .86rem;
    font-weight: 700;
}
.blog-category-chip:hover { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.blog-card-v12 {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 1.25rem;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card-v12:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(15, 23, 42, .11); }
.blog-card-image-link { display: block; overflow: hidden; }
.blog-card-image-link img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .25s ease; }
.blog-card-v12:hover .blog-card-image-link img { transform: scale(1.04); }
.blog-card-body { padding: 1.25rem; }
.blog-card-body h3 { font-size: 1.25rem; font-weight: 900; line-height: 1.25; margin-bottom: .75rem; }
.blog-card-body h3 a { color: #111827; }
.blog-card-body p { color: #64748b; margin-top: .85rem; }
.blog-read-more { display: inline-flex; align-items: center; gap: .3rem; color: #dc2626; font-weight: 800; }
.blog-related-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    color: #111827;
    box-shadow: 0 10px 28px rgba(15,23,42,.06);
}
.blog-related-card img { width: 100%; height: 135px; object-fit: cover; display: block; }
.blog-related-card span { display: block; color: #dc2626; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .85rem .95rem .25rem; }
.blog-related-card strong { display: block; padding: 0 .95rem 1rem; line-height: 1.25; }
@media (min-width: 1200px) {
    .blog-detail-section .container,
    .blog-detail-hero .container,
    .blog-index-hero .container { max-width: 1240px; }
}
@media (max-width: 991.98px) {
    .blog-sidebar-sticky { position: static; }
    .blog-hero-image-wrap { transform: none; }
}
@media (max-width: 767.98px) {
    .blog-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-gallery-item,
    .blog-gallery-item:nth-child(1),
    .blog-gallery-item:nth-child(2),
    .blog-gallery-item:nth-child(3),
    .blog-gallery-item:nth-child(4),
    .blog-gallery-item:nth-child(5),
    .blog-gallery-item:nth-child(n+6) { grid-column: span 1; min-height: 150px; grid-row: auto; }
    .blog-meta-row { font-size: .86rem; }
    .blog-content::first-letter { float: none; font-size: inherit; margin: 0; color: inherit; }
}

/* v13 - Ficha turística profesional del destino */
.destination-story-card { overflow: visible; }
.destination-story-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 1.25rem;
    align-items: start;
}
.destination-rating-card {
    border-radius: 24px;
    padding: 1.1rem;
    background: linear-gradient(135deg, rgba(217,164,65,.18), rgba(220,38,38,.07));
    border: 1px solid rgba(217,164,65,.32);
    text-align: center;
}
.destination-rating-card span { display:block; font-size: 1.05rem; margin-bottom: .25rem; }
.destination-rating-card strong { display:block; font-size: 2rem; line-height: 1; color:#102027; font-weight: 950; }
.destination-rating-card small { display:block; color:#64748b; font-weight: 800; margin-top: .35rem; }
.destination-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
}
.destination-summary-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: .75rem;
    align-items: center;
    padding: .95rem;
    border-radius: 20px;
    background: #fbfaf7;
    border: 1px solid rgba(16,32,39,.07);
}
.destination-summary-item i {
    grid-row: span 2;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(11,61,92,.08);
    color: #0B3D5C;
    font-size: 1.15rem;
}
.destination-summary-item span { color:#64748b; font-size:.78rem; font-weight: 900; text-transform: uppercase; letter-spacing:.05em; }
.destination-summary-item strong { color:#102027; line-height: 1.22; }
.destination-content-timeline {
    position: relative;
    display: grid;
    gap: 1rem;
}
.timeline-block {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(11,61,92,.04), rgba(31,122,92,.06));
    border: 1px solid rgba(16,32,39,.06);
}
.timeline-block > span {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-grid;
    place-items: center;
    background: #fff;
    color: #1F7A5C;
    box-shadow: 0 10px 24px rgba(16,32,39,.08);
    font-size: 1.25rem;
}
.timeline-block h3 { font-size: 1.15rem; color:#102027; margin-bottom: .35rem; }
.timeline-block p { margin:0; color:#455a64; line-height: 1.75; }
.traveler-guide-card {
    background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
}
.travel-check-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.travel-check-card,
.destination-note-box {
    border-radius: 22px;
    padding: 1rem;
    background: #fbfaf7;
    border: 1px solid rgba(16,32,39,.07);
    height: 100%;
}
.travel-check-card h3,
.destination-note-box h3,
.destination-itinerary h3 {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.05rem;
    color: #0B3D5C;
    margin-bottom: .75rem;
}
.travel-check-card ul,
.destination-note-box ul { padding-left: 1.15rem; margin-bottom: 0; color: #455a64; }
.travel-check-card li,
.destination-note-box li { margin-bottom: .35rem; }
.travel-check-card p,
.destination-note-box p { color:#546e7a; margin:0; line-height:1.6; }
.destination-itinerary {
    border-radius: 24px;
    padding: 1.15rem;
    background: #102027;
    color: #fff;
    overflow: hidden;
}
.destination-itinerary h3 { color: #fff; }
.itinerary-steps { display: grid; gap: .85rem; }
.itinerary-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: .8rem;
    padding: .85rem;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
}
.itinerary-step > span {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    background: rgba(217,164,65,.25);
    color: #ffd46b;
}
.itinerary-step strong { display:block; margin-bottom: .25rem; color:#fff; }
.itinerary-step p { margin:0; color: rgba(255,255,255,.82); line-height: 1.55; }
.destination-note-box.success { background: rgba(31,122,92,.07); border-color: rgba(31,122,92,.18); }
.destination-note-box.warning { background: #fff7ed; border-color: #fed7aa; }
.destination-side-summary {
    background: linear-gradient(135deg, #102027 0%, #0B3D5C 100%);
    color: #fff;
}
.destination-side-summary h3 { color:#fff; }
.side-kicker {
    display:inline-flex;
    margin-bottom:.45rem;
    color:#ffd46b;
    text-transform: uppercase;
    letter-spacing:.12em;
    font-size:.75rem;
    font-weight:900;
}
.side-summary-list { display:grid; gap:.65rem; margin-top: .9rem; }
.side-summary-list > div {
    display:grid;
    grid-template-columns: 38px 1fr;
    gap:.65rem;
    align-items:center;
    padding:.65rem;
    border-radius: 15px;
    background: rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.10);
}
.side-summary-list i {
    width:38px;
    height:38px;
    display:inline-grid;
    place-items:center;
    border-radius:13px;
    background: rgba(255,255,255,.13);
    color:#ffd46b;
}
.side-summary-list span { color: rgba(255,255,255,.88); font-weight: 700; line-height:1.3; }
.destination-index-card a {
    display:flex;
    align-items:center;
    gap:.6rem;
    padding:.75rem 0;
    border-bottom:1px solid rgba(16,32,39,.08);
    color:#102027;
    text-decoration:none;
    font-weight: 850;
}
.destination-index-card a:last-child { border-bottom:0; padding-bottom:0; }
.destination-index-card a:hover { color:#dc2626; }
@media (min-width: 1200px) {
    .place-detail-page .container,
    .place-detail-hero .container,
    .place-actions-bar .container { max-width: 1240px; }
}
@media (max-width: 991.98px) {
    .destination-story-head { grid-template-columns: 1fr; }
    .destination-rating-card { text-align: left; }
    .destination-summary-grid,
    .travel-check-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767.98px) {
    .destination-summary-grid,
    .travel-check-grid { grid-template-columns: 1fr; }
    .timeline-block,
    .itinerary-step { grid-template-columns: 1fr; }
}

/* v14 - Rediseño limpio de la ficha turística del destino */
.place-detail-page {
    background: linear-gradient(180deg, #fbf8f1 0%, #f6f3ec 100%);
}
.place-detail-page .container,
.place-detail-hero .container,
.place-actions-bar .container {
    max-width: 1280px;
}
.place-section-card,
.side-card {
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .06);
    border: 1px solid rgba(15, 23, 42, .07);
}
.destination-story-head {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 210px);
    gap: 1rem;
}
.destination-rating-card {
    padding: 1rem;
    align-self: start;
    background: #fff8e6;
    border-color: rgba(217, 164, 65, .35);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.destination-rating-card strong {
    font-size: 1.75rem;
}
.destination-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}
.destination-summary-item {
    min-height: auto;
    align-items: flex-start;
    padding: .85rem;
    background: #fffdf8;
}
.destination-summary-item i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
}
.destination-summary-item span,
.destination-plan-item small,
.destination-climate-box small {
    display: block;
    color: #64748b;
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .15rem;
}
.destination-summary-item strong,
.destination-plan-item strong {
    display: block;
    color: #102027;
    line-height: 1.28;
    white-space: normal;
    overflow: visible;
    word-break: normal;
    overflow-wrap: anywhere;
}
.destination-plan-clean {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}
.destination-plan-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: .75rem;
    align-items: flex-start;
    padding: .95rem;
    border-radius: 18px;
    background: #fffdf8;
    border: 1px solid rgba(15, 23, 42, .07);
}
.destination-plan-icon,
.destination-climate-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-grid;
    place-items: center;
    background: rgba(31,122,92,.10);
    color: #1F7A5C;
    font-size: 1.15rem;
    flex: 0 0 46px;
}
.destination-climate-box {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(11,61,92,.06), rgba(31,122,92,.08));
    border: 1px solid rgba(15, 23, 42, .07);
}
.destination-climate-box p {
    margin: 0;
    color: #455a64;
    line-height: 1.6;
}
.planner-tile,
.route-box {
    min-height: auto;
    height: auto;
}
.planner-tile strong,
.route-box strong {
    height: auto;
    min-height: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    padding: 0;
    color: #102027;
    white-space: normal;
    overflow-wrap: anywhere;
}
.travel-check-grid {
    align-items: stretch;
}
.travel-check-card,
.destination-note-box {
    min-height: auto;
    height: auto;
    background: #fffdf8;
}
.destination-itinerary {
    background: linear-gradient(135deg, #0f2a3a 0%, #0B3D5C 100%);
}
.itinerary-step p {
    white-space: normal;
    overflow-wrap: anywhere;
}
.place-gallery-pro {
    grid-auto-rows: 150px;
}
.place-gallery-pro .gallery-button {
    overflow: hidden;
}
.comment-form {
    background: #fffdf8;
}
@media (max-width: 1199.98px) {
    .destination-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991.98px) {
    .destination-story-head,
    .destination-plan-clean {
        grid-template-columns: 1fr;
    }
    .destination-rating-card {
        text-align: left;
    }
}
@media (max-width: 767.98px) {
    .destination-summary-grid,
    .travel-check-grid,
    .route-detail-grid,
    .rating-aspects-grid {
        grid-template-columns: 1fr;
    }
    .destination-plan-item,
    .destination-climate-box {
        grid-template-columns: 1fr;
    }
    .destination-climate-box {
        display: grid;
    }
    .place-section-card,
    .side-card {
        border-radius: 20px;
    }
}

/* v15 - Validación de visitas con fotografía */
.visit-validation-modal {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
}
.visit-validation-help {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(25,135,84,.10), rgba(13,110,253,.08));
    border: 1px solid rgba(15, 23, 42, .08);
}
.visit-validation-help > i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    background: #198754;
    color: #fff;
    font-size: 1.25rem;
    flex: 0 0 48px;
}
.visit-validation-help p {
    margin: .25rem 0 0;
    color: #52616b;
    line-height: 1.55;
}
.visit-validation-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
}
.visit-validation-photo {
    min-height: 230px;
    background: #eef2f7;
}
.visit-validation-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.visit-validation-body {
    padding: 1.25rem;
}
.visit-validation-body h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: .25rem;
}
@media (max-width: 767.98px) {
    .visit-validation-card {
        grid-template-columns: 1fr;
    }
    .visit-validation-photo {
        min-height: 220px;
    }
}

/* v17 - Blog con galería y video */
.blog-video-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 1.25rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    padding: clamp(1rem, 2.3vw, 1.5rem);
}
.blog-video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1rem;
    background: #0f172a;
}
.blog-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.blog-video-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: #fff7ed;
    border: 1px solid rgba(234, 88, 12, .18);
}
.blog-video-link > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dc3545;
    color: #fff;
    font-size: 1.4rem;
    flex: 0 0 auto;
}
.user-blog-gallery-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}
.user-blog-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: .9rem;
    border: 1px solid rgba(15, 23, 42, .1);
    background: #fff;
    cursor: pointer;
}
.user-blog-gallery-item img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    display: block;
}
.user-blog-gallery-item span {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .45rem .55rem;
    font-size: .78rem;
    font-weight: 700;
    color: #475569;
}
@media (max-width: 575.98px) {
    .blog-video-link { align-items: flex-start; flex-direction: column; }
    .blog-video-link .btn { width: 100%; }
    .user-blog-gallery-preview { grid-template-columns: 1fr; }
}

/* v18 - Contacto administrable */
.contact-line a{color:#0b3d5c;text-decoration:none;font-weight:700}
.contact-line a:hover{text-decoration:underline}
.contact-business-box{background:linear-gradient(135deg,#f8fafc,#fff7ed)!important;border-color:rgba(242,183,5,.25)!important}
.contact-business-icon{width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;border-radius:14px;background:#fff3cd;color:#8a5b00;flex-shrink:0}

/* v19 - Lugares destacados inteligentes */
.smart-place-card .card-img-top {
    height: 190px;
    object-fit: cover;
}
.smart-featured-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .16);
}
.smart-place-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .65rem;
    position: relative;
    z-index: 2;
}
.smart-place-metrics span {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .32rem .5rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #334155;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
}
.smart-place-metrics i {
    font-size: .85rem;
}
@media (max-width: 575.98px) {
    .smart-place-card .card-img-top { height: 180px; }
}


/* v20 - Colores y marca administrables */
body{background:var(--tp-bg);color:var(--tp-text);}
a{color:var(--tp-secondary);} a:hover{color:var(--tp-primary);}
.public-main-nav.navbar,.navbar.bg-dark,.navbar-dark.bg-dark{background:var(--tp-nav-bg)!important;}
.navbar-brand i,.navbar .nav-link.active,.navbar .nav-link:hover{color:var(--tp-accent)!important;}
.footer{background:var(--tp-footer-bg)!important;color:#cbd5e1;}
.btn-warning,.btn-admin-primary{background:var(--tp-accent)!important;border-color:var(--tp-accent)!important;color:#111827!important;}
.btn-danger{background:var(--tp-danger)!important;border-color:var(--tp-danger)!important;}
.btn-success{background:var(--tp-success)!important;border-color:var(--tp-success)!important;}
.btn-primary{background:var(--tp-primary)!important;border-color:var(--tp-primary)!important;}
.btn-outline-danger{color:var(--tp-danger)!important;border-color:var(--tp-danger)!important;}
.btn-outline-danger:hover{background:var(--tp-danger)!important;color:#fff!important;}
.btn-outline-primary{color:var(--tp-primary)!important;border-color:var(--tp-primary)!important;}
.btn-outline-primary:hover{background:var(--tp-primary)!important;color:#fff!important;}
.text-warning{color:var(--tp-accent)!important;}.text-danger{color:var(--tp-danger)!important;}.text-success{color:var(--tp-success)!important;}
.bg-warning{background-color:var(--tp-accent)!important;}.bg-danger{background-color:var(--tp-danger)!important;}.bg-success{background-color:var(--tp-success)!important;}.bg-primary{background-color:var(--tp-primary)!important;}
.badge-soft{background:color-mix(in srgb, var(--tp-primary) 12%, white);color:var(--tp-primary);}
.icon-circle{background:color-mix(in srgb, var(--tp-accent) 18%, white);color:color-mix(in srgb, var(--tp-accent) 70%, #111827);}
.hero{background:linear-gradient(135deg, color-mix(in srgb, var(--tp-dark) 88%, transparent), color-mix(in srgb, var(--tp-primary) 72%, transparent)), url('../img/hero.svg') center/cover no-repeat;}
.hero-soft{background:linear-gradient(135deg, color-mix(in srgb, var(--tp-accent) 13%, white) 0%, var(--tp-surface) 58%, color-mix(in srgb, var(--tp-primary) 9%, white) 100%);}
.place-hero{background:linear-gradient(135deg, var(--tp-surface) 0%, color-mix(in srgb, var(--tp-accent) 10%, white) 62%, color-mix(in srgb, var(--tp-primary) 8%, white) 100%);}
.place-card,.stat-card,.form-section,.card{background:var(--tp-surface);}
.admin-sidebar{background:var(--tp-nav-bg)!important;}
.auth-body{background:linear-gradient(135deg,var(--tp-nav-bg),color-mix(in srgb, var(--tp-primary) 40%, #111827));}
.passport-tabs .nav-link{color:var(--tp-secondary);}.passport-tabs .nav-link.active{background:var(--tp-secondary);color:#fff;}
.passport-stat span{color:var(--tp-secondary);}
.membership-badge{background:color-mix(in srgb, var(--tp-accent) 16%, white);color:color-mix(in srgb, var(--tp-accent) 58%, #111827);}


/* v22 - Ficha turística corporativa del destino */
.place-detail-hero {
    min-height: 470px;
    background: #0f172a;
}
.place-hero-overlay {
    background: linear-gradient(90deg, rgba(7, 22, 36, .94) 0%, rgba(11, 61, 92, .78) 46%, rgba(15, 23, 42, .42) 100%), linear-gradient(0deg, rgba(15, 23, 42, .55) 0%, rgba(15, 23, 42, .05) 55%);
}
.min-vh-place {
    min-height: 470px;
    padding: 4rem 0 3.25rem;
}
.place-detail-hero h1 {
    font-size: clamp(2.35rem, 4.7vw, 4.65rem);
    line-height: 1.02;
    letter-spacing: -.035em;
    max-width: 880px;
    text-shadow: 0 14px 28px rgba(0,0,0,.28);
}
.place-hero-lead {
    max-width: 780px;
    font-size: clamp(1rem, 1.35vw, 1.17rem);
    line-height: 1.7;
}
.hero-badge {
    border-radius: 6px;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.22);
    font-size: .78rem;
    letter-spacing: .025em;
    text-transform: uppercase;
}
.hero-badge.success,
.hero-badge.warm {
    background: rgba(255,255,255,.16);
}
.place-quick-card {
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 22px 50px rgba(0,0,0,.24);
    border: 1px solid rgba(255,255,255,.55);
}
.place-quick-card > span {
    color: var(--tp-primary);
    letter-spacing: .12em;
    font-size: .72rem;
}
.quick-row {
    gap: .75rem;
    padding: .78rem 0;
}
.quick-row i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--tp-primary) 10%, white);
    color: var(--tp-primary);
    font-size: .95rem;
    flex-basis: 34px;
}
.quick-row small {
    font-size: .70rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.quick-row strong {
    font-size: .95rem;
}
.place-actions-bar {
    border-top: 1px solid rgba(15,23,42,.06);
    border-bottom: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 8px 20px rgba(15,23,42,.04);
}
.place-actions-inner {
    padding: .75rem 0;
}
.place-actions-inner .btn,
.traveler-actions .btn {
    border-radius: 8px;
    font-weight: 800;
}
.place-detail-page {
    background: #f5f7f9;
}
.place-detail-page .container,
.place-detail-hero .container,
.place-actions-bar .container {
    max-width: 1180px;
}
.place-section-card,
.side-card {
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(15,23,42,.055);
    border: 1px solid rgba(15,23,42,.09);
    padding: clamp(1.15rem, 2.1vw, 1.75rem);
    overflow: visible;
}
.place-section-card h2,
.side-card h3 {
    color: #111827;
    letter-spacing: -.02em;
}
.place-section-card h2 {
    font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}
.section-eyebrow {
    color: var(--tp-primary);
    font-size: .72rem;
    letter-spacing: .14em;
    margin-bottom: .45rem;
}
.lead-text {
    color: #334155;
    line-height: 1.85;
    font-size: 1.02rem;
}
.destination-story-card {
    border-top: 4px solid var(--tp-primary);
}
.destination-story-head {
    grid-template-columns: minmax(0, 1fr) 170px;
    align-items: start;
}
.destination-rating-card {
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.10);
    padding: .9rem;
}
.destination-rating-card strong {
    color: #111827;
    font-size: 1.45rem;
}
.destination-rating-card small {
    font-size: .75rem;
    color: #64748b;
}
.destination-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
}
.destination-summary-item {
    min-height: 0;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-left: 3px solid color-mix(in srgb, var(--tp-primary) 65%, #d1d5db);
    padding: .78rem .85rem;
    grid-template-columns: 28px 1fr;
    gap: .6rem;
}
.destination-summary-item i {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: transparent;
    color: var(--tp-primary);
    font-size: 1rem;
}
.destination-summary-item span,
.destination-plan-item small,
.destination-climate-box small {
    font-size: .68rem;
    letter-spacing: .09em;
    color: #64748b;
}
.destination-summary-item strong,
.destination-plan-item strong {
    font-size: .95rem;
    color: #0f172a;
    font-weight: 800;
}
.destination-content-timeline {
    gap: .75rem;
}
.timeline-block {
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.08);
    grid-template-columns: 34px 1fr;
    padding: .95rem;
}
.timeline-block > span {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    box-shadow: none;
    border: 1px solid rgba(15,23,42,.08);
    color: var(--tp-primary);
    font-size: .95rem;
}
.timeline-block h3 {
    font-size: 1rem;
    color: #111827;
}
.timeline-block p {
    color: #334155;
    line-height: 1.75;
}
.destination-plan-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}
.destination-plan-item {
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    grid-template-columns: 30px 1fr;
    padding: .8rem;
}
.destination-plan-icon,
.destination-climate-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: transparent;
    color: var(--tp-primary);
    font-size: 1rem;
    flex-basis: 30px;
}
.destination-climate-box {
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.08);
    padding: .9rem;
}
.destination-climate-box p {
    color: #334155;
    line-height: 1.7;
}
.visit-chip {
    border-radius: 6px;
    font-size: .82rem;
    background: #f8fafc;
}
.traveler-guide-card {
    background: #fff;
}
.travel-check-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}
.travel-check-card,
.destination-note-box {
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.08);
    padding: .9rem;
}
.travel-check-card h3,
.destination-note-box h3,
.destination-itinerary h3 {
    color: #111827;
    font-size: .98rem;
}
.travel-check-card h3 i,
.destination-note-box h3 i,
.destination-itinerary h3 i {
    color: var(--tp-primary);
}
.travel-check-card p,
.destination-note-box p,
.travel-check-card li,
.destination-note-box li {
    color: #334155;
    line-height: 1.65;
}
.destination-itinerary {
    border-radius: 10px;
    background: #0f172a;
    padding: 1rem;
}
.itinerary-step {
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    grid-template-columns: 32px 1fr;
    padding: .78rem;
}
.itinerary-step > span {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: rgba(255,255,255,.10);
    color: var(--tp-accent);
}
.visit-tabs .nav-link {
    border-radius: 8px;
}
.visit-business-card {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid rgba(15,23,42,.08);
}
.visit-business-media,
.visit-business-media img {
    border-radius: 8px 0 0 8px;
}
.destination-promo-card,
.route-box,
.comment-item,
.comment-form,
.faq-clean .accordion-item {
    border-radius: 8px;
}
.route-detail-grid {
    gap: .65rem;
}
.route-box {
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.08);
    padding: .85rem;
}
.route-recommendation {
    border-radius: 8px;
    background: #f8fafc;
    border-left: 3px solid var(--tp-primary);
}
.place-gallery-pro {
    gap: .6rem;
    grid-auto-rows: 135px;
}
.place-gallery-pro .gallery-button {
    border-radius: 8px;
}
.destination-side-summary {
    border-radius: 10px;
    background: #0f172a;
}
.side-summary-list > div {
    border-radius: 8px;
}
.side-summary-list i {
    border-radius: 7px;
    color: var(--tp-accent);
}
.destination-index-card a {
    font-size: .92rem;
}
.side-place-link,
.route-mini {
    border-radius: 8px;
}
.warning-card {
    border-left: 3px solid var(--tp-warning);
}
@media (max-width: 1199.98px) {
    .destination-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991.98px) {
    .place-detail-hero,
    .min-vh-place { min-height: auto; }
    .destination-story-head,
    .destination-plan-clean,
    .travel-check-grid { grid-template-columns: 1fr; }
    .destination-rating-card { text-align: left; max-width: none; }
}
@media (max-width: 767.98px) {
    .place-detail-hero h1 { font-size: 2.25rem; }
    .destination-summary-grid,
    .route-detail-grid,
    .rating-aspects-grid { grid-template-columns: 1fr; }
    .place-actions-bar { position: static; }
    .place-gallery-pro { grid-auto-rows: 120px; }
    .place-gallery-pro .gallery-button.featured { grid-column: span 2; grid-row: span 2; }
}

/* v23 - Blog con diseño editorial tipo revista turística */
.editorial-blog-page {
    background:
        linear-gradient(180deg, rgba(248,250,252,.95), rgba(241,245,249,.96)),
        radial-gradient(circle at 12% 8%, rgba(200,155,60,.11), transparent 24%);
    padding: clamp(2rem, 4vw, 3.8rem) 0;
}
.editorial-container { max-width: 1240px; }
.editorial-paper {
    background: var(--tp-surface, #fff);
    border: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 26px 80px rgba(15,23,42,.10);
    padding: clamp(1.15rem, 3vw, 3rem);
}
.editorial-header {
    border-top: 4px solid var(--tp-dark, #111827);
    border-bottom: 1px solid rgba(15,23,42,.18);
    padding: 1.15rem 0 1.35rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}
.editorial-kicker-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem .9rem;
    color: #475569;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}
.editorial-kicker-row span {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
}
.editorial-masthead {
    display: inline-flex;
    align-items: center;
    color: var(--tp-primary, #d71920);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--tp-primary, #d71920);
    padding-bottom: .25rem;
    margin-bottom: .8rem;
}
.editorial-title {
    max-width: 980px;
    color: #0f172a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.15rem, 5vw, 5rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: .98;
    margin: 0 0 .9rem;
}
.editorial-lead {
    max-width: 850px;
    color: #334155;
    font-size: clamp(1.05rem, 1.75vw, 1.35rem);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.editorial-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.1rem;
    border-top: 1px solid rgba(15,23,42,.12);
    padding-top: .8rem;
    color: #475569;
    font-size: .92rem;
    font-weight: 650;
}
.editorial-meta-bar span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.editorial-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 345px;
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: start;
}
.editorial-article-main { min-width: 0; }
.editorial-article-body {
    color: #172033;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.02rem, 1.2vw, 1.13rem);
    line-height: 1.82;
    column-count: 2;
    column-gap: 1.65rem;
    column-rule: 1px solid rgba(15,23,42,.10);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}
.editorial-article-body p {
    break-inside: avoid;
    margin: 0 0 1.08rem;
    text-align: justify;
    text-justify: inter-word;
}
.editorial-article-body p:last-child {
    text-align-last: left;
}
.editorial-article-body p:first-child::first-letter {
    float: left;
    color: var(--tp-primary, #d71920);
    font-size: 4.25rem;
    font-weight: 900;
    line-height: .82;
    padding: .18rem .48rem .05rem 0;
}
.editorial-aside {
    position: sticky;
    top: 88px;
}
.editorial-cover {
    margin: 0 0 1.15rem;
    border: 1px solid rgba(15,23,42,.12);
    background: #fff;
    padding: .55rem;
}
.editorial-cover img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: saturate(.98) contrast(1.02);
}
.editorial-cover figcaption {
    border-top: 1px solid rgba(15,23,42,.12);
    color: #64748b;
    font-size: .82rem;
    line-height: 1.45;
    padding: .55rem .2rem .1rem;
}
.editorial-cover-mobile { display: none; }
.editorial-share-card,
.editorial-section-block,
.editorial-side-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,.12);
    border-radius: 0;
    box-shadow: none;
}
.editorial-share-card {
    padding: 1rem;
    margin-bottom: 1.15rem;
}
.editorial-share-card h3 {
    color: #111827;
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(15,23,42,.15);
    padding-bottom: .55rem;
    margin-bottom: .8rem;
}
.editorial-section-block {
    padding: clamp(1rem, 2.5vw, 1.55rem);
}
.editorial-section-head { margin-bottom: 1rem; }
.editorial-section-head span {
    display: inline-flex;
    color: var(--tp-primary, #d71920);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}
.editorial-section-head h2 {
    color: #0f172a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.45rem, 2vw, 2.05rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}
.editorial-section-head p {
    color: #64748b;
    margin: .35rem 0 0;
}
.editorial-video-embed { border-radius: 0; }
.editorial-video-link { border-radius: 0; }
.editorial-count-badge {
    border: 1px solid rgba(15,23,42,.14);
    padding: .4rem .65rem;
    font-size: .85rem;
    white-space: nowrap;
}
.editorial-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .7rem;
}
.editorial-gallery-item {
    position: relative;
    min-height: 145px;
    border: 0;
    padding: 0;
    background: #e5e7eb;
    overflow: hidden;
    cursor: zoom-in;
}
.editorial-gallery-item:nth-child(1) {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 300px;
}
.editorial-gallery-item:nth-child(2),
.editorial-gallery-item:nth-child(3) { grid-column: span 3; }
.editorial-gallery-item:nth-child(n+4) { grid-column: span 2; }
.editorial-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease, filter .25s ease;
}
.editorial-gallery-item span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(15,23,42,.34);
    color: #fff;
    font-size: 1.55rem;
    opacity: 0;
    transition: opacity .25s ease;
}
.editorial-gallery-item:hover img { transform: scale(1.04); filter: brightness(.78); }
.editorial-gallery-item:hover span { opacity: 1; }
.editorial-related-card { border-radius: 0; box-shadow: none; }
.editorial-side-card {
    padding: 1rem;
    margin-bottom: 1.15rem;
}
.editorial-side-card h3 {
    color: #111827;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(15,23,42,.15);
    padding-bottom: .55rem;
    margin-bottom: .7rem;
}
.editorial-side-card .blog-side-icon {
    border-radius: 0;
    background: #f1f5f9;
    color: #0f172a;
}
.editorial-category-chip { border-radius: 0; }
@media (max-width: 991.98px) {
    .editorial-paper { padding: 1.15rem; }
    .editorial-main-grid { grid-template-columns: 1fr; }
    .editorial-aside { position: static; }
    .editorial-cover:not(.editorial-cover-mobile) { display: none; }
    .editorial-cover-mobile { display: block; }
    .editorial-article-body { column-count: 1; column-rule: 0; }
}
@media (max-width: 767.98px) {
    .editorial-blog-page { padding: 0; }
    .editorial-paper { border-left: 0; border-right: 0; }
    .editorial-title { font-size: clamp(2rem, 12vw, 3rem); }
    .editorial-cover img { height: 230px; }
    .editorial-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .editorial-gallery-item,
    .editorial-gallery-item:nth-child(1),
    .editorial-gallery-item:nth-child(2),
    .editorial-gallery-item:nth-child(3),
    .editorial-gallery-item:nth-child(n+4) {
        grid-column: span 1;
        grid-row: auto;
        min-height: 155px;
    }
    .editorial-kicker-row { font-size: .7rem; }
    .editorial-meta-bar { font-size: .84rem; }
}

/* v27.4 - Promociones compactas del servicio turístico */
.business-sidebar-promotions-list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.business-sidebar-promo-row {
    display: flex;
    align-items: stretch;
    gap: .7rem;
    padding: .55rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.business-sidebar-promo-row:hover {
    transform: translateY(-1px);
    border-color: rgba(220, 53, 69, .25) !important;
    box-shadow: 0 .65rem 1.25rem rgba(15, 23, 42, .09) !important;
}
.business-sidebar-promo-thumb {
    width: 82px;
    min-width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: .85rem;
    display: block;
    background: #f3f4f6;
}
.business-sidebar-promo-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tp-primary, #d71920);
    font-size: 1.4rem;
}
.business-sidebar-promo-content {
    flex: 1;
    min-width: 0;
}
.business-sidebar-promo-title {
    font-size: .88rem;
    line-height: 1.22;
    color: #111827;
}
.business-sidebar-promo-badge {
    font-size: .68rem;
    white-space: nowrap;
    padding: .35rem .45rem;
}
.business-sidebar-promo-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}
.business-sidebar-promo-date {
    font-size: .72rem;
    white-space: nowrap;
}
.business-sidebar-promo-btn {
    padding: .22rem .55rem;
    font-size: .75rem;
    white-space: nowrap;
}
@media (max-width: 575.98px) {
    .business-sidebar-promo-row {
        gap: .6rem;
        padding: .5rem;
    }
    .business-sidebar-promo-thumb {
        width: 72px;
        min-width: 72px;
        height: 72px;
    }
    .business-sidebar-promo-badge,
    .business-sidebar-promo-date,
    .business-sidebar-promo-btn {
        font-size: .68rem;
    }
}

/* v27.7 - Lateral fijo/sticky sin scroll interno en detalle de servicio turístico */
.business-detail-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 115px;
    z-index: 5;
    align-self: flex-start;
    max-height: none;
    overflow: visible;
}
@media (max-width: 991.98px) {
    .business-detail-sidebar {
        position: static;
        top: auto;
        max-height: none;
        overflow: visible;
    }
}

/* v27.9 - Lateral fijo con límite inferior para no invadir el footer */
.business-detail-sidebar-col {
    position: relative;
}
@media (min-width: 992px) {
    .business-detail-sidebar {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    .business-detail-sidebar.is-fixed-sidebar {
        position: fixed !important;
        top: 118px !important;
        z-index: 30;
        max-height: none !important;
        overflow: visible !important;
    }
    .business-detail-sidebar.is-bottom-sidebar {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 2;
        max-height: none !important;
        overflow: visible !important;
    }
}
@media (max-width: 991.98px) {
    .business-detail-sidebar,
    .business-detail-sidebar.is-fixed-sidebar,
    .business-detail-sidebar.is-bottom-sidebar {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
}


/* v27.10 - Lateral del servicio fijo con CSS sticky, sin scroll interno y sin invadir footer */
.business-detail-scroll-row {
    align-items: stretch;
}
.business-detail-sidebar-col {
    position: relative;
}
@media (min-width: 992px) {
    .business-detail-sidebar,
    .business-detail-sidebar.is-fixed-sidebar,
    .business-detail-sidebar.is-bottom-sidebar {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 118px !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        z-index: 5 !important;
        max-height: none !important;
        overflow: visible !important;
        align-self: flex-start;
    }
}
@media (max-width: 991.98px) {
    .business-detail-sidebar,
    .business-detail-sidebar.is-fixed-sidebar,
    .business-detail-sidebar.is-bottom-sidebar {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
}


/* v27.13 - Personalización visual avanzada desde Configuración general */
body { color: var(--tp-text, #1f2937); background: var(--tp-bg, #f8fafc); }
.public-main-nav, .navbar.bg-dark { background: var(--tp-nav-bg, #111827) !important; }
.public-main-nav .navbar-brand, .public-main-nav .nav-link { color: var(--tp-nav-text, #e5e7eb) !important; }
.public-main-nav .nav-link:hover, .public-main-nav .nav-link:focus, .public-main-nav .nav-link.active { color: var(--tp-nav-active, #f2b705) !important; }
.public-nav-search .btn-warning, .navbar .btn-warning { background: var(--tp-search-button, #f2b705) !important; border-color: var(--tp-search-button, #f2b705) !important; color: #111827 !important; }
.card, .form-section, .place-section-card, .side-card { background-color: var(--tp-surface, #ffffff); }
.text-muted { color: var(--tp-muted, #64748b) !important; }
.btn-danger, .btn-brand-primary {
    background: var(--tp-button-primary, #d71920) !important;
    border-color: var(--tp-button-primary, #d71920) !important;
    color: var(--tp-button-text, #ffffff) !important;
}
.btn-danger:hover, .btn-danger:focus, .btn-brand-primary:hover, .btn-brand-primary:focus {
    background: var(--tp-button-hover, #b9141a) !important;
    border-color: var(--tp-button-hover, #b9141a) !important;
    color: var(--tp-button-text, #ffffff) !important;
}
.btn-outline-danger, .btn-brand-outline {
    color: var(--tp-outline-button, #d71920) !important;
    border-color: var(--tp-outline-button, #d71920) !important;
    background: transparent !important;
}
.btn-outline-danger:hover, .btn-outline-danger:focus, .btn-brand-outline:hover, .btn-brand-outline:focus {
    color: var(--tp-button-text, #ffffff) !important;
    background: var(--tp-outline-button, #d71920) !important;
    border-color: var(--tp-outline-button, #d71920) !important;
}
.btn-success, .btn-brand-secondary {
    background: var(--tp-button-secondary, #0f766e) !important;
    border-color: var(--tp-button-secondary, #0f766e) !important;
    color: var(--tp-button-text, #ffffff) !important;
}
.badge.bg-danger, .badge.text-bg-danger, .text-bg-danger {
    background-color: var(--tp-badge-bg, #d71920) !important;
    color: var(--tp-badge-text, #ffffff) !important;
}
.badge-soft { background: color-mix(in srgb, var(--tp-badge-bg, #d71920) 12%, #ffffff); color: var(--tp-badge-bg, #d71920); }
.passport-home-cta { background: var(--tp-home-cta-bg, #eef7f4) !important; }
.home-business-cta { background: linear-gradient(135deg, var(--tp-business-cta-bg, #0f766e), var(--tp-business-cta-bg-2, #123c69)) !important; }
.home-business-cta .home-business-cta-btn { background: var(--tp-search-button, #f2b705) !important; border-color: var(--tp-search-button, #f2b705) !important; color: #111827 !important; }
.footer { background: var(--tp-footer-bg, #111827) !important; color: var(--tp-footer-text, #cbd5e1) !important; }
.footer a { color: var(--tp-footer-link, #e5e7eb) !important; }
.footer h5, .footer h6 { color: var(--tp-footer-link, #e5e7eb) !important; }
.admin-sidebar-v2, .admin-sidebar { background: var(--admin-dark, #0f1b2d) !important; }
.admin-menu-link.active, .admin-menu-link:hover { background: color-mix(in srgb, var(--admin-primary, #0b4f7a) 60%, transparent) !important; }
.admin-topbar .btn-primary, .admin-body .btn-primary { background: var(--admin-primary, #0b4f7a) !important; border-color: var(--admin-primary, #0b4f7a) !important; }

/* v27.14 - Configuración visual más amigable */
.admin-color-value {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}
.admin-color-swatch {
    width: 34px;
    height: 22px;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.admin-color-hex {
    font-weight: 700;
    color: #0f172a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    letter-spacing: .02em;
}
.admin-table code {
    color: #64748b;
    background: #f8fafc;
    padding: 2px 6px;
    border-radius: 6px;
}

/* v27.15 - Perfil profesional de destino turístico */
.destination-profile-header {
    padding: clamp(2rem, 4vw, 4.25rem) 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.98)),
        radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--tp-primary, #d71920) 10%, transparent), transparent 30%);
}
.destination-profile-header .container {
    max-width: 1180px;
}
.destination-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}
.destination-profile-badges .badge {
    border-radius: 6px;
    font-weight: 800;
    letter-spacing: .01em;
    padding: .42rem .55rem;
}
.destination-profile-title {
    color: #111827;
    line-height: 1.05;
    letter-spacing: -.035em;
    max-width: 850px;
}
.destination-profile-lead {
    color: #475569;
    line-height: 1.65;
    max-width: 820px;
}
.destination-profile-location {
    font-weight: 600;
}
.destination-profile-rating {
    font-weight: 700;
}
.destination-profile-actions .btn {
    border-radius: 7px;
    font-weight: 800;
}
.destination-profile-image-card {
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 20px 50px rgba(15,23,42,.12);
    aspect-ratio: 16 / 10;
}
.destination-profile-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.destination-profile-facts {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: .75rem;
}
.destination-profile-fact {
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 10px;
    padding: .8rem .85rem;
    box-shadow: 0 10px 24px rgba(15,23,42,.045);
    min-height: 96px;
}
.destination-profile-fact i {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: var(--tp-primary, #d71920);
    background: color-mix(in srgb, var(--tp-primary, #d71920) 8%, white);
    border-radius: 7px;
    margin-bottom: .45rem;
}
.destination-profile-fact span {
    display: block;
    color: #64748b;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .15rem;
}
.destination-profile-fact strong {
    display: block;
    color: #0f172a;
    line-height: 1.25;
    font-weight: 850;
    font-size: .9rem;
}
.place-detail-page {
    background: #f5f7f9;
}
.sticky-place-sidebar {
    top: 104px;
}
@media (max-width: 1199.98px) {
    .destination-profile-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 991.98px) {
    .destination-profile-header { padding: 2rem 0; }
    .destination-profile-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .destination-profile-image-card { aspect-ratio: 16 / 9; }
}
@media (max-width: 575.98px) {
    .destination-profile-facts { grid-template-columns: 1fr; }
    .destination-profile-actions .btn,
    .destination-profile-actions form { width: 100%; }
    .destination-profile-actions form .btn { width: 100%; }
}

/* v27.16 - Ajustes visuales del perfil de destino turístico */
.destination-profile-header {
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.99)),
        radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--tp-primary, #d71920) 7%, transparent), transparent 32%);
}
.destination-actions-priority .btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.destination-profile-facts {
    gap: 0;
    background: #fff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15,23,42,.07);
}
.destination-profile-fact {
    border: 0;
    border-right: 1px solid rgba(15,23,42,.08);
    border-radius: 0;
    box-shadow: none;
    min-height: 78px;
    padding: .82rem .95rem;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: .65rem;
    align-items: center;
}
.destination-profile-fact:last-child {
    border-right: 0;
}
.destination-profile-fact i {
    margin-bottom: 0;
    background: color-mix(in srgb, var(--tp-primary, #d71920) 7%, #ffffff);
    border: 1px solid color-mix(in srgb, var(--tp-primary, #d71920) 18%, transparent);
}
.destination-profile-fact span,
.destination-profile-fact strong {
    grid-column: 2;
}
.destination-profile-fact span {
    margin-bottom: .06rem;
}
.destination-story-card {
    border-top: 3px solid var(--tp-primary, #d71920);
}
.destination-story-head {
    display: grid;
    gap: 1.25rem;
}
.destination-rating-card {
    align-self: start;
}
.visit-validation-side-card {
    border-left: 4px solid #16a34a;
    background: linear-gradient(180deg, #ffffff, #f8fff9);
}
.visit-validation-side-card p {
    color: #475569;
    line-height: 1.55;
    font-size: .92rem;
}
.visit-validation-side-card .btn {
    font-weight: 800;
}
.destination-plan-clean,
.travel-check-grid {
    align-items: stretch;
}
.destination-plan-item,
.travel-check-card {
    min-height: 0;
}
@media (max-width: 1199.98px) {
    .destination-profile-fact:nth-child(3n) { border-right: 0; }
    .destination-profile-fact:nth-child(6n) { border-right: 0; }
}
@media (max-width: 991.98px) {
    .destination-profile-facts {
        border-radius: 10px;
    }
    .destination-profile-fact:nth-child(odd) { border-right: 1px solid rgba(15,23,42,.08); }
    .destination-profile-fact:nth-child(even) { border-right: 0; }
}
@media (max-width: 575.98px) {
    .destination-profile-fact {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(15,23,42,.08);
    }
    .destination-profile-fact:last-child {
        border-bottom: 0;
    }
}

/* v27.17 - Perfil público de destino con jerarquía visual y llamadas a la acción reforzadas */
.destination-profile-header {
    position: relative;
    overflow: hidden;
    padding: clamp(2.3rem, 5vw, 5rem) 0 2.1rem;
    background:
        radial-gradient(circle at 85% 12%, color-mix(in srgb, var(--tp-primary, #d71920) 12%, transparent), transparent 32%),
        radial-gradient(circle at 10% 90%, rgba(15,23,42,.05), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.destination-profile-header::before {
    content: "";
    position: absolute;
    inset: auto -8% -26% -8%;
    height: 230px;
    background: linear-gradient(90deg, color-mix(in srgb, var(--tp-primary, #d71920) 12%, transparent), rgba(15,23,42,.04));
    filter: blur(36px);
    pointer-events: none;
}
.destination-profile-header .container {
    position: relative;
    z-index: 1;
}
.destination-profile-copy {
    max-width: 850px;
}
.destination-profile-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--tp-primary, #d71920);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: .55rem;
}
.destination-profile-title {
    font-size: clamp(2.35rem, 5vw, 4.65rem);
    letter-spacing: -.055em;
    max-width: 880px;
    margin-bottom: .95rem;
}
.destination-profile-lead {
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    max-width: 780px;
    margin-bottom: 1rem;
}
.destination-profile-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 1rem 0 1.15rem;
}
.destination-profile-meta-item {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .72rem;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 8px 20px rgba(15,23,42,.045);
    color: #334155;
    font-size: .9rem;
    font-weight: 750;
}
.destination-profile-meta-item i {
    color: var(--tp-primary, #d71920);
}
.destination-hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin: 1.25rem 0;
    max-width: 860px;
}
.destination-hero-highlight {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: .72rem;
    align-items: center;
    min-height: 82px;
    border-radius: 14px;
    padding: .85rem;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.09);
    box-shadow: 0 12px 28px rgba(15,23,42,.06);
}
.destination-hero-highlight > i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--tp-primary, #d71920) 9%, #ffffff);
    color: var(--tp-primary, #d71920);
}
.destination-hero-highlight small,
.destination-decision-card span,
.destination-story-summary span {
    display: block;
    color: #64748b;
    font-size: .7rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .12rem;
}
.destination-hero-highlight strong,
.destination-decision-card strong,
.destination-story-summary strong {
    display: block;
    color: #0f172a;
    font-size: .92rem;
    line-height: 1.28;
    font-weight: 850;
}
.destination-primary-cta {
    display: grid;
    grid-template-columns: minmax(220px, 270px) 1fr;
    gap: 1rem;
    align-items: center;
    max-width: 900px;
    margin-top: 1.1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 16px 44px rgba(15,23,42,.08);
}
.destination-primary-cta-text strong {
    display: block;
    color: #0f172a;
    font-size: 1rem;
}
.destination-primary-cta-text span {
    display: block;
    color: #64748b;
    line-height: 1.45;
    font-size: .9rem;
    margin-top: .18rem;
}
.destination-actions-priority .btn {
    border-radius: 10px;
    min-height: 44px;
    font-weight: 850;
    padding-left: .9rem;
    padding-right: .9rem;
}
.destination-actions-priority .btn-lg {
    min-height: 48px;
}
.destination-visual-panel {
    position: relative;
}
.destination-profile-image-card {
    position: relative;
    border-radius: 22px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 26px 65px rgba(15,23,42,.18);
}
.destination-profile-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 54%, rgba(15,23,42,.68));
    pointer-events: none;
}
.destination-image-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: .65rem;
}
.destination-image-caption span {
    display: inline-flex;
    padding: .38rem .62rem;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.24);
    backdrop-filter: blur(10px);
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.destination-image-caption strong {
    text-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.destination-visual-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .6rem;
    margin-top: .8rem;
}
.destination-visual-actions a {
    text-decoration: none;
    min-height: 82px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    color: #0f172a;
    font-weight: 850;
    box-shadow: 0 10px 28px rgba(15,23,42,.055);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.destination-visual-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15,23,42,.10);
    border-color: color-mix(in srgb, var(--tp-primary, #d71920) 26%, transparent);
}
.destination-visual-actions i {
    color: var(--tp-primary, #d71920);
    font-size: 1.18rem;
}
.destination-profile-facts {
    border-radius: 16px;
}
.destination-profile-fact {
    min-height: 86px;
}
.destination-decision-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}
.destination-decision-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: .75rem;
    align-items: start;
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15,23,42,.055);
}
.destination-decision-card > i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--tp-primary, #d71920), color-mix(in srgb, var(--tp-primary, #d71920) 72%, #0f172a));
    box-shadow: 0 12px 22px color-mix(in srgb, var(--tp-primary, #d71920) 22%, transparent);
}
.destination-anchor-nav {
    position: sticky;
    top: 0;
    z-index: 25;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(15,23,42,.06);
    border-bottom: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 12px 28px rgba(15,23,42,.05);
}
.destination-anchor-nav .container {
    max-width: 1180px;
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding-top: .7rem;
    padding-bottom: .7rem;
    scrollbar-width: thin;
}
.destination-anchor-nav a {
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    padding: .52rem .76rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.08);
    color: #334155;
    font-size: .88rem;
    font-weight: 850;
}
.destination-anchor-nav a:hover {
    color: var(--tp-primary, #d71920);
    border-color: color-mix(in srgb, var(--tp-primary, #d71920) 24%, transparent);
}
.destination-story-card {
    border-top: 0;
    position: relative;
}
.destination-story-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--tp-primary, #d71920), color-mix(in srgb, var(--tp-primary, #d71920) 32%, #facc15));
}
.destination-story-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.15rem;
}
.destination-story-summary > div {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: .65rem;
    align-items: center;
    padding: .88rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.08);
}
.destination-story-summary i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--tp-primary, #d71920);
    background: #fff;
}
.destination-plan-clean {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.destination-plan-item {
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 10px 24px rgba(15,23,42,.045);
}
.travel-check-card,
.destination-note-box,
.route-box,
.destination-promo-card,
.visit-business-card,
.comment-item,
.comment-form {
    border-radius: 14px;
}
.destination-side-summary {
    background:
        radial-gradient(circle at 92% 8%, rgba(250,204,21,.20), transparent 30%),
        linear-gradient(180deg, #111827, #0f172a);
}
.destination-side-summary .btn-danger {
    box-shadow: 0 12px 24px rgba(215,25,32,.24);
}
.destination-index-card a {
    border-radius: 10px;
    padding: .62rem .7rem;
    background: #f8fafc;
    margin-bottom: .38rem;
}
.destination-mobile-cta {
    display: none;
}
@media (min-width: 992px) {
    .destination-anchor-nav { top: 72px; }
}
@media (max-width: 1199.98px) {
    .destination-primary-cta { grid-template-columns: 1fr; }
    .destination-decision-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .destination-hero-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 991.98px) {
    .destination-profile-header { padding-top: 2rem; }
    .destination-profile-title { font-size: clamp(2rem, 9vw, 3.2rem); }
    .destination-visual-panel { margin-top: .5rem; }
    .destination-profile-image-card { aspect-ratio: 16 / 10; }
    .destination-profile-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .destination-story-summary,
    .destination-plan-clean,
    .travel-check-grid { grid-template-columns: 1fr; }
    .destination-anchor-nav { top: 0; }
}
@media (max-width: 767.98px) {
    .destination-profile-meta-row { gap: .45rem; }
    .destination-profile-meta-item { width: 100%; border-radius: 12px; }
    .destination-primary-cta { padding: .85rem; border-radius: 14px; }
    .destination-actions-priority .btn,
    .destination-actions-priority form,
    .destination-actions-priority form .btn { width: 100%; }
    .destination-visual-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .destination-decision-strip { grid-template-columns: 1fr; }
    .destination-profile-facts { grid-template-columns: 1fr; }
    .destination-profile-fact { border-right: 0 !important; }
    .place-detail-page { padding-bottom: 5.8rem !important; }
    .destination-mobile-cta {
        position: fixed;
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
        z-index: 1040;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .45rem;
        padding: .5rem;
        border-radius: 18px;
        background: rgba(15,23,42,.94);
        box-shadow: 0 20px 50px rgba(15,23,42,.34);
        backdrop-filter: blur(12px);
    }
    .destination-mobile-cta a,
    .destination-mobile-cta button {
        border: 0;
        text-decoration: none;
        border-radius: 13px;
        min-height: 54px;
        background: rgba(255,255,255,.08);
        color: #fff;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .15rem;
        font-size: .72rem;
        font-weight: 850;
    }
    .destination-mobile-cta a:first-child {
        background: var(--tp-primary, #d71920);
    }
    .destination-mobile-cta i { font-size: 1.08rem; }
}
@media (max-width: 575.98px) {
    .destination-profile-header { padding-bottom: 1.4rem; }
    .destination-image-caption { align-items: start; flex-direction: column; }
    .destination-anchor-nav .container { padding-left: .8rem; padding-right: .8rem; }
    .destination-hero-highlight,
    .destination-decision-card,
    .destination-story-summary > div { grid-template-columns: 34px 1fr; }
}

/* v27.18 - perfil de destino con diseño más limpio y moderno */
.destination-profile-header.destination-profile-clean {
    padding: clamp(2rem, 4vw, 4rem) 0 2rem;
    background: #ffffff;
}
.destination-profile-clean::before {
    display: none;
}
.destination-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.destination-profile-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem .82rem;
    border-radius: 999px;
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid rgba(15,23,42,.09);
    box-shadow: none;
    font-size: .78rem;
    font-weight: 800;
}
.destination-profile-copy {
    max-width: 760px;
}
.destination-profile-kicker {
    color: #475569;
    letter-spacing: .12em;
}
.destination-profile-title {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    line-height: 1.02;
    margin-bottom: .8rem;
    color: #0f172a;
}
.destination-profile-lead {
    max-width: 720px;
    color: #64748b !important;
    line-height: 1.65;
}
.destination-profile-meta-row {
    gap: .65rem;
    margin: 1.2rem 0 1.15rem;
}
.destination-profile-meta-item {
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.07);
    box-shadow: none;
    color: #334155;
    padding: .6rem .8rem;
}
.destination-hero-highlights {
    max-width: 100%;
    gap: .8rem;
}
.destination-hero-highlight {
    min-height: 76px;
    border-radius: 18px;
    padding: 1rem;
    background: #fbfdff;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: none;
}
.destination-hero-highlight > i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f1f5f9;
    color: var(--tp-primary, #d71920);
}
.destination-primary-cta {
    grid-template-columns: 1fr;
    gap: .9rem;
    max-width: 100%;
    margin-top: 1.2rem;
    padding: 1.15rem;
    border-radius: 22px;
    background: #fbfdff;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: none;
}
.destination-primary-cta-text strong {
    font-size: 1.02rem;
    font-weight: 900;
}
.destination-primary-cta-text span {
    color: #64748b;
}
.destination-primary-cta-actions {
    display: grid;
    gap: .7rem;
}
.destination-main-actions,
.destination-utility-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}
.destination-main-actions .btn,
.destination-main-actions form .btn,
.destination-utility-actions .btn,
.destination-utility-actions form .btn {
    min-height: 46px;
    border-radius: 12px;
    font-weight: 800;
    padding-left: 1rem;
    padding-right: 1rem;
    box-shadow: none !important;
}
.destination-main-actions .btn-danger {
    background: var(--tp-primary, #d71920);
    border-color: var(--tp-primary, #d71920);
}
.destination-utility-actions .btn,
.destination-utility-actions form .btn {
    background: #ffffff;
}
.destination-visual-panel-clean {
    position: sticky;
    top: 92px;
}
.destination-profile-image-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: none;
    background: #ffffff;
}
.destination-profile-image-card::after {
    background: linear-gradient(180deg, transparent 52%, rgba(15,23,42,.54));
}
.destination-image-caption {
    align-items: end;
}
.destination-image-caption-main {
    display: grid;
    gap: .35rem;
}
.destination-image-caption span {
    background: rgba(255,255,255,.92);
    color: #0f172a;
    border: 0;
    backdrop-filter: blur(8px);
}
.destination-image-caption strong {
    font-size: 1.05rem;
}
.destination-image-rating {
    min-width: 124px;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem .8rem;
    border-radius: 16px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(12px);
}
.destination-image-rating i {
    font-size: 1rem;
    color: #facc15;
}
.destination-image-rating strong,
.destination-image-rating small {
    display: block;
    color: #ffffff;
    line-height: 1.15;
}
.destination-image-rating small {
    opacity: .86;
    font-size: .76rem;
}
.destination-visual-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .55rem;
    margin-top: .85rem;
}
.destination-visual-actions a {
    min-height: 74px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: none;
}
.destination-visual-actions a:hover {
    transform: translateY(-1px);
    box-shadow: none;
    background: #f8fafc;
}
.destination-profile-facts {
    border-radius: 22px;
    border: 1px solid rgba(15,23,42,.08);
    overflow: hidden;
    background: #ffffff;
}
.destination-profile-fact {
    min-height: 94px;
    padding: 1rem;
}
.destination-profile-fact i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}
.destination-decision-strip {
    gap: .8rem;
}
.destination-decision-card {
    border-radius: 18px;
    padding: 1rem;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: none;
    background: #ffffff;
}
.destination-decision-card > i {
    background: #f8fafc;
    color: var(--tp-primary, #d71920);
    box-shadow: none;
}
.destination-anchor-nav {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(15,23,42,.05);
    border-bottom: 1px solid rgba(15,23,42,.08);
    box-shadow: none;
}
.destination-anchor-nav .container {
    gap: .35rem;
}
.destination-anchor-nav a {
    background: transparent;
    border: 0;
    color: #475569;
    border-radius: 12px;
    padding: .58rem .78rem;
}
.destination-anchor-nav a:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: transparent;
}
.place-detail-page {
    background: #f8fafc;
}
.place-detail-page .place-section-card,
.place-detail-page .side-card,
.place-detail-page .comment-form,
.place-detail-page .comment-item,
.place-detail-page .travel-check-card,
.place-detail-page .destination-note-box,
.place-detail-page .route-box,
.place-detail-page .destination-promo-card,
.place-detail-page .visit-business-card {
    border-radius: 22px;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: none;
}
.place-detail-page .place-section-card {
    background: #ffffff;
}
.destination-story-card::before {
    height: 3px;
    background: linear-gradient(90deg, var(--tp-primary, #d71920), rgba(215,25,32,.16));
}
.destination-story-summary > div,
.destination-plan-item,
.destination-climate-box,
.destination-index-card a {
    border-radius: 16px;
    box-shadow: none;
}
.destination-side-summary {
    background: #0f172a;
}
@media (max-width: 1199.98px) {
    .destination-visual-panel-clean {
        position: relative;
        top: auto;
    }
}
@media (max-width: 991.98px) {
    .destination-profile-header.destination-profile-clean {
        padding-top: 1.8rem;
    }
    .destination-visual-panel-clean {
        margin-top: .5rem;
    }
}
@media (max-width: 767.98px) {
    .destination-profile-badges .badge,
    .destination-profile-meta-item,
    .destination-main-actions .btn,
    .destination-main-actions form,
    .destination-main-actions form .btn,
    .destination-utility-actions .btn,
    .destination-utility-actions form,
    .destination-utility-actions form .btn {
        width: 100%;
    }
    .destination-image-caption {
        align-items: start;
        flex-direction: column;
    }
    .destination-image-rating {
        width: 100%;
        justify-content: flex-start;
    }
    .destination-visual-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .destination-profile-facts {
        border-radius: 18px;
    }
    .destination-primary-cta {
        border-radius: 18px;
    }
}
@media (max-width: 575.98px) {
    .destination-profile-title {
        font-size: clamp(1.95rem, 9vw, 2.7rem);
    }
    .destination-hero-highlight,
    .destination-decision-card {
        border-radius: 16px;
    }
}


/* v27.19 - propuesta alternativa: perfil tipo experiencia turística premium */
.destination-profile-header.destination-profile-experience {
    position: relative;
    padding: clamp(2rem, 4.8vw, 4.8rem) 0 2.4rem;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15,23,42,.04) 0%, rgba(255,255,255,1) 42%, rgba(248,250,252,1) 100%);
}
.destination-profile-experience::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 16%, color-mix(in srgb, var(--tp-primary, #d71920) 11%, transparent), transparent 26%),
        radial-gradient(circle at 90% 10%, rgba(250,204,21,.18), transparent 25%);
}
.destination-profile-experience .container {
    position: relative;
    z-index: 1;
}
.destination-profile-experience .destination-profile-badges .badge {
    background: rgba(255,255,255,.78) !important;
    border: 1px solid rgba(15,23,42,.08);
    backdrop-filter: blur(10px);
}
.destination-profile-experience .destination-profile-kicker {
    color: var(--tp-primary, #d71920);
}
.destination-profile-experience .destination-profile-title {
    max-width: 780px;
    font-size: clamp(2.45rem, 5.2vw, 4.7rem);
    letter-spacing: -.06em;
}
.destination-profile-experience .destination-profile-lead {
    max-width: 690px;
    font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}
.destination-profile-experience .destination-profile-meta-row {
    margin-top: 1.35rem;
}
.destination-profile-experience .destination-profile-meta-item {
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(15,23,42,.08);
    backdrop-filter: blur(10px);
}
.destination-profile-experience .destination-hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.35rem;
}
.destination-profile-experience .destination-hero-highlight {
    min-height: 90px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}
.destination-profile-experience .destination-hero-highlight > i {
    background: color-mix(in srgb, var(--tp-primary, #d71920) 12%, #ffffff);
}
.destination-profile-experience .destination-primary-cta {
    position: relative;
    overflow: hidden;
    margin-top: 1.35rem;
    background: #0f172a;
    color: #ffffff;
    border: 0;
    border-radius: 28px;
    padding: 1.25rem;
}
.destination-profile-experience .destination-primary-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(255,255,255,.14), transparent 30%),
        radial-gradient(circle at 95% 90%, color-mix(in srgb, var(--tp-primary, #d71920) 30%, transparent), transparent 34%);
    pointer-events: none;
}
.destination-profile-experience .destination-primary-cta > * {
    position: relative;
    z-index: 1;
}
.destination-profile-experience .destination-primary-cta-text strong {
    color: #ffffff;
    font-size: 1.08rem;
}
.destination-profile-experience .destination-primary-cta-text span {
    color: rgba(255,255,255,.72);
}
.destination-profile-experience .destination-main-actions .btn,
.destination-profile-experience .destination-main-actions form .btn,
.destination-profile-experience .destination-utility-actions .btn,
.destination-profile-experience .destination-utility-actions form .btn {
    border-radius: 999px;
}
.destination-profile-experience .destination-main-actions .btn-outline-success,
.destination-profile-experience .destination-main-actions .btn-outline-dark,
.destination-profile-experience .destination-utility-actions .btn-outline-secondary {
    color: #ffffff;
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
}
.destination-profile-experience .destination-main-actions .btn-outline-success:hover,
.destination-profile-experience .destination-main-actions .btn-outline-dark:hover,
.destination-profile-experience .destination-utility-actions .btn-outline-secondary:hover {
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.42);
}
.destination-profile-experience .destination-visual-panel-clean {
    top: 90px;
}
.destination-profile-experience .destination-profile-image-card {
    aspect-ratio: 4 / 4.25;
    border-radius: 34px;
    border: 10px solid #ffffff;
    box-shadow: 0 24px 60px rgba(15,23,42,.16);
}
.destination-profile-experience .destination-profile-image-card::after {
    background: linear-gradient(180deg, transparent 46%, rgba(15,23,42,.78));
}
.destination-profile-experience .destination-image-caption {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
}
.destination-profile-experience .destination-image-caption span {
    background: rgba(255,255,255,.95);
    color: #0f172a;
}
.destination-profile-experience .destination-image-caption strong {
    font-size: 1.18rem;
}
.destination-profile-experience .destination-image-rating {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.25);
}
.destination-profile-experience .destination-visual-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
}
.destination-profile-experience .destination-visual-actions a {
    min-height: 78px;
    align-items: flex-start;
    padding: .9rem;
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
}
.destination-profile-experience .destination-visual-actions a i {
    font-size: 1.25rem;
}
.destination-profile-experience .destination-profile-facts {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    margin-top: 2rem !important;
    border: 0;
    border-radius: 28px;
    box-shadow: 0 16px 46px rgba(15,23,42,.08);
}
.destination-profile-experience .destination-profile-fact {
    background: #ffffff;
    border-right: 1px solid rgba(15,23,42,.07);
}
.destination-profile-experience .destination-profile-fact:first-child {
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
}
.destination-profile-experience .destination-profile-fact:last-child {
    border-right: 0;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
}
.destination-profile-experience .destination-decision-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1rem !important;
}
.destination-profile-experience .destination-decision-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(180deg, #ffffff, #fbfdff);
}
.destination-profile-experience .destination-decision-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: color-mix(in srgb, var(--tp-primary, #d71920) 65%, transparent);
}
.destination-profile-experience + .destination-anchor-nav {
    background: #ffffff;
    border-top: 0;
}
.destination-profile-experience + .destination-anchor-nav a {
    border-radius: 999px;
}
.place-detail-page .destination-story-card,
.place-detail-page #planifica,
.place-detail-page .traveler-guide-card,
.place-detail-page #servicios-cercanos,
.place-detail-page #como-llegar,
.place-detail-page #galeria-destino,
.place-detail-page #comentarios {
    border-radius: 28px;
}
.place-detail-page .destination-story-card h2,
.place-detail-page #planifica h2,
.place-detail-page .traveler-guide-card h2 {
    letter-spacing: -.03em;
}
@media (max-width: 1199.98px) {
    .destination-profile-experience .destination-hero-highlights,
    .destination-profile-experience .destination-profile-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .destination-profile-experience .destination-profile-fact:nth-child(3n) {
        border-right: 0;
    }
    .destination-profile-experience .destination-profile-fact,
    .destination-profile-experience .destination-profile-fact:first-child,
    .destination-profile-experience .destination-profile-fact:last-child {
        border-radius: 0;
    }
    .destination-profile-experience .destination-visual-panel-clean {
        position: relative;
        top: auto;
    }
}
@media (max-width: 991.98px) {
    .destination-profile-experience .destination-profile-image-card {
        aspect-ratio: 16 / 10;
        border-width: 6px;
        border-radius: 28px;
    }
    .destination-profile-experience .destination-decision-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767.98px) {
    .destination-profile-experience .destination-hero-highlights,
    .destination-profile-experience .destination-profile-facts,
    .destination-profile-experience .destination-decision-strip {
        grid-template-columns: 1fr;
    }
    .destination-profile-experience .destination-primary-cta {
        border-radius: 24px;
    }
    .destination-profile-experience .destination-profile-image-card {
        aspect-ratio: 4 / 3.2;
        border-width: 5px;
    }
    .destination-profile-experience .destination-visual-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* v27.20 - corrección de orden visual del perfil público del destino */
.destination-profile-header.destination-profile-organized {
    padding: clamp(2rem, 4vw, 4.2rem) 0 0;
    background: #ffffff;
    overflow: visible;
}
.destination-profile-organized::before,
.destination-profile-organized::after {
    display: none !important;
}
.destination-profile-organized .container {
    position: relative;
    z-index: 1;
}
.destination-organized-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}
.destination-organized-content {
    min-width: 0;
}
.destination-profile-organized .destination-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.destination-profile-organized .destination-profile-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .75rem;
    border-radius: 999px;
    background: #f8fafc !important;
    color: #0f172a !important;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: none;
    font-size: .75rem;
    font-weight: 800;
}
.destination-profile-organized .destination-profile-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .75rem;
    color: var(--tp-primary, #d71920);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.destination-profile-organized .destination-profile-title {
    max-width: 760px;
    margin: 0 0 .9rem;
    color: #0f172a;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -.06em;
}
.destination-profile-organized .destination-profile-lead {
    max-width: 690px;
    margin: 0;
    color: #64748b;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.65;
}
.destination-organized-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.35rem;
}
.destination-organized-meta span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .56rem .78rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.08);
    color: #334155;
    font-size: .88rem;
    font-weight: 750;
}
.destination-organized-meta i {
    color: var(--tp-primary, #d71920);
}
.destination-organized-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.5rem;
}
.destination-organized-actions .btn {
    min-height: 48px;
    border-radius: 999px;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    font-weight: 850;
    box-shadow: none !important;
}
.destination-organized-actions .btn-danger {
    background: var(--tp-primary, #d71920);
    border-color: var(--tp-primary, #d71920);
}
.destination-organized-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: .15rem .85rem;
    margin-top: .65rem;
}
.destination-organized-secondary .btn-link {
    padding: .35rem 0;
    color: #475569;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 800;
}
.destination-organized-secondary .btn-link:hover {
    color: var(--tp-primary, #d71920);
}
.destination-organized-media {
    position: relative;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid rgba(15,23,42,.08);
}
.destination-organized-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}
.destination-organized-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,.68));
    pointer-events: none;
}
.destination-organized-media-caption {
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 2;
    color: #ffffff;
}
.destination-organized-media-caption span {
    display: inline-flex;
    margin-bottom: .55rem;
    padding: .36rem .68rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #0f172a;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.destination-organized-media-caption strong {
    display: block;
    font-size: 1.18rem;
    line-height: 1.2;
}
.destination-organized-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(1.5rem, 3vw, 2.3rem);
    border-top: 1px solid rgba(15,23,42,.08);
    border-bottom: 1px solid rgba(15,23,42,.08);
    background: #ffffff;
}
.destination-organized-summary div {
    min-height: 96px;
    padding: 1.1rem 1rem;
    border-right: 1px solid rgba(15,23,42,.08);
}
.destination-organized-summary div:last-child {
    border-right: 0;
}
.destination-organized-summary small {
    display: block;
    margin-bottom: .35rem;
    color: #64748b;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.destination-organized-summary strong {
    display: block;
    color: #0f172a;
    font-size: .98rem;
    line-height: 1.35;
    font-weight: 900;
}
.destination-profile-organized + .destination-anchor-nav {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-top: 0;
    box-shadow: none;
}
.destination-profile-organized + .destination-anchor-nav .container {
    justify-content: flex-start;
    gap: .35rem;
}
.destination-profile-organized + .destination-anchor-nav a {
    background: transparent;
    border: 0;
    color: #475569;
    border-radius: 999px;
}
.destination-profile-organized + .destination-anchor-nav a:hover {
    background: #f8fafc;
    color: #0f172a;
}
.place-detail-page {
    background: #f8fafc;
}
.place-detail-page .place-section-card,
.place-detail-page .side-card,
.place-detail-page .comment-form,
.place-detail-page .comment-item,
.place-detail-page .travel-check-card,
.place-detail-page .destination-note-box,
.place-detail-page .route-box,
.place-detail-page .destination-promo-card,
.place-detail-page .visit-business-card {
    box-shadow: none !important;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 22px;
}
.place-detail-page .place-section-card {
    background: #ffffff;
}
.place-detail-page .destination-story-card::before {
    height: 0;
}
@media (max-width: 1199.98px) {
    .destination-organized-hero {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    .destination-organized-media,
    .destination-organized-media img {
        min-height: 380px;
    }
}
@media (max-width: 991.98px) {
    .destination-profile-header.destination-profile-organized {
        padding-top: 1.6rem;
    }
    .destination-organized-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .destination-organized-summary div:nth-child(2n) {
        border-right: 0;
    }
    .destination-organized-summary div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(15,23,42,.08);
    }
}
@media (max-width: 767.98px) {
    .destination-profile-organized .destination-profile-badges .badge,
    .destination-organized-meta span,
    .destination-organized-actions .btn,
    .destination-organized-actions form,
    .destination-organized-actions form .btn {
        width: 100%;
    }
    .destination-organized-media {
        border-radius: 22px;
    }
    .destination-organized-media,
    .destination-organized-media img {
        min-height: 320px;
    }
    .destination-organized-summary {
        grid-template-columns: 1fr;
    }
    .destination-organized-summary div,
    .destination-organized-summary div:nth-child(2n) {
        border-right: 0;
        border-bottom: 1px solid rgba(15,23,42,.08);
    }
    .destination-organized-summary div:last-child {
        border-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .destination-profile-organized .destination-profile-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }
    .destination-profile-organized .destination-profile-lead {
        line-height: 1.55;
    }
}


/* v27.21 - nuevo hero tipo portada turística limpia */
.destination-profile-header.destination-profile-cover {
    padding: clamp(1.25rem, 3vw, 2.5rem) 0 0;
    background: #ffffff;
    overflow: visible;
}
.destination-profile-cover::before,
.destination-profile-cover::after {
    display: none !important;
}
.destination-cover-card {
    position: relative;
    min-height: clamp(520px, 62vh, 680px);
    overflow: hidden;
    border-radius: 32px;
    background-image: var(--destination-cover-image);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(15,23,42,.08);
}
.destination-cover-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.70) 38%, rgba(15,23,42,.20) 72%, rgba(15,23,42,.12) 100%),
        linear-gradient(180deg, rgba(15,23,42,.18) 0%, rgba(15,23,42,.46) 100%);
    pointer-events: none;
}
.destination-cover-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    padding: clamp(2rem, 5vw, 4.5rem);
    color: #ffffff;
}
.destination-profile-cover .destination-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.destination-profile-cover .destination-profile-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .52rem .78rem;
    border-radius: 999px;
    background: rgba(255,255,255,.16) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(12px);
    font-size: .75rem;
    font-weight: 850;
}
.destination-profile-cover .destination-profile-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .85rem;
    color: rgba(255,255,255,.82);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.destination-profile-cover .destination-profile-title {
    max-width: 720px;
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: clamp(2.45rem, 5.4vw, 4.9rem);
    line-height: .98;
    letter-spacing: -.06em;
}
.destination-profile-cover .destination-profile-lead {
    max-width: 690px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: clamp(1rem, 1.55vw, 1.18rem);
    line-height: 1.65;
}
.destination-cover-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.4rem;
}
.destination-cover-meta span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .58rem .78rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.92);
    font-size: .88rem;
    font-weight: 750;
    backdrop-filter: blur(10px);
}
.destination-cover-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.7rem;
}
.destination-cover-actions .btn {
    min-height: 50px;
    border-radius: 999px;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    font-weight: 900;
    box-shadow: none !important;
}
.destination-cover-actions .btn-light {
    color: #0f172a;
    background: #ffffff;
    border-color: #ffffff;
}
.destination-cover-actions .btn-outline-light {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.32);
    color: #ffffff;
}
.destination-cover-actions .btn-outline-light:hover {
    background: rgba(255,255,255,.18);
    color: #ffffff;
}
.destination-cover-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem .95rem;
    margin-top: .75rem;
}
.destination-cover-secondary .btn-link {
    padding: .35rem 0;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 800;
}
.destination-cover-secondary .btn-link:hover {
    color: #ffffff;
}
.destination-cover-summary {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: calc(100% - 3rem);
    margin: -42px auto 0;
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 18px 50px rgba(15,23,42,.10);
}
.destination-cover-summary div {
    min-height: 94px;
    padding: 1.05rem 1rem;
    border-right: 1px solid rgba(15,23,42,.08);
}
.destination-cover-summary div:last-child {
    border-right: 0;
}
.destination-cover-summary small {
    display: block;
    margin-bottom: .35rem;
    color: #64748b;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.destination-cover-summary strong {
    display: block;
    color: #0f172a;
    font-size: .98rem;
    line-height: 1.35;
    font-weight: 900;
}
.destination-profile-cover + .destination-anchor-nav {
    margin-top: 1.25rem;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(15,23,42,.06);
    box-shadow: none;
}
.destination-profile-cover + .destination-anchor-nav a {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: #475569;
}
.destination-profile-cover + .destination-anchor-nav a:hover {
    background: #f8fafc;
    color: #0f172a;
}
@media (max-width: 991.98px) {
    .destination-cover-card {
        min-height: 560px;
        border-radius: 26px;
    }
    .destination-cover-overlay {
        background:
            linear-gradient(180deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.58) 48%, rgba(15,23,42,.82) 100%);
    }
    .destination-cover-content {
        padding: 2rem;
    }
    .destination-cover-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: calc(100% - 1.5rem);
    }
    .destination-cover-summary div:nth-child(2n) {
        border-right: 0;
    }
    .destination-cover-summary div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(15,23,42,.08);
    }
}
@media (max-width: 767.98px) {
    .destination-profile-header.destination-profile-cover {
        padding-top: .8rem;
    }
    .destination-cover-card {
        min-height: 620px;
        border-radius: 22px;
    }
    .destination-profile-cover .destination-profile-badges .badge,
    .destination-cover-meta span,
    .destination-cover-actions .btn,
    .destination-cover-actions form,
    .destination-cover-actions form .btn {
        width: 100%;
    }
    .destination-cover-summary {
        grid-template-columns: 1fr;
        margin-top: .9rem;
        width: 100%;
        border-radius: 18px;
        box-shadow: none;
    }
    .destination-cover-summary div,
    .destination-cover-summary div:nth-child(2n) {
        border-right: 0;
        border-bottom: 1px solid rgba(15,23,42,.08);
    }
    .destination-cover-summary div:last-child {
        border-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .destination-cover-content {
        padding: 1.35rem;
    }
    .destination-profile-cover .destination-profile-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }
    .destination-profile-cover .destination-profile-lead {
        line-height: 1.55;
    }
}


/* v27.22 - hero compacto y proporcional para perfil público de destino */
.destination-profile-header.destination-profile-cover {
    padding: 1.25rem 0 0;
}

.destination-cover-card {
    min-height: clamp(390px, 48vh, 470px);
    border-radius: 26px;
}

.destination-cover-content {
    width: min(680px, 100%);
    padding: clamp(1.75rem, 3.8vw, 3.2rem);
}

.destination-profile-cover .destination-profile-badges {
    margin-bottom: .75rem !important;
}

.destination-profile-cover .destination-profile-badges .badge {
    padding: .44rem .68rem;
    font-size: .72rem;
}

.destination-profile-cover .destination-profile-kicker {
    margin-bottom: .55rem;
    font-size: .7rem;
}

.destination-profile-cover .destination-profile-title {
    max-width: 660px;
    margin-bottom: .75rem;
    font-size: clamp(2.05rem, 4.2vw, 3.65rem);
    line-height: 1.02;
}

.destination-profile-cover .destination-profile-lead {
    max-width: 610px;
    font-size: clamp(.95rem, 1.25vw, 1.05rem);
    line-height: 1.55;
}

.destination-cover-meta {
    gap: .5rem;
    margin-top: 1rem;
}

.destination-cover-meta span {
    padding: .46rem .66rem;
    font-size: .8rem;
}

.destination-cover-actions {
    gap: .55rem;
    margin-top: 1.2rem;
}

.destination-cover-actions .btn {
    min-height: 42px;
    padding-left: .95rem;
    padding-right: .95rem;
    font-size: .9rem;
}

.destination-cover-secondary {
    margin-top: .45rem;
    gap: .15rem .8rem;
}

.destination-cover-secondary .btn-link {
    font-size: .82rem;
}

.destination-cover-summary {
    width: calc(100% - 4rem);
    margin: -28px auto 0;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(15,23,42,.08);
}

.destination-cover-summary div {
    min-height: 76px;
    padding: .85rem .95rem;
}

.destination-cover-summary small {
    margin-bottom: .25rem;
    font-size: .66rem;
}

.destination-cover-summary strong {
    font-size: .9rem;
    line-height: 1.28;
}

.destination-profile-cover + .destination-anchor-nav {
    margin-top: .95rem;
}

.destination-profile-cover + .destination-anchor-nav .container {
    padding-top: .55rem;
    padding-bottom: .55rem;
}

.destination-profile-cover + .destination-anchor-nav a {
    padding: .46rem .68rem;
    font-size: .82rem;
}

@media (max-width: 1199.98px) {
    .destination-cover-card {
        min-height: 430px;
    }
}

@media (max-width: 991.98px) {
    .destination-cover-card {
        min-height: 440px;
        border-radius: 22px;
    }

    .destination-cover-content {
        padding: 1.8rem;
    }

    .destination-cover-summary {
        width: calc(100% - 1.5rem);
        margin-top: -20px;
    }
}

@media (max-width: 767.98px) {
    .destination-profile-header.destination-profile-cover {
        padding-top: .75rem;
    }

    .destination-cover-card {
        min-height: auto;
        border-radius: 20px;
    }

    .destination-cover-content {
        padding: 1.25rem;
    }

    .destination-profile-cover .destination-profile-title {
        font-size: clamp(1.85rem, 9vw, 2.65rem);
    }

    .destination-profile-cover .destination-profile-lead {
        font-size: .92rem;
    }

    .destination-cover-actions {
        margin-top: 1rem;
    }

    .destination-cover-actions .btn,
    .destination-cover-actions form,
    .destination-cover-actions form .btn {
        min-height: 42px;
    }

    .destination-cover-summary {
        width: 100%;
        margin-top: .75rem;
        border-radius: 16px;
    }

    .destination-cover-summary div {
        min-height: 68px;
    }
}


/* v27.23 - limpieza de información repetida y hero minimal */
.destination-profile-header.destination-profile-minimal {
    padding: 1.2rem 0 1.15rem;
    background: #ffffff;
}

.destination-profile-minimal .destination-cover-card {
    min-height: clamp(360px, 42vh, 430px);
    border-radius: 24px;
}

.destination-profile-minimal .destination-cover-content {
    width: min(650px, 100%);
    padding: clamp(1.65rem, 3.4vw, 3rem);
}

.destination-profile-minimal .destination-cover-overlay {
    background:
        linear-gradient(90deg, rgba(15,23,42,.86) 0%, rgba(15,23,42,.66) 42%, rgba(15,23,42,.18) 78%, rgba(15,23,42,.10) 100%),
        linear-gradient(180deg, rgba(15,23,42,.14) 0%, rgba(15,23,42,.36) 100%);
}

.destination-profile-minimal .destination-profile-badges {
    margin-bottom: .65rem !important;
}

.destination-profile-minimal .destination-profile-badges .badge {
    padding: .42rem .66rem;
    font-size: .7rem;
    background: rgba(255,255,255,.14) !important;
}

.destination-profile-minimal .destination-profile-kicker {
    margin-bottom: .52rem;
    font-size: .68rem;
}

.destination-profile-minimal .destination-profile-title {
    max-width: 620px;
    margin-bottom: .7rem;
    font-size: clamp(2rem, 3.9vw, 3.35rem);
    line-height: 1.03;
}

.destination-profile-minimal .destination-profile-lead {
    max-width: 600px;
    font-size: clamp(.92rem, 1.18vw, 1.02rem);
    line-height: 1.55;
}

.destination-cover-meta-clean {
    margin-top: .95rem;
}

.destination-cover-meta-clean span {
    padding: .46rem .66rem;
    font-size: .8rem;
}

.destination-cover-actions-clean {
    margin-top: 1.15rem;
}

.destination-cover-actions-clean .btn {
    min-height: 42px;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .9rem;
}

.destination-cover-secondary-clean {
    margin-top: .45rem;
}

.destination-cover-secondary-clean .btn-link {
    font-size: .82rem;
}

.destination-profile-minimal + .destination-anchor-nav {
    margin-top: 0;
    background: #ffffff;
    border-top: 1px solid rgba(15,23,42,.06);
    border-bottom: 1px solid rgba(15,23,42,.08);
    box-shadow: none;
}

.destination-profile-minimal + .destination-anchor-nav .container {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.destination-profile-minimal + .destination-anchor-nav a {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: #475569;
    padding: .45rem .66rem;
    font-size: .82rem;
}

.destination-profile-minimal + .destination-anchor-nav a:hover {
    background: #f8fafc;
    color: #0f172a;
}

/* Se oculta cualquier franja de resumen del hero anterior para evitar duplicidad de datos prácticos. */
.destination-cover-summary {
    display: none !important;
}

/* La información práctica queda concentrada en Planifica tu visita. */
#planifica {
    scroll-margin-top: 110px;
}

@media (max-width: 991.98px) {
    .destination-profile-minimal .destination-cover-card {
        min-height: 420px;
        border-radius: 22px;
    }

    .destination-profile-minimal .destination-cover-overlay {
        background:
            linear-gradient(180deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.58) 45%, rgba(15,23,42,.84) 100%);
    }

    .destination-profile-minimal .destination-cover-content {
        padding: 1.7rem;
    }
}

@media (max-width: 767.98px) {
    .destination-profile-header.destination-profile-minimal {
        padding-top: .75rem;
        padding-bottom: .85rem;
    }

    .destination-profile-minimal .destination-cover-card {
        min-height: auto;
        border-radius: 20px;
    }

    .destination-profile-minimal .destination-cover-content {
        padding: 1.25rem;
    }

    .destination-profile-minimal .destination-profile-badges .badge,
    .destination-cover-meta-clean span,
    .destination-cover-actions-clean .btn,
    .destination-cover-actions-clean form,
    .destination-cover-actions-clean form .btn {
        width: 100%;
    }

    .destination-profile-minimal .destination-profile-title {
        font-size: clamp(1.8rem, 8.8vw, 2.55rem);
    }

    .destination-profile-minimal .destination-profile-lead {
        font-size: .9rem;
    }
}


/* v27.24 - negocios relacionados antes del resumen del destino */
#servicios-cercanos {
    scroll-margin-top: 110px;
}

#servicios-cercanos .section-eyebrow {
    color: var(--tp-primary, #d71920);
}

#servicios-cercanos h2 {
    letter-spacing: -.03em;
}

#servicios-cercanos .visit-tabs {
    border-bottom: 1px solid rgba(15,23,42,.08);
    padding-bottom: .75rem;
}

#servicios-cercanos .visit-tabs .nav-link {
    border-radius: 999px;
    font-weight: 850;
}

#servicios-cercanos .visit-business-grid {
    margin-top: .5rem;
}

#servicios-cercanos .visit-business-card {
    background: #ffffff;
}

@media (max-width: 767.98px) {
    #servicios-cercanos .visit-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: .6rem;
    }

    #servicios-cercanos .visit-tabs .nav-link {
        white-space: nowrap;
    }
}


/* v27.25 - lateral del destino con promociones y servicios cercanos */
.destination-side-promotions h3,
.destination-side-nearby-services h3 {
    font-size: 1.35rem;
    line-height: 1.2;
}
.destination-side-promotions .badge,
.destination-side-nearby-services .badge {
    font-size: .72rem;
    font-weight: 800;
}
.destination-sidebar-services-list {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.destination-sidebar-service-row {
    display: flex;
    align-items: stretch;
    gap: .7rem;
    padding: .55rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.destination-sidebar-service-row:hover {
    transform: translateY(-1px);
    border-color: rgba(13, 110, 253, .22) !important;
    box-shadow: 0 .65rem 1.25rem rgba(15, 23, 42, .08) !important;
}
.destination-sidebar-service-thumb {
    width: 82px;
    min-width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: .85rem;
    display: block;
    background: #f3f4f6;
}
.destination-sidebar-service-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tp-primary, #0d6efd);
    font-size: 1.35rem;
}
.destination-sidebar-service-content {
    flex: 1;
    min-width: 0;
}
.destination-sidebar-service-title {
    font-size: .9rem;
    line-height: 1.2;
    color: #111827;
}
.destination-sidebar-service-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.28;
}
.destination-sidebar-service-distance {
    font-size: .72rem;
    white-space: nowrap;
}
.destination-sidebar-service-btn {
    padding: .22rem .55rem;
    font-size: .75rem;
    white-space: nowrap;
}
@media (max-width: 575.98px) {
    .destination-sidebar-service-row {
        gap: .6rem;
        padding: .5rem;
    }
    .destination-sidebar-service-thumb {
        width: 72px;
        min-width: 72px;
        height: 72px;
    }
    .destination-sidebar-service-distance,
    .destination-sidebar-service-btn {
        font-size: .68rem;
    }
}


/* v27.27 - limpieza definitiva de bloque principal repetido */
.destination-side-nearby-services {
    scroll-margin-top: 110px;
}

#planifica {
    scroll-margin-top: 110px;
}

.place-detail-page .col-lg-8 > .place-section-card:first-child {
    margin-top: 0;
}


/* v27.28 - sección limpia de información del destino turístico */
.destination-about-clean {
    scroll-margin-top: 110px;
}

.destination-about-head h2 {
    letter-spacing: -.03em;
}

.destination-about-head .lead-text {
    color: #334155;
    line-height: 1.8;
}

.destination-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.destination-about-box {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: .85rem;
    padding: 1rem;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.08);
}

.destination-about-box > span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tp-primary, #d71920);
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.08);
}

.destination-about-box h3 {
    margin-bottom: .35rem;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 900;
}

.destination-about-box p {
    margin-bottom: 0;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 575.98px) {
    .destination-about-box {
        grid-template-columns: 1fr;
    }
}


/* v27.29 - Cómo llegar antes de Planifica tu visita */
#como-llegar {
    scroll-margin-top: 110px;
}

#planifica {
    scroll-margin-top: 110px;
}

/* Se refuerza el orden natural de lectura: primero ruta, luego planificación. */
#como-llegar + #planifica {
    margin-top: 1.5rem;
}


/* v27.30 - datos de ruta en 2 columnas y 2 filas */
#como-llegar .route-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

#como-llegar .route-box {
    min-height: 108px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#como-llegar .route-box span {
    margin-bottom: .35rem;
    line-height: 1.2;
}

#como-llegar .route-box strong {
    line-height: 1.35;
}

@media (max-width: 575.98px) {
    #como-llegar .route-detail-grid {
        grid-template-columns: 1fr;
    }

    #como-llegar .route-box {
        min-height: auto;
    }
}


/* v27.31 - tarjetas informativas limpias tipo ficha simple */
.destination-info-card-grid {
    display: grid;
    gap: 1rem;
}

#como-llegar .destination-info-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

#planifica .destination-info-card-grid,
.destination-plan-clean.destination-info-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.destination-info-card,
#como-llegar .route-box.destination-info-card,
#planifica .destination-plan-item.destination-info-card {
    min-height: 96px;
    padding: 1.15rem 1.25rem;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .14);
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .35rem;
}

.destination-info-card span,
.destination-info-card small,
#como-llegar .route-box.destination-info-card span,
#planifica .destination-plan-item.destination-info-card span {
    display: block;
    margin: 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
}

.destination-info-card strong,
#como-llegar .route-box.destination-info-card strong,
#planifica .destination-plan-item.destination-info-card strong {
    display: block;
    color: #0f172a;
    font-size: .98rem;
    font-weight: 500;
    line-height: 1.45;
}

#planifica .destination-plan-item.destination-info-card .destination-plan-icon,
#planifica .destination-plan-icon {
    display: none !important;
}

/* Se suaviza la caja de ruta recomendada para que combine con las tarjetas limpias. */
#como-llegar .route-recommendation {
    margin-top: 1rem;
    border-radius: 16px;
    background: #fffdf6;
    border: 1px solid rgba(15, 23, 42, .12);
    color: #334155;
}

@media (max-width: 767.98px) {
    #como-llegar .destination-info-card-grid,
    #planifica .destination-info-card-grid,
    .destination-plan-clean.destination-info-card-grid {
        grid-template-columns: 1fr;
    }

    .destination-info-card,
    #como-llegar .route-box.destination-info-card,
    #planifica .destination-plan-item.destination-info-card {
        min-height: auto;
        padding: 1rem;
    }
}


/* v27.32 - justificación de textos largos del perfil del destino */
.destination-about-clean .lead-text,
.destination-about-box p,
#como-llegar .lead-text,
#como-llegar .route-recommendation,
#planifica > p,
#planifica .text-muted,
.traveler-guide-card p,
.destination-note-box p,
.destination-note-box li {
    text-align: justify;
    text-justify: inter-word;
}

.destination-about-clean .lead-text,
.destination-about-box p {
    line-height: 1.8;
}

#como-llegar .lead-text,
#planifica .text-muted {
    line-height: 1.75;
}

@media (max-width: 767.98px) {
    .destination-about-clean .lead-text,
    .destination-about-box p,
    #como-llegar .lead-text,
    #como-llegar .route-recommendation,
    #planifica > p,
    #planifica .text-muted,
    .traveler-guide-card p,
    .destination-note-box p,
    .destination-note-box li {
        text-align: left;
    }
}


/* v27.33 - ancho ampliado del perfil público de destino */
.destination-profile-cover > .container,
.destination-anchor-nav > .container,
.place-detail-page > .container {
    max-width: 1320px;
}

.destination-profile-cover .destination-cover-card {
    width: 100%;
}

.place-detail-page .row.g-4 {
    --bs-gutter-x: 1.75rem;
}

@media (min-width: 1200px) {
    .place-detail-page .col-lg-8 {
        width: 68%;
    }

    .place-detail-page .col-lg-4 {
        width: 32%;
    }
}

@media (min-width: 1400px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 1360px;
    }
}

@media (max-width: 991.98px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 100%;
    }

    .place-detail-page .row.g-4 {
        --bs-gutter-x: 1rem;
    }
}


/* v27.34 - destino alineado a medida, colores y estructura de servicio turístico */
.destination-profile-cover > .container,
.destination-anchor-nav > .container,
.place-detail-page > .container {
    max-width: 1140px;
}

@media (min-width: 1400px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 1140px;
    }
}

/* Estructura más parecida al detalle de servicios turísticos */
.place-detail-page {
    background: #f5f7f9;
}

.place-detail-page .row.g-4 {
    --bs-gutter-x: 2rem;
}

@media (min-width: 992px) {
    .place-detail-page .col-lg-8 {
        width: 66.66666667%;
    }

    .place-detail-page .col-lg-4 {
        width: 33.33333333%;
    }
}

/* Tarjetas con apariencia homogénea al servicio turístico */
.place-detail-page .place-section-card,
.place-detail-page .side-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 1rem;
    box-shadow: 0 .125rem .25rem rgba(15, 23, 42, .04) !important;
}

.place-detail-page .place-section-card {
    padding: 1.5rem;
}

.place-detail-page .side-card {
    padding: 1.5rem;
}

/* Títulos y subtítulos con jerarquía más uniforme */
.place-detail-page h2,
.place-detail-page .side-card h3 {
    color: #111827;
    font-weight: 800;
}

.place-detail-page .section-eyebrow,
.place-detail-page .side-kicker {
    color: #00857a;
    font-weight: 900;
    letter-spacing: .12em;
}

/* Botones y bordes con colores consistentes */
.place-detail-page .btn-success,
.destination-cover-actions .btn-success {
    background: #00856f;
    border-color: #00856f;
}

.place-detail-page .btn-outline-success,
.destination-cover-actions .btn-outline-success {
    color: #00856f;
    border-color: #00856f;
}

.place-detail-page .btn-outline-success:hover,
.destination-cover-actions .btn-outline-success:hover {
    background: #00856f;
    border-color: #00856f;
    color: #ffffff;
}

/* Lateral similar a ficha de servicio */
.sticky-place-sidebar {
    top: 96px;
}

.destination-side-promotions,
.destination-side-nearby-services,
.visit-validation-side-card,
.destination-index-card {
    border-radius: 1rem;
}

.destination-side-promotions h3,
.destination-side-nearby-services h3,
.visit-validation-side-card h3,
.destination-index-card h3 {
    font-size: 1.25rem;
}

/* Promociones y servicios laterales mantienen estructura compacta del servicio turístico */
.business-sidebar-promo-row,
.destination-sidebar-service-row {
    border-radius: .9rem !important;
    box-shadow: 0 .125rem .25rem rgba(15, 23, 42, .05) !important;
}

.business-sidebar-promo-thumb,
.destination-sidebar-service-thumb {
    border-radius: .75rem;
}

.destination-sidebar-service-btn,
.business-sidebar-promo-btn {
    border-radius: .45rem;
}

/* Hero mantiene la portada, pero dentro de la misma medida del servicio */
.destination-profile-cover {
    background: #ffffff;
}

.destination-profile-cover .destination-cover-card {
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, .10);
}

.destination-profile-cover + .destination-anchor-nav {
    border-top: 1px solid rgba(15,23,42,.08);
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.destination-anchor-nav .container {
    justify-content: flex-start;
}

/* Tarjetas informativas con misma línea visual */
.destination-info-card,
#como-llegar .route-box.destination-info-card,
#planifica .destination-plan-item.destination-info-card {
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #ffffff;
}

/* Mantener el responsive natural */
@media (max-width: 991.98px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 100%;
    }

    .place-detail-page .place-section-card,
    .place-detail-page .side-card {
        padding: 1.25rem;
    }
}


/* v27.35 - ajuste exacto del espacio lateral externo del perfil de destino */
/*
   Se amplía nuevamente el contenedor del perfil de destino para que el espacio
   lateral izquierdo/derecho se parezca al usado en la ficha pública de servicios turísticos.
   La versión anterior quedó demasiado centrada y con márgenes externos amplios.
*/
@media (min-width: 1200px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 1320px;
    }
}

@media (min-width: 1400px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 1440px;
    }
}

/* Mantener la estructura visual tipo servicio turístico, pero usando todo el ancho disponible. */
@media (min-width: 992px) {
    .place-detail-page .col-lg-8 {
        width: 67%;
    }

    .place-detail-page .col-lg-4 {
        width: 33%;
    }
}

/* Mismo aire lateral interno del container de Bootstrap/servicios. */
.destination-profile-cover > .container,
.destination-anchor-nav > .container,
.place-detail-page > .container {
    padding-left: var(--bs-gutter-x, .75rem);
    padding-right: var(--bs-gutter-x, .75rem);
}

/* Separación equilibrada entre columna principal y lateral. */
.place-detail-page .row.g-4 {
    --bs-gutter-x: 2rem;
}

@media (max-width: 991.98px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 100%;
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .place-detail-page .row.g-4 {
        --bs-gutter-x: 1rem;
    }
}


/* v27.36 - medidas exactas del perfil de destino igualadas a ficha de servicios turísticos */
/*
   La ficha de servicios turísticos usa el .container estándar de Bootstrap.
   Se fuerzan las mismas medidas en el perfil de destino para evitar márgenes externos distintos.
*/
.destination-profile-cover > .container,
.destination-anchor-nav > .container,
.place-detail-page > .container {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * .5);
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * .5);
    margin-right: auto;
    margin-left: auto;
}

/* Medidas estándar Bootstrap .container */
@media (min-width: 576px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 960px;
    }

    .place-detail-page .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .place-detail-page .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (min-width: 1200px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 1320px;
    }
}

/* Mismo espacio entre columnas que usa g-4 en la ficha de servicios turísticos */
.place-detail-page .row.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Evitar que reglas anteriores sigan ampliando el destino más que servicios */
@media (min-width: 1200px) {
    .place-detail-page .row.g-4 {
        --bs-gutter-x: 1.5rem;
    }
}

/* En móvil se conserva el comportamiento estándar del container */
@media (max-width: 575.98px) {
    .destination-profile-cover > .container,
    .destination-anchor-nav > .container,
    .place-detail-page > .container {
        max-width: 100%;
        padding-right: .75rem;
        padding-left: .75rem;
    }
}


/* v27.37 - bloques del destino con radio menos ovalado, similar a servicios turísticos */
/* Se reduce el border-radius general del detalle de destino para que luzca más recto. */

.place-detail-page .place-section-card,
.place-detail-page .side-card,
.destination-profile-cover .destination-cover-card,
.destination-about-box,
.destination-info-card,
#como-llegar .route-box.destination-info-card,
#planifica .destination-plan-item.destination-info-card,
#como-llegar .route-recommendation,
.destination-sidebar-service-row,
.business-sidebar-promo-row,
.destination-side-promotions,
.destination-side-nearby-services,
.visit-validation-side-card,
.destination-index-card {
    border-radius: .75rem !important;
}

/* Elementos internos compactos */
.business-sidebar-promo-thumb,
.destination-sidebar-service-thumb,
.destination-about-box > span,
.destination-sidebar-service-btn,
.business-sidebar-promo-btn,
.destination-side-promotions .btn,
.destination-side-nearby-services .btn,
.visit-validation-side-card .btn,
.destination-index-card a {
    border-radius: .5rem !important;
}

/* La portada principal del destino también se hace menos redondeada */
.destination-profile-cover .destination-cover-card {
    border-radius: .9rem !important;
}

/* Bloques de información interna */
.destination-about-grid,
.destination-plan-clean,
.route-detail-grid {
    gap: .9rem;
}

/* En móvil mantiene el mismo lenguaje visual */
@media (max-width: 767.98px) {
    .place-detail-page .place-section-card,
    .place-detail-page .side-card,
    .destination-profile-cover .destination-cover-card,
    .destination-about-box,
    .destination-info-card,
    #como-llegar .route-box.destination-info-card,
    #planifica .destination-plan-item.destination-info-card,
    #como-llegar .route-recommendation,
    .destination-sidebar-service-row,
    .business-sidebar-promo-row {
        border-radius: .7rem !important;
    }
}


/* v27.38 - unificación visual completa del perfil de destino con servicios turísticos */
/* Objetivo: que destino turístico y servicio turístico compartan línea visual, tipografía, tarjetas, botones y medidas. */

/* Tipografía general */
.place-detail-page {
    font-size: 1rem;
    color: #111827;
}

.place-detail-page p,
.place-detail-page li,
.place-detail-page .lead-text,
.place-detail-page .text-muted,
.destination-about-clean .lead-text,
.destination-about-box p,
#como-llegar .lead-text,
#planifica .text-muted {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
}

.place-detail-page .text-muted {
    color: #64748b !important;
}

/* Títulos igualados a ficha de servicio turístico */
.place-detail-page h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0;
    color: #111827;
    margin-bottom: .85rem;
}

.place-detail-page h3,
.destination-about-box h3,
.destination-note-box h3,
.travel-check-card h3,
.destination-itinerary h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0;
    color: #111827;
}

.place-detail-page h5,
.visit-business-card h5 {
    font-size: 1rem;
    font-weight: 800;
}

/* Subtítulos pequeños menos pesados */
.place-detail-page .section-eyebrow,
.place-detail-page .side-kicker {
    color: #00857a;
    font-size: .72rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .55rem;
}

/* Tarjetas principales igualadas a estilo card de servicio */
.place-detail-page .place-section-card,
.place-detail-page .side-card {
    background: #ffffff;
    border: 0;
    border-radius: .625rem !important;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    padding: 1.5rem;
}

.place-detail-page .place-section-card + .place-section-card,
.place-detail-page .side-card + .side-card {
    margin-top: 1.5rem;
}

/* Tarjetas internas simples */
.destination-about-box,
.destination-info-card,
#como-llegar .route-box.destination-info-card,
#planifica .destination-plan-item.destination-info-card,
#como-llegar .route-recommendation,
.travel-check-card,
.destination-note-box,
.comment-form,
.comment-item {
    border-radius: .625rem !important;
    border: 1px solid #dee2e6;
    box-shadow: none !important;
    background: #ffffff;
}

/* Espaciado interno más uniforme */
.destination-about-box,
.destination-info-card,
#como-llegar .route-box.destination-info-card,
#planifica .destination-plan-item.destination-info-card,
.travel-check-card,
.destination-note-box {
    padding: 1rem;
}

/* Botones: estilo Bootstrap más parecido a servicios */
.place-detail-page .btn,
.destination-anchor-nav a,
.destination-cover-actions .btn,
.destination-cover-secondary .btn-link {
    border-radius: .375rem !important;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: 0;
}

.place-detail-page .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
}

.place-detail-page .btn-sm {
    min-height: 31px;
    font-size: .82rem;
}

/* Colores de botones consistentes */
.place-detail-page .btn-success,
.destination-cover-actions .btn-success {
    background: #00a000;
    border-color: #00a000;
    color: #ffffff;
}

.place-detail-page .btn-outline-success,
.destination-cover-actions .btn-outline-success {
    color: #00a000;
    border-color: #00a000;
    background: #ffffff;
}

.place-detail-page .btn-outline-success:hover,
.destination-cover-actions .btn-outline-success:hover {
    color: #ffffff;
    background: #00a000;
    border-color: #00a000;
}

.place-detail-page .btn-outline-primary,
.destination-side-nearby-services .btn-outline-primary {
    color: #00857a;
    border-color: #00857a;
}

.place-detail-page .btn-outline-primary:hover,
.destination-side-nearby-services .btn-outline-primary:hover {
    color: #ffffff;
    background: #00857a;
    border-color: #00857a;
}

/* Lateral derecho más parecido al card-body de servicio */
.sticky-place-sidebar {
    top: 100px;
}

.destination-side-promotions h3,
.destination-side-nearby-services h3,
.visit-validation-side-card h3,
.destination-index-card h3,
.warning-card h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0;
    color: #111827;
    margin-bottom: 1rem;
}

.destination-side-promotions .badge,
.destination-side-nearby-services .badge {
    font-size: .72rem;
    font-weight: 700;
}

/* Promociones y servicios laterales */
.business-sidebar-promo-row,
.destination-sidebar-service-row {
    border-radius: .625rem !important;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    border: 1px solid #dee2e6 !important;
}

.business-sidebar-promo-thumb,
.destination-sidebar-service-thumb {
    border-radius: .5rem !important;
}

.business-sidebar-promo-title,
.destination-sidebar-service-title {
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.2;
}

.business-sidebar-promo-desc,
.destination-sidebar-service-desc {
    font-size: .82rem;
    line-height: 1.35;
}

.business-sidebar-promo-btn,
.destination-sidebar-service-btn {
    border-radius: .375rem !important;
    font-weight: 500;
}

/* Menú interno más sobrio */
.destination-anchor-nav {
    background: #ffffff;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    box-shadow: none;
}

.destination-anchor-nav .container {
    gap: .25rem;
    padding-top: .55rem;
    padding-bottom: .55rem;
}

.destination-anchor-nav a {
    color: #334155;
    padding: .4rem .62rem;
    font-size: .85rem;
    font-weight: 700;
    background: transparent;
    border: 0;
}

.destination-anchor-nav a:hover {
    color: #00857a;
    background: #f8f9fa;
}

/* Hero: mantener visual, pero suavizar tipografía para acercarla al sistema */
.destination-profile-cover .destination-profile-title {
    font-weight: 800;
    letter-spacing: -.025em;
}

.destination-profile-cover .destination-profile-lead {
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 400;
}

.destination-profile-cover .destination-profile-badges .badge,
.destination-cover-meta-clean span {
    font-size: .78rem;
    font-weight: 600;
}

/* Formulario lateral de reporte similar a formulario de servicio */
.side-card input.form-control,
.side-card textarea.form-control,
.side-card select.form-select {
    border-radius: .375rem;
    border-color: #dee2e6;
    font-size: .95rem;
}

/* Alertas y cajas de aviso */
.place-detail-page .alert {
    border-radius: .625rem !important;
}

/* Evitar exceso de peso visual en textos justificados */
.destination-about-clean .lead-text,
.destination-about-box p {
    color: #334155;
}

/* Responsive */
@media (max-width: 991.98px) {
    .place-detail-page .place-section-card,
    .place-detail-page .side-card {
        padding: 1.25rem;
    }

    .place-detail-page h2 {
        font-size: 1.55rem;
    }
}

@media (max-width: 767.98px) {
    .place-detail-page p,
    .place-detail-page li,
    .place-detail-page .lead-text,
    .place-detail-page .text-muted,
    .destination-about-clean .lead-text,
    .destination-about-box p {
        font-size: .95rem;
        line-height: 1.6;
    }

    .destination-anchor-nav a {
        font-size: .8rem;
    }
}


/* v27.39 - botones del destino turístico más llamativos, similares a servicios turísticos */
/* Hero: acciones principales con mayor presencia visual */
.destination-profile-cover .destination-cover-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.25rem;
}

.destination-profile-cover .destination-cover-actions .btn {
    min-height: 48px;
    padding: .65rem 1rem;
    border-radius: .45rem !important;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}

/* Botón principal: Cómo llegar */
.destination-profile-cover .destination-cover-actions .btn-light {
    background: #00a000;
    border-color: #00a000;
    color: #ffffff;
}

.destination-profile-cover .destination-cover-actions .btn-light:hover {
    background: #008c00;
    border-color: #008c00;
    color: #ffffff;
}

/* Botón secundario principal: validar visita */
.destination-profile-cover .destination-cover-actions .btn-outline-light {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.72);
    color: #ffffff;
}

.destination-profile-cover .destination-cover-actions .btn-outline-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #111827;
}

/* Acciones secundarias convertidas a botones visibles */
.destination-profile-cover .destination-cover-secondary,
.destination-profile-cover .destination-cover-secondary-clean {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: .7rem;
}

.destination-profile-cover .destination-cover-secondary .btn-link,
.destination-profile-cover .destination-cover-secondary-clean .btn-link {
    min-height: 44px;
    padding: .55rem .9rem;
    border-radius: .45rem !important;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.08);
    color: #ffffff;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 650;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.destination-profile-cover .destination-cover-secondary .btn-link:hover,
.destination-profile-cover .destination-cover-secondary-clean .btn-link:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.8);
    color: #ffffff;
}

/* Formularios dentro del grupo de acciones para que no rompan la grilla */
.destination-profile-cover .destination-cover-secondary form,
.destination-profile-cover .destination-cover-secondary-clean form {
    margin: 0;
    display: inline-flex;
}

/* Barra móvil: acciones más visibles y consistentes */
.destination-mobile-cta a {
    font-weight: 700;
}

/* En pantallas pequeñas los botones ocupan el ancho completo para lectura cómoda */
@media (max-width: 767.98px) {
    .destination-profile-cover .destination-cover-actions .btn,
    .destination-profile-cover .destination-cover-actions form,
    .destination-profile-cover .destination-cover-actions form .btn,
    .destination-profile-cover .destination-cover-secondary .btn-link,
    .destination-profile-cover .destination-cover-secondary-clean .btn-link,
    .destination-profile-cover .destination-cover-secondary form,
    .destination-profile-cover .destination-cover-secondary-clean form {
        width: 100%;
    }
}


/* v27.40 - se elimina el bloque oscuro de itinerario sugerido del destino */
.traveler-guide-card .travel-check-grid + .destination-itinerary {
    display: none !important;
}

/* Ajuste de separación al quedar solo recomendaciones, servicios y restricciones */
.traveler-guide-card .row.g-3.mt-3 {
    margin-top: 1rem !important;
}


/* v27.41 - botón Abrir ruta ubicado en Cómo llegar */
#como-llegar .destination-route-map-btn {
    min-height: 40px;
    padding: .5rem 1rem;
    border-radius: .375rem !important;
    font-weight: 600;
}

#planifica .btn[href*="maps"],
#planifica .btn[href*="google.com/maps"] {
    display: none !important;
}


/* v27.42 - recomendaciones para la visita en 3 filas */
.traveler-guide-card .travel-check-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 1rem;
}

.traveler-guide-card .travel-check-card {
    min-height: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .75rem;
    align-items: start;
    padding: 1rem 1.15rem;
}

.traveler-guide-card .travel-check-card h3 {
    grid-column: 1 / -1;
    margin-bottom: .35rem;
}

.traveler-guide-card .travel-check-card ul {
    grid-column: 1 / -1;
    margin-bottom: 0;
    padding-left: 1.15rem;
}

.traveler-guide-card .travel-check-card p {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.traveler-guide-card .travel-check-card li {
    margin-bottom: .25rem;
}

@media (max-width: 767.98px) {
    .traveler-guide-card .travel-check-card {
        padding: 1rem;
    }
}


/* v27.43 - video antes de galería */
#videoDestino {
    scroll-margin-top: 110px;
}

#galeria-destino {
    scroll-margin-top: 110px;
}


/* v27.44 - se eliminan el índice lateral y consejos importantes */
.destination-index-card,
.warning-card {
    display: none !important;
}


/* v27.45 - tipografía del destino alineada a la de servicios turísticos */

/* Títulos principales del contenido del destino */
.place-detail-page h2 {
    font-size: 1.95rem !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    color: #111827 !important;
    margin-bottom: 1rem !important;
}

/* Subtítulo/eyebrow más discreto, similar a la línea editorial de servicios */
.place-detail-page .section-eyebrow,
.place-detail-page .side-kicker {
    font-size: .70rem !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: .06em !important;
    color: #0f766e !important;
    margin-bottom: .45rem !important;
}

/* Títulos internos en cajas del contenido principal */
.place-detail-page h3,
.destination-about-box h3,
.destination-note-box h3,
.travel-check-card h3 {
    font-size: 1.06rem !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    color: #111827 !important;
}

/* Títulos del lateral derecho, igualados al estilo de servicios turísticos */
.place-detail-page .side-card > h3,
.destination-side-promotions h3,
.destination-side-nearby-services h3,
.visit-validation-side-card h3,
.warning-card h3 {
    font-size: 1rem !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    color: #111827 !important;
    margin-bottom: .9rem !important;
}

/* Textos descriptivos más parecidos a servicios */
.place-detail-page p,
.place-detail-page li,
.place-detail-page .lead-text,
.destination-about-clean .lead-text,
.destination-about-box p,
#como-llegar .lead-text,
#planifica .text-muted {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    color: #334155 !important;
}

/* Texto del lateral */
.place-detail-page .side-card p,
.place-detail-page .side-card li,
.place-detail-page .side-card .text-muted {
    font-size: .95rem !important;
    line-height: 1.55 !important;
}

/* Ajuste fino en móvil */
@media (max-width: 767.98px) {
    .place-detail-page h2 {
        font-size: 1.65rem !important;
    }

    .place-detail-page .side-card > h3,
    .destination-side-promotions h3,
    .destination-side-nearby-services h3,
    .visit-validation-side-card h3 {
        font-size: .98rem !important;
    }
}


/* v27.46 - hero del destino menos oscuro */
.place-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 22, 36, .72) 0%,
            rgba(11, 61, 92, .52) 46%,
            rgba(15, 23, 42, .20) 100%
        ),
        linear-gradient(
            0deg,
            rgba(15, 23, 42, .30) 0%,
            rgba(15, 23, 42, .02) 55%
        ) !important;
}

/* Mejor equilibrio visual en textos y chips sobre el hero */
.destination-profile-cover .destination-profile-lead {
    color: rgba(255,255,255,.86) !important;
}

.destination-profile-cover .destination-cover-meta-clean span,
.destination-profile-cover .destination-profile-badges .badge {
    background: rgba(255,255,255,.14) !important;
    border-color: rgba(255,255,255,.28) !important;
    color: #ffffff !important;
}

/* Botones secundarios un poco más limpios sobre un hero más claro */
.destination-profile-cover .destination-cover-secondary .btn-link,
.destination-profile-cover .destination-cover-secondary-clean .btn-link {
    background: rgba(255,255,255,.06) !important;
    border-color: rgba(255,255,255,.34) !important;
}


/* v27.47 - navegación interna compacta e integrada */
.destination-anchor-nav {
    position: sticky;
    top: 58px;
    z-index: 980;
    background: rgba(255, 255, 255, .98) !important;
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(15, 23, 42, .08) !important;
    border-bottom: 1px solid rgba(15, 23, 42, .08) !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .04) !important;
    min-height: auto;
}

.destination-anchor-nav .container {
    min-height: 38px;
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
    display: flex;
    align-items: center;
    gap: .2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.destination-anchor-nav .container::-webkit-scrollbar {
    display: none;
}

.destination-anchor-nav a {
    display: inline-flex;
    align-items: center;
    gap: .32rem;
    min-height: 30px;
    padding: .28rem .55rem !important;
    border-radius: .35rem !important;
    background: transparent !important;
    color: #334155 !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

.destination-anchor-nav a:hover {
    background: #f1f5f9 !important;
    color: #00857a !important;
}

/* Evita que el contenido quede tapado al navegar por anclas */
#acerca-destino,
#servicios-cercanos,
#como-llegar,
#planifica,
#videoDestino,
#galeria-destino,
#comentarios {
    scroll-margin-top: 115px;
}

@media (max-width: 991.98px) {
    .destination-anchor-nav {
        top: 0;
    }

    .destination-anchor-nav .container {
        min-height: 38px;
        padding-left: .75rem;
        padding-right: .75rem;
    }
}

@media (max-width: 767.98px) {
    .destination-anchor-nav a {
        font-size: .76rem !important;
        padding: .28rem .48rem !important;
    }
}


/* v27.48 - justificación de textos largos en blog, eventos y cards descriptivas */
/* Se justifican solo textos descriptivos largos; títulos, botones, badges y metadatos quedan normales. */

/* Blog turístico en home y listados */
.blog-card p,
.blog-mini-post p,
.blog-feature-card p,
.blog-post-card p,
.blog-detail-content p,
.home-blog-card p,
.home-blog-feature p,
.blog-excerpt,
.blog-summary,
.blog-description,
.post-excerpt,
.post-summary {
    text-align: justify;
    text-justify: inter-word;
}

/* Descripciones largas de tarjetas públicas */
.event-card p,
.event-detail-content p,
.promotion-card p,
.promo-card p,
.place-card p,
.business-card p,
.result-card p,
.public-card p,
.card-text {
    text-align: justify;
    text-justify: inter-word;
}

/* Evitar justificar textos cortos o elementos de acción */
.badge,
.btn,
small,
.card-meta,
.text-muted small,
.blog-meta,
.event-meta,
.promo-meta,
.result-card .badge,
.blog-card .badge,
.event-card .badge,
.promotion-card .badge {
    text-align: left;
}

/* Mejorar lectura del resumen del blog de la página principal */
.home-section .blog-card p,
.home-section .blog-feature-card p,
.home-section .post-excerpt,
.home-section .blog-excerpt {
    line-height: 1.6;
}

/* En móvil el texto justificado puede generar espacios raros; se deja alineado a la izquierda. */
@media (max-width: 767.98px) {
    .blog-card p,
    .blog-mini-post p,
    .blog-feature-card p,
    .blog-post-card p,
    .blog-detail-content p,
    .home-blog-card p,
    .home-blog-feature p,
    .blog-excerpt,
    .blog-summary,
    .blog-description,
    .post-excerpt,
    .post-summary,
    .event-card p,
    .event-detail-content p,
    .promotion-card p,
    .promo-card p,
    .place-card p,
    .business-card p,
    .result-card p,
    .public-card p,
    .card-text {
        text-align: left;
    }
}


/* v27.49 - home: blog turístico con mismo tamaño visual que eventos turísticos */
.home-highlight-card {
    min-height: 296px;
}

.home-highlight-card .row {
    min-height: 296px;
}

.home-highlight-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-highlight-card .card-body .btn {
    margin-top: auto;
    align-self: flex-start;
}

.home-highlight-card h5 {
    font-size: 1.08rem;
    line-height: 1.28;
    font-weight: 800;
}

.home-highlight-card .home-card-excerpt {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem !important;
}

.home-blog-card .home-blog-excerpt {
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width: 767.98px) {
    .home-highlight-card,
    .home-highlight-card .row {
        min-height: auto;
    }

    .home-highlight-card .home-card-excerpt {
        text-align: left;
        -webkit-line-clamp: unset;
        display: block;
        overflow: visible;
    }
}


/* v27.51 - menú principal con Sobre TURISMO PERÚ */
.public-main-menu .nav-link {
    white-space: nowrap;
}

@media (min-width: 992px) {
    .public-main-nav .navbar-nav.public-main-menu {
        gap: .15rem;
    }

    .public-main-nav .navbar-nav.public-main-menu .nav-link {
        font-size: .94rem;
        padding-left: .48rem;
        padding-right: .48rem;
    }

    .public-main-nav .public-nav-search {
        margin-left: .75rem !important;
    }
}

@media (min-width: 1200px) {
    .public-main-nav .navbar-nav.public-main-menu .nav-link {
        font-size: .98rem;
        padding-left: .55rem;
        padding-right: .55rem;
    }
}


/* v27.52 - menú público sin "Registra tu servicio" */
.public-main-nav .navbar-nav.public-main-menu .nav-link {
    white-space: nowrap;
}


/* v27.53 - Sobre TURISMO PERÚ más impactante */
.about-peru-hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 4.5rem;
    background:
        radial-gradient(circle at 80% 10%, rgba(132, 204, 22, .20), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 52%, #eef8f3 100%);
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.about-peru-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #d99a00;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-peru-kicker.centered {
    justify-content: center;
}

.about-peru-kicker.light {
    color: #facc15;
}

.about-peru-hero h1 {
    max-width: 920px;
    color: #111827;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -.055em;
    margin-bottom: 1.4rem;
}

.about-peru-lead {
    max-width: 850px;
    color: #334155;
    font-size: 1.28rem;
    line-height: 1.65;
    text-align: justify;
}

.about-peru-text {
    max-width: 820px;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: justify;
}

.about-peru-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.7rem;
}

.about-peru-actions .btn {
    border-radius: .55rem;
    font-weight: 700;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.about-peru-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.about-peru-card::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(132, 204, 22, .18);
    border-radius: .8rem;
    pointer-events: none;
}

.about-peru-card-label {
    display: inline-flex;
    color: #0f766e;
    font-weight: 900;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .8rem;
}

.about-peru-card h2 {
    color: #111827;
    font-size: 1.8rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about-peru-card p {
    color: #475569;
    line-height: 1.65;
    text-align: justify;
}

.about-peru-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-peru-stats div {
    background: #f1f5f9;
    border-radius: .9rem;
    padding: 1.2rem;
    text-align: center;
}

.about-peru-stats strong {
    display: block;
    color: #0b3d5c;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}

.about-peru-stats span {
    display: block;
    color: #64748b;
    margin-top: .4rem;
    font-weight: 600;
}

.about-peru-purpose {
    background: #f8fafc;
}

.about-peru-purpose h2,
.about-peru-community h2,
.about-peru-country h2,
.about-peru-final-cta h2 {
    color: #111827;
    font-weight: 900;
    letter-spacing: -.035em;
}

.about-peru-purpose .text-center > h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.about-peru-purpose .text-center > p {
    max-width: 780px;
    margin: .9rem auto 0;
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.7;
}

.about-peru-value-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: .9rem;
    padding: 1.5rem;
    box-shadow: 0 12px 36px rgba(15, 23, 42, .055);
}

.about-peru-value-card span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .85rem;
    background: rgba(132, 204, 22, .13);
    color: #0f766e;
    font-size: 1.55rem;
    margin-bottom: 1rem;
}

.about-peru-value-card h3 {
    color: #111827;
    font-size: 1.18rem;
    font-weight: 900;
    margin-bottom: .65rem;
}

.about-peru-value-card p {
    color: #475569;
    line-height: 1.65;
    margin-bottom: 0;
    text-align: justify;
}

.about-peru-country {
    padding: 5rem 0;
    background: #ffffff;
}

.about-peru-country-box {
    overflow: hidden;
    border-radius: 1.1rem;
    padding: 3rem;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(11, 61, 92, .86)),
        url('../img/hero.svg') center/cover no-repeat;
    box-shadow: 0 24px 80px rgba(15, 23, 42, .18);
}

.about-peru-country h2 {
    color: #ffffff;
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.about-peru-country p {
    color: rgba(255,255,255,.86);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
}

.about-peru-country-list {
    display: grid;
    gap: .8rem;
}

.about-peru-country-list div {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .9rem 1rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: .75rem;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    font-weight: 700;
}

.about-peru-country-list i {
    color: #84cc16;
    font-size: 1.15rem;
    margin-top: .1rem;
}

.about-peru-community {
    background:
        radial-gradient(circle at 15% 20%, rgba(14, 165, 233, .14), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-peru-community h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.about-peru-community p {
    color: #475569;
    line-height: 1.75;
    text-align: justify;
}

.about-peru-community-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 18px 55px rgba(15, 23, 42, .09);
}

.about-peru-community-card h3 {
    color: #111827;
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.about-peru-community-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .85rem;
}

.about-peru-community-card li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: #334155;
    line-height: 1.55;
}

.about-peru-community-card i {
    color: #00a000;
    font-size: 1.15rem;
    margin-top: .15rem;
}

.about-peru-final-cta {
    padding: 4rem 0 5rem;
    background: #ffffff;
}

.about-peru-final-box {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 1.1rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ecfccb, #ffffff 58%, #eef8f3);
    border: 1px solid rgba(15, 23, 42, .10);
}

.about-peru-final-box h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 1rem;
}

.about-peru-final-box p {
    max-width: 760px;
    margin: 0 auto;
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .about-peru-hero {
        padding: 4rem 0 3rem;
    }

    .about-peru-country-box {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-peru-hero h1 {
        font-size: 2.6rem;
    }

    .about-peru-lead,
    .about-peru-text,
    .about-peru-card p,
    .about-peru-value-card p,
    .about-peru-country p,
    .about-peru-community p {
        text-align: left;
    }

    .about-peru-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-peru-stats {
        grid-template-columns: 1fr;
    }

    .about-peru-country-box,
    .about-peru-final-box {
        padding: 1.5rem;
    }
}


/* v27.54 - Sobre TURISMO PERÚ breve y puntual */
.about-peru-hero-brief {
    padding: 4.5rem 0 4rem;
}

.about-peru-hero-brief h1 {
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    max-width: 860px;
}

.about-peru-hero-brief .about-peru-lead {
    max-width: 760px;
}

.about-peru-card-brief {
    padding: 1.8rem;
}

.about-peru-purpose-brief .text-center > p {
    max-width: 680px;
}

.about-peru-value-card-brief {
    padding: 1.35rem;
}

.about-peru-value-card-brief p,
.about-peru-card-brief p,
.about-peru-final-box-brief p {
    text-align: center;
}

.about-peru-card-brief p {
    text-align: justify;
}

.about-peru-community-brief {
    background: #ffffff;
}

.about-peru-final-box-brief {
    max-width: 980px;
    padding: 2.5rem 2rem;
}

.about-peru-final-box-brief h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.about-peru-final-box-brief p {
    max-width: 720px;
}

@media (max-width: 767.98px) {
    .about-peru-hero-brief {
        padding: 3.5rem 0 2.7rem;
    }

    .about-peru-card-brief p,
    .about-peru-final-box-brief p {
        text-align: left;
    }
}


/* v27.55 - Sobre TURISMO PERÚ estilo corporativo formal */
.about-corporate-hero {
    padding: 5rem 0 4.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #eef6f3 100%);
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.about-corporate-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #0f766e;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}

.about-corporate-hero h1 {
    max-width: 860px;
    color: #111827;
    font-size: clamp(2.3rem, 4.2vw, 4rem);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -.04em;
    margin-bottom: 1.3rem;
}

.about-corporate-lead {
    max-width: 820px;
    color: #475569;
    font-size: 1.12rem;
    line-height: 1.72;
    text-align: justify;
}

.about-corporate-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.about-corporate-actions .btn {
    border-radius: .45rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.about-corporate-summary {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: .85rem;
    padding: 1.8rem;
    box-shadow: 0 16px 45px rgba(15, 23, 42, .08);
}

.about-corporate-summary h2 {
    color: #111827;
    font-size: 1.55rem;
    font-weight: 850;
    line-height: 1.22;
    margin-bottom: .9rem;
}

.about-corporate-summary p {
    color: #475569;
    line-height: 1.65;
    text-align: justify;
}

.about-corporate-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
    margin-top: 1.3rem;
}

.about-corporate-stats div {
    background: #f1f5f9;
    border-radius: .65rem;
    padding: 1rem;
    text-align: center;
}

.about-corporate-stats strong {
    display: block;
    color: #0b3d5c;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 900;
}

.about-corporate-stats span {
    display: block;
    color: #64748b;
    margin-top: .35rem;
    font-size: .9rem;
    font-weight: 600;
}

.about-corporate-section {
    padding: 4.5rem 0;
    background: #ffffff;
}

.about-corporate-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}

.about-corporate-heading h2,
.about-corporate-commitment h2 {
    color: #111827;
    font-size: clamp(1.9rem, 3vw, 3rem);
    font-weight: 850;
    letter-spacing: -.035em;
    line-height: 1.12;
    margin-bottom: .9rem;
}

.about-corporate-heading p,
.about-corporate-commitment p {
    color: #475569;
    font-size: 1.04rem;
    line-height: 1.7;
    text-align: justify;
}

.about-corporate-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: .75rem;
    padding: 1.35rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}

.about-corporate-card span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .65rem;
    background: rgba(15, 118, 110, .10);
    color: #0f766e;
    font-size: 1.25rem;
    margin-bottom: .9rem;
}

.about-corporate-card h3 {
    color: #111827;
    font-size: 1.1rem;
    font-weight: 850;
    margin-bottom: .55rem;
}

.about-corporate-card p {
    color: #475569;
    line-height: 1.62;
    margin-bottom: 0;
    text-align: justify;
}

.about-corporate-commitment {
    padding: 4.5rem 0 5rem;
    background: #f8fafc;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.about-corporate-cta {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: .85rem;
    padding: 1.7rem;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
}

.about-corporate-cta h3 {
    color: #111827;
    font-size: 1.35rem;
    font-weight: 850;
    margin-bottom: .65rem;
}

.about-corporate-cta p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .about-corporate-hero {
        padding: 3.5rem 0 3rem;
    }

    .about-corporate-lead,
    .about-corporate-summary p,
    .about-corporate-heading p,
    .about-corporate-commitment p,
    .about-corporate-card p {
        text-align: left;
    }

    .about-corporate-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-corporate-stats {
        grid-template-columns: 1fr;
    }
}


/* v27.56 - Ajuste visual corporativo final para Sobre TURISMO PERÚ */
:root {
    --tp-corp-navy: #0b2f4f;
    --tp-corp-navy-soft: #123f63;
    --tp-corp-green: #0f766e;
    --tp-corp-green-dark: #0b5f59;
    --tp-corp-gold: #c9972b;
    --tp-corp-gold-soft: rgba(201, 151, 43, .14);
    --tp-corp-border: rgba(11, 47, 79, .12);
}

.about-corporate-hero {
    padding: 4.6rem 0 4.1rem !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(248,250,252,.96) 56%, rgba(236,248,243,.92) 100%),
        radial-gradient(circle at 84% 18%, rgba(201,151,43,.16), transparent 28%) !important;
    border-bottom: 1px solid var(--tp-corp-border) !important;
}

.about-corporate-kicker {
    color: var(--tp-corp-gold) !important;
    font-size: .72rem !important;
    font-weight: 850 !important;
    letter-spacing: .12em !important;
    margin-bottom: .85rem !important;
}

.about-corporate-hero h1 {
    max-width: 840px !important;
    color: var(--tp-corp-navy) !important;
    font-size: clamp(2.15rem, 3.7vw, 3.55rem) !important;
    line-height: 1.12 !important;
    font-weight: 850 !important;
    letter-spacing: -.035em !important;
    margin-bottom: 1.15rem !important;
}

.about-corporate-lead {
    max-width: 780px !important;
    color: #43566c !important;
    font-size: 1.04rem !important;
    line-height: 1.72 !important;
}

.about-corporate-actions {
    margin-top: 1.35rem !important;
    gap: .65rem !important;
}

.about-corporate-actions .btn {
    border-radius: .38rem !important;
    font-size: .95rem !important;
    font-weight: 750 !important;
    padding: .68rem 1.08rem !important;
    min-height: 44px !important;
}

.about-corporate-actions .btn-success {
    background: var(--tp-corp-green) !important;
    border-color: var(--tp-corp-green) !important;
}

.about-corporate-actions .btn-success:hover {
    background: var(--tp-corp-green-dark) !important;
    border-color: var(--tp-corp-green-dark) !important;
}

.about-corporate-actions .btn-outline-success {
    color: var(--tp-corp-green) !important;
    border-color: rgba(15,118,110,.45) !important;
    background: #ffffff !important;
}

.about-corporate-actions .btn-outline-success:hover {
    color: #ffffff !important;
    background: var(--tp-corp-green) !important;
    border-color: var(--tp-corp-green) !important;
}

.about-corporate-summary {
    border: 1px solid var(--tp-corp-border) !important;
    border-radius: .72rem !important;
    padding: 1.65rem !important;
    box-shadow: 0 14px 38px rgba(11, 47, 79, .075) !important;
    border-top: 4px solid var(--tp-corp-gold) !important;
}

.about-corporate-summary h2 {
    color: var(--tp-corp-navy) !important;
    font-size: 1.35rem !important;
    font-weight: 850 !important;
    margin-bottom: .75rem !important;
}

.about-corporate-summary p {
    color: #4b5f73 !important;
    font-size: .98rem !important;
    line-height: 1.65 !important;
}

.about-corporate-stats {
    gap: .75rem !important;
    margin-top: 1.1rem !important;
}

.about-corporate-stats div {
    background: #f6f8fb !important;
    border: 1px solid rgba(11,47,79,.08) !important;
    border-radius: .55rem !important;
    padding: .9rem !important;
}

.about-corporate-stats strong {
    color: var(--tp-corp-navy) !important;
    font-size: 1.55rem !important;
}

.about-corporate-stats span {
    color: #64748b !important;
    font-size: .84rem !important;
}

.about-corporate-section {
    padding: 4rem 0 !important;
}

.about-corporate-heading {
    max-width: 780px !important;
    margin-bottom: 1.8rem !important;
}

.about-corporate-heading h2,
.about-corporate-commitment h2 {
    color: var(--tp-corp-navy) !important;
    font-size: clamp(1.7rem, 2.55vw, 2.55rem) !important;
    line-height: 1.16 !important;
    font-weight: 850 !important;
    letter-spacing: -.03em !important;
}

.about-corporate-heading p,
.about-corporate-commitment p {
    color: #4b5f73 !important;
    font-size: .99rem !important;
    line-height: 1.68 !important;
}

.about-corporate-card {
    border: 1px solid var(--tp-corp-border) !important;
    border-radius: .62rem !important;
    padding: 1.25rem !important;
    box-shadow: 0 8px 24px rgba(11, 47, 79, .045) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.about-corporate-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(11, 47, 79, .075) !important;
    border-color: rgba(15,118,110,.22) !important;
}

.about-corporate-card span {
    width: 40px !important;
    height: 40px !important;
    border-radius: .55rem !important;
    background: var(--tp-corp-gold-soft) !important;
    color: var(--tp-corp-navy) !important;
    font-size: 1.15rem !important;
    margin-bottom: .85rem !important;
}

.about-corporate-card h3 {
    color: var(--tp-corp-navy) !important;
    font-size: 1.03rem !important;
    font-weight: 850 !important;
    margin-bottom: .48rem !important;
}

.about-corporate-card p {
    color: #506174 !important;
    font-size: .94rem !important;
    line-height: 1.6 !important;
}

.about-corporate-commitment {
    padding: 4rem 0 4.5rem !important;
    background:
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
    border-top: 1px solid var(--tp-corp-border) !important;
}

.about-corporate-cta {
    border: 1px solid var(--tp-corp-border) !important;
    border-radius: .72rem !important;
    padding: 1.5rem !important;
    box-shadow: 0 10px 30px rgba(11, 47, 79, .055) !important;
    border-left: 4px solid var(--tp-corp-green) !important;
}

.about-corporate-cta h3 {
    color: var(--tp-corp-navy) !important;
    font-size: 1.2rem !important;
    font-weight: 850 !important;
}

.about-corporate-cta p {
    color: #64748b !important;
    font-size: .95rem !important;
}

@media (max-width: 767.98px) {
    .about-corporate-hero {
        padding: 3.2rem 0 2.7rem !important;
    }

    .about-corporate-hero h1 {
        font-size: 2.25rem !important;
        line-height: 1.1 !important;
    }

    .about-corporate-lead {
        font-size: 1rem !important;
    }

    .about-corporate-section,
    .about-corporate-commitment {
        padding: 3.2rem 0 !important;
    }
}


/* v27.57 - Botones con color verde basado en imagen de referencia */
:root {
    --tp-btn-green: #03ad03;
    --tp-btn-green-hover: #009f00;
    --tp-btn-green-active: #009500;
    --tp-btn-green-soft: rgba(3, 173, 3, .12);
    --tp-btn-green-border-soft: rgba(3, 173, 3, .35);
}

.btn-success,
button.btn-success,
a.btn-success {
    background-color: var(--tp-btn-green) !important;
    border-color: var(--tp-btn-green) !important;
    color: #ffffff !important;
}

.btn-success:hover,
button.btn-success:hover,
a.btn-success:hover {
    background-color: var(--tp-btn-green-hover) !important;
    border-color: var(--tp-btn-green-hover) !important;
    color: #ffffff !important;
}

.btn-success:focus,
.btn-success:active,
button.btn-success:focus,
button.btn-success:active,
a.btn-success:focus,
a.btn-success:active {
    background-color: var(--tp-btn-green-active) !important;
    border-color: var(--tp-btn-green-active) !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 .2rem rgba(3, 173, 3, .22) !important;
}

.btn-outline-success,
button.btn-outline-success,
a.btn-outline-success {
    color: var(--tp-btn-green) !important;
    border-color: var(--tp-btn-green) !important;
    background-color: #ffffff !important;
}

.btn-outline-success:hover,
button.btn-outline-success:hover,
a.btn-outline-success:hover {
    background-color: var(--tp-btn-green) !important;
    border-color: var(--tp-btn-green) !important;
    color: #ffffff !important;
}

.btn-outline-success:focus,
.btn-outline-success:active,
button.btn-outline-success:focus,
button.btn-outline-success:active,
a.btn-outline-success:focus,
a.btn-outline-success:active {
    background-color: var(--tp-btn-green-hover) !important;
    border-color: var(--tp-btn-green-hover) !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 .2rem rgba(3, 173, 3, .18) !important;
}

/* Botones especiales y acciones del sitio */
.hero-search-form .btn,
.search-box .btn,
.filter-bar .btn-success,
.card .btn-success,
.sidebar .btn-success,
.pagination .page-item.active .page-link {
    background-color: var(--tp-btn-green) !important;
    border-color: var(--tp-btn-green) !important;
}

.pagination .page-item.active .page-link {
    color: #ffffff !important;
}

.badge-soft-success,
.tag-success-soft {
    background: var(--tp-btn-green-soft) !important;
    color: var(--tp-btn-green) !important;
    border: 1px solid var(--tp-btn-green-border-soft) !important;
}


/* v27.58 - Mejoras visuales finales en Sobre TURISMO PERÚ */
.about-final-hero {
    position: relative;
    overflow: hidden;
    padding: 4.8rem 0 4.4rem !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.97), rgba(248,250,252,.96) 54%, rgba(235,247,243,.94)),
        radial-gradient(circle at 87% 16%, rgba(201,151,43,.18), transparent 30%),
        radial-gradient(circle at 12% 85%, rgba(3,173,3,.10), transparent 26%) !important;
}

.about-final-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0b2f4f, #03ad03, #c9972b);
}

.about-final-hero h1 {
    max-width: 780px !important;
    color: #0b2f4f !important;
    font-size: clamp(2.15rem, 3.55vw, 3.45rem) !important;
    line-height: 1.13 !important;
    font-weight: 860 !important;
    margin-bottom: 1rem !important;
}

.about-final-hero .about-corporate-lead {
    max-width: 740px !important;
    font-size: 1.02rem !important;
    line-height: 1.68 !important;
}

.about-final-purpose {
    background: #ffffff;
    border: 1px solid rgba(11, 47, 79, .12);
    border-top: 4px solid #c9972b;
    border-radius: .75rem;
    padding: 1.65rem;
    box-shadow: 0 16px 42px rgba(11, 47, 79, .08);
}

.about-final-label {
    display: inline-flex;
    color: #c9972b;
    font-size: .72rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .11em;
    margin-bottom: .7rem;
}

.about-final-purpose h2 {
    color: #0b2f4f;
    font-size: 1.38rem;
    font-weight: 860;
    line-height: 1.18;
    margin-bottom: .7rem;
}

.about-final-purpose p {
    color: #4b5f73;
    font-size: .96rem;
    line-height: 1.62;
    margin-bottom: 1rem;
    text-align: justify;
}

.about-final-purpose-list {
    display: grid;
    gap: .6rem;
    margin-bottom: 1rem;
}

.about-final-purpose-list div {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    padding: .65rem .75rem;
    background: #f8fafc;
    border: 1px solid rgba(11, 47, 79, .08);
    border-radius: .5rem;
}

.about-final-purpose-list i {
    color: #03ad03;
    font-size: 1rem;
    margin-top: .1rem;
}

.about-final-purpose-list span {
    color: #334155;
    font-size: .91rem;
    line-height: 1.42;
    font-weight: 600;
}

.about-final-purpose .about-corporate-stats {
    margin-top: .9rem !important;
}

.about-final-section {
    padding: 4.2rem 0 !important;
    background: #ffffff !important;
}

.about-final-heading {
    margin-bottom: 1.9rem !important;
}

.about-final-heading h2 {
    color: #0b2f4f !important;
    font-size: clamp(1.75rem, 2.55vw, 2.5rem) !important;
}

.about-final-heading p {
    max-width: 760px;
    color: #4b5f73 !important;
}

.about-final-card {
    border-radius: .65rem !important;
    min-height: 100%;
    border: 1px solid rgba(11, 47, 79, .11) !important;
    box-shadow: 0 8px 24px rgba(11, 47, 79, .045) !important;
}

.about-final-card span {
    background: rgba(201,151,43,.14) !important;
    color: #0b2f4f !important;
}

.about-final-card h3 {
    color: #0b2f4f !important;
}

.about-final-community {
    padding: 0 0 4.6rem;
    background: #ffffff;
}

.about-final-community-box {
    background:
        linear-gradient(135deg, #f8fafc, #ffffff 55%, rgba(3,173,3,.06));
    border: 1px solid rgba(11, 47, 79, .11);
    border-left: 5px solid #03ad03;
    border-radius: .8rem;
    padding: 2.2rem;
    box-shadow: 0 12px 34px rgba(11, 47, 79, .055);
}

.about-final-community h2 {
    color: #0b2f4f;
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    font-weight: 860;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: .75rem;
}

.about-final-community p {
    color: #4b5f73;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 760px;
}

.about-final-community-actions {
    justify-content: flex-lg-end;
    margin-top: 0 !important;
}

@media (max-width: 991.98px) {
    .about-final-community-actions {
        justify-content: flex-start;
        margin-top: 1rem !important;
    }
}

@media (max-width: 767.98px) {
    .about-final-hero {
        padding: 3.4rem 0 3rem !important;
    }

    .about-final-purpose p,
    .about-final-community p {
        text-align: left;
    }

    .about-final-community-box {
        padding: 1.5rem;
    }
}


/* v27.59 - Tipografías corporativas
   Títulos: Montserrat Bold
   Subtítulos: Poppins SemiBold
   Texto: Open Sans Regular
*/
:root {
    --tp-font-title: 'Montserrat', Arial, Helvetica, sans-serif;
    --tp-font-subtitle: 'Poppins', Arial, Helvetica, sans-serif;
    --tp-font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

html,
body {
    font-family: var(--tp-font-body) !important;
    font-weight: 400;
    letter-spacing: 0;
}

p,
li,
span,
small,
label,
input,
textarea,
select,
.form-control,
.form-select,
.dropdown-item,
.table,
.card-text,
.text-muted {
    font-family: var(--tp-font-body) !important;
}

h1,
h2,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.hero-title,
.section-title,
.page-title,
.about-corporate-hero h1,
.about-final-hero h1,
.about-corporate-heading h2,
.about-final-heading h2,
.about-final-community h2,
.about-final-purpose h2,
.about-corporate-summary h2,
.about-corporate-commitment h2,
.about-peru-hero h1,
.about-peru-purpose h2,
.about-peru-community h2,
.about-peru-country h2,
.about-peru-final-cta h2,
.destination-profile-header h1,
.destination-section-title,
.business-profile-header h1,
.blog-detail-title,
.event-detail-title {
    font-family: var(--tp-font-title) !important;
    font-weight: 700 !important;
}

h3,
h4,
h5,
h6,
.card-title,
.navbar-brand,
.nav-link,
.btn,
.badge,
.section-kicker,
.about-corporate-kicker,
.about-final-label,
.about-peru-kicker,
.about-peru-card-label,
.about-corporate-card h3,
.about-final-card h3,
.about-final-purpose-list span,
.about-corporate-cta h3,
.side-card h3,
.side-card h4,
.place-section-card h2,
.place-section-card h3,
.home-highlight-card h5,
.event-card h3,
.business-card h3,
.place-card h3,
.blog-card h3,
.blog-post-card h3 {
    font-family: var(--tp-font-subtitle) !important;
    font-weight: 600 !important;
}

.fw-bold,
strong,
b {
    font-family: inherit;
}

.navbar-brand {
    font-weight: 700 !important;
    letter-spacing: -.01em;
}

.public-main-nav .nav-link {
    font-size: .94rem;
    letter-spacing: -.01em;
}

.btn {
    letter-spacing: -.01em;
}

.lead,
.about-corporate-lead,
.about-peru-lead,
.hero-subtitle {
    font-family: var(--tp-font-body) !important;
    font-weight: 400 !important;
}

/* Ajustes de lectura con Open Sans */
.about-corporate-lead,
.about-corporate-heading p,
.about-corporate-commitment p,
.about-final-community p,
.about-final-purpose p,
.about-corporate-card p,
.about-final-card p,
.destination-justified-text,
.blog-detail-content p,
.card-text {
    line-height: 1.68;
}

/* Títulos principales más limpios con Montserrat */
.about-final-hero h1,
.about-corporate-hero h1,
.hero-section h1,
.destination-profile-header h1 {
    letter-spacing: -.04em;
}

/* Subtítulos/tarjetas más modernos con Poppins */
.about-corporate-card h3,
.about-final-card h3,
.card-title,
.home-highlight-card h5 {
    letter-spacing: -.02em;
}


/* v27.60 - Tipografía corporativa final: Montserrat + Open Sans
   Títulos, subtítulos, botones y tarjetas: Montserrat
   Textos, párrafos, formularios y descripciones: Open Sans
*/
:root {
    --tp-font-title: 'Montserrat', Arial, Helvetica, sans-serif;
    --tp-font-subtitle: 'Montserrat', Arial, Helvetica, sans-serif;
    --tp-font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* Base general */
html,
body {
    font-family: var(--tp-font-body) !important;
    font-weight: 400;
}

/* Textos de lectura */
p,
li,
small,
label,
input,
textarea,
select,
.form-control,
.form-select,
.dropdown-item,
.table,
.card-text,
.text-muted,
.about-corporate-lead,
.about-final-purpose p,
.about-final-community p,
.about-corporate-card p,
.about-final-card p,
.blog-detail-content p,
.destination-justified-text {
    font-family: var(--tp-font-body) !important;
    font-weight: 400 !important;
}

/* Títulos y jerarquía visual */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.hero-title,
.section-title,
.page-title,
.card-title,
.navbar-brand,
.nav-link,
.btn,
.badge,
.section-kicker,
.about-corporate-kicker,
.about-final-label,
.about-peru-kicker,
.about-peru-card-label,
.destination-profile-header h1,
.destination-section-title,
.business-profile-header h1,
.blog-detail-title,
.event-detail-title,
.about-final-hero h1,
.about-corporate-hero h1,
.about-corporate-heading h2,
.about-final-heading h2,
.about-final-community h2,
.about-final-purpose h2,
.about-corporate-card h3,
.about-final-card h3,
.about-final-purpose-list span,
.home-highlight-card h5,
.event-card h3,
.business-card h3,
.place-card h3,
.blog-card h3,
.blog-post-card h3 {
    font-family: var(--tp-font-title) !important;
}

/* Pesos corporativos */
h1,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.hero-title,
.page-title,
.about-final-hero h1,
.about-corporate-hero h1,
.destination-profile-header h1,
.business-profile-header h1 {
    font-weight: 800 !important;
    letter-spacing: -.04em;
}

h2,
.section-title,
.about-corporate-heading h2,
.about-final-heading h2,
.about-final-community h2,
.about-final-purpose h2,
.destination-section-title {
    font-weight: 700 !important;
    letter-spacing: -.03em;
}

h3,
h4,
h5,
h6,
.card-title,
.navbar-brand,
.about-corporate-card h3,
.about-final-card h3,
.home-highlight-card h5,
.event-card h3,
.business-card h3,
.place-card h3,
.blog-card h3,
.blog-post-card h3 {
    font-weight: 700 !important;
    letter-spacing: -.02em;
}

.nav-link,
.btn,
.badge,
.section-kicker,
.about-corporate-kicker,
.about-final-label,
.about-peru-kicker,
.about-peru-card-label,
.about-final-purpose-list span {
    font-weight: 600 !important;
}

/* Lectura más limpia con Open Sans */
.about-corporate-lead,
.about-corporate-heading p,
.about-corporate-commitment p,
.about-final-community p,
.about-final-purpose p,
.about-corporate-card p,
.about-final-card p,
.blog-detail-content p,
.card-text {
    line-height: 1.68;
}

/* Ajuste fino del menú con Montserrat */
.public-main-nav .nav-link {
    font-size: .91rem !important;
    letter-spacing: -.015em;
}

.navbar-brand {
    letter-spacing: -.02em;
}

/* Botones más corporativos con Montserrat */
.btn {
    letter-spacing: -.015em;
}


/* v27.61 - Blog editorial corporativo */
.blog-editorial-hero {
    position: relative;
    overflow: hidden;
    padding: 4.2rem 0 3.6rem !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.96) 52%, rgba(255,248,235,.78)),
        radial-gradient(circle at 88% 18%, rgba(201,151,43,.18), transparent 30%),
        radial-gradient(circle at 8% 85%, rgba(3,173,3,.10), transparent 24%) !important;
    border-bottom: 1px solid rgba(11,47,79,.10);
}

.blog-editorial-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #0b2f4f, #03ad03, #c9972b);
}

.blog-editorial-eyebrow {
    color: #c9972b !important;
    font-size: .72rem !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase;
}

.blog-editorial-title {
    max-width: 760px;
    color: #0b2f4f !important;
    font-size: clamp(2.2rem, 4vw, 3.7rem) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: -.045em;
    margin-top: .7rem;
    margin-bottom: .9rem;
}

.blog-editorial-lead {
    max-width: 720px;
    color: #44586d !important;
    font-size: 1.02rem !important;
    line-height: 1.68 !important;
    margin-bottom: 0;
}

.blog-editorial-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.45rem;
}

.blog-editorial-actions .btn,
.blog-editorial-filter .btn {
    border-radius: .42rem !important;
    font-weight: 700 !important;
    padding: .62rem 1rem !important;
}

.blog-editorial-filter {
    background: #ffffff !important;
    border: 1px solid rgba(11,47,79,.12) !important;
    border-radius: .78rem !important;
    padding: 1.35rem !important;
    box-shadow: 0 16px 42px rgba(11,47,79,.075) !important;
    border-top: 4px solid #c9972b !important;
}

.blog-filter-heading {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.1rem;
}

.blog-filter-heading > span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .55rem;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    flex: 0 0 auto;
}

.blog-filter-heading h2 {
    color: #0b2f4f;
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
}

.blog-filter-heading p {
    color: #64748b;
    font-size: .86rem;
    margin: .2rem 0 0;
    line-height: 1.4;
}

.blog-editorial-filter .form-label {
    color: #0b2f4f;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    margin-bottom: .35rem;
}

.blog-editorial-filter .form-control,
.blog-editorial-filter .form-select {
    border-color: rgba(11,47,79,.16);
    border-radius: .42rem;
    font-size: .9rem;
    min-height: 40px;
}

.blog-featured-section {
    padding: 3.2rem 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(11,47,79,.08);
}

.blog-editorial-featured {
    display: grid !important;
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
    gap: 0;
    align-items: stretch;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.12);
    border-radius: .9rem !important;
    box-shadow: 0 18px 50px rgba(11,47,79,.08);
}

.blog-editorial-featured-image {
    min-height: 310px;
    background: #0b2f4f;
}

.blog-editorial-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    display: block;
}

.blog-editorial-featured-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-editorial-badge {
    background: rgba(3,173,3,.12) !important;
    color: #007a00 !important;
    border: 1px solid rgba(3,173,3,.26);
    font-weight: 700 !important;
}

.blog-editorial-featured-body h2 {
    color: #0b2f4f;
    font-size: clamp(1.65rem, 2.5vw, 2.45rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.035em;
    margin: .8rem 0 .75rem;
}

.blog-editorial-featured-body p {
    color: #4b5f73;
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

.blog-editorial-featured-body .btn {
    align-self: flex-start;
    border-radius: .42rem;
    font-weight: 700;
    padding: .68rem 1.08rem;
    margin-top: .35rem;
}

.blog-card-meta {
    color: #64748b !important;
    font-size: .82rem !important;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
}

.blog-articles-section {
    padding: 3.2rem 0 4.5rem;
    background: #f8fafc;
}

.blog-editorial-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.blog-editorial-section-head h2 {
    color: #0b2f4f;
    font-size: clamp(1.55rem, 2.3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -.035em;
    margin: .35rem 0 .3rem;
}

.blog-editorial-section-head p {
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

.blog-count-badge {
    background: #ffffff !important;
    color: #0b2f4f !important;
    border: 1px solid rgba(11,47,79,.14);
    font-weight: 700;
}

.blog-editorial-card {
    height: 100%;
    border: 1px solid rgba(11,47,79,.11) !important;
    border-radius: .75rem !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(11,47,79,.045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.blog-editorial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(11,47,79,.075);
    border-color: rgba(3,173,3,.25) !important;
}

.blog-editorial-card .blog-card-image-link img {
    width: 100%;
    height: 210px !important;
    object-fit: cover;
    display: block;
}

.blog-editorial-card .blog-card-body {
    padding: 1.15rem !important;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.blog-editorial-card h3 {
    margin-bottom: .55rem !important;
}

.blog-editorial-card h3 a {
    color: #0b2f4f !important;
    text-decoration: none;
    font-size: 1.08rem;
    line-height: 1.25;
    font-weight: 800;
}

.blog-editorial-card h3 a:hover {
    color: #03ad03 !important;
}

.blog-editorial-card p {
    color: #506174;
    font-size: .93rem;
    line-height: 1.62;
    margin: .75rem 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

.blog-editorial-card .blog-read-more {
    margin-top: auto;
    color: #03ad03 !important;
    font-weight: 700;
    text-decoration: none;
}

.blog-editorial-card .blog-read-more:hover {
    color: #009f00 !important;
}

@media (max-width: 991.98px) {
    .blog-editorial-featured {
        grid-template-columns: 1fr;
    }

    .blog-editorial-featured-image,
    .blog-editorial-featured-image img {
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .blog-editorial-hero {
        padding: 3.3rem 0 2.8rem !important;
    }

    .blog-editorial-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .blog-editorial-featured-body {
        padding: 1.35rem;
    }

    .blog-editorial-featured-body p,
    .blog-editorial-card p {
        text-align: left;
    }

    .blog-editorial-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* v27.62 - Contacto corporativo profesional */
.contact-corporate-hero {
    position: relative;
    overflow: hidden;
    padding: 3.8rem 0 3.2rem;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.96) 55%, rgba(235,247,243,.84)),
        radial-gradient(circle at 88% 22%, rgba(201,151,43,.16), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(3,173,3,.09), transparent 24%);
    border-bottom: 1px solid rgba(11,47,79,.10);
}

.contact-corporate-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #0b2f4f, #03ad03, #c9972b);
}

.contact-corporate-hero-content {
    max-width: 920px;
}

.contact-corporate-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #c9972b;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.contact-corporate-hero h1 {
    color: #0b2f4f;
    font-size: clamp(2rem, 3.2vw, 3.05rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: .75rem;
}

.contact-corporate-hero p {
    max-width: 760px;
    color: #4b5f73;
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.contact-corporate-section {
    padding: 3.6rem 0 4.8rem;
    background: #f8fafc;
}

.contact-form-card,
.contact-corporate-info {
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.12);
    border-radius: .85rem;
    box-shadow: 0 14px 38px rgba(11,47,79,.065);
}

.contact-form-card {
    padding: 1.55rem;
}

.contact-card-heading,
.contact-info-heading {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    margin-bottom: 1.25rem;
}

.contact-card-heading > span,
.contact-info-heading > span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .6rem;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    flex: 0 0 auto;
}

.contact-card-heading h2,
.contact-info-heading h2 {
    color: #0b2f4f;
    font-size: 1.28rem;
    line-height: 1.2;
    font-weight: 800;
    margin: 0;
}

.contact-card-heading p,
.contact-info-heading p {
    color: #64748b;
    line-height: 1.55;
    margin: .25rem 0 0;
    font-size: .94rem;
}

.contact-corporate-form .form-label {
    color: #0b2f4f;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: .35rem;
}

.contact-corporate-form .form-control,
.contact-corporate-form .form-select {
    border-color: rgba(11,47,79,.16);
    border-radius: .42rem;
    min-height: 42px;
    font-size: .94rem;
    background-color: #ffffff;
}

.contact-corporate-form textarea.form-control {
    min-height: 150px;
}

.contact-corporate-form .form-control:focus,
.contact-corporate-form .form-select:focus {
    border-color: rgba(3,173,3,.55);
    box-shadow: 0 0 0 .2rem rgba(3,173,3,.12);
}

.contact-form-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .35rem;
}

.contact-form-footer .btn {
    border-radius: .42rem;
    font-weight: 700;
    min-height: 46px;
    padding: .7rem 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.contact-form-footer span {
    color: #64748b;
    font-size: .88rem;
    line-height: 1.45;
}

.contact-corporate-info {
    padding: 1.55rem;
}

.contact-corporate-lines {
    display: grid;
}

.contact-line-corporate {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(11,47,79,.09);
}

.contact-line-corporate:first-child {
    padding-top: .25rem;
}

.contact-line-corporate > i {
    width: 40px;
    height: 40px;
    border-radius: .6rem;
    background: #f1f5f9;
    color: #0b2f4f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.08rem;
}

.contact-line-corporate strong {
    display: block;
    color: #0b2f4f;
    font-size: .96rem;
    font-weight: 800;
    margin-bottom: .12rem;
}

.contact-line-corporate span,
.contact-line-corporate a {
    display: block;
    color: #334155;
    font-size: .92rem;
    line-height: 1.45;
    font-weight: 600;
    text-decoration: none;
}

.contact-line-corporate a:hover {
    color: #03ad03;
}

.contact-business-corporate {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(201,151,43,.32) !important;
    border-radius: .7rem !important;
    background: linear-gradient(135deg, rgba(201,151,43,.10), rgba(255,255,255,.96)) !important;
}

.contact-business-corporate .contact-business-icon {
    width: 40px;
    height: 40px;
    border-radius: .6rem;
    background: rgba(201,151,43,.16);
    color: #c9972b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.contact-business-corporate strong {
    color: #0b2f4f;
    font-size: .98rem;
    font-weight: 800;
}

.contact-business-corporate span:not(.contact-business-icon) {
    color: #506174;
    font-size: .9rem;
    line-height: 1.55;
}

.contact-corporate-info .btn-outline-success {
    border-radius: .42rem;
    font-weight: 700;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .contact-corporate-hero {
        padding: 3.1rem 0 2.6rem;
    }

    .contact-corporate-section {
        padding: 2.8rem 0 3.6rem;
    }

    .contact-form-card,
    .contact-corporate-info {
        padding: 1.25rem;
    }

    .contact-form-footer .btn {
        width: 100%;
        justify-content: center;
    }
}


/* v27.63 - Tienda turística comercial y profesional */
.shop-pro-hero {
    position: relative;
    overflow: hidden;
    padding: 4.8rem 0 4.4rem !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.97), rgba(248,250,252,.96) 52%, rgba(255,248,235,.82)),
        radial-gradient(circle at 86% 22%, rgba(201,151,43,.20), transparent 30%),
        radial-gradient(circle at 8% 86%, rgba(3,173,3,.10), transparent 25%) !important;
    border-bottom: 1px solid rgba(11,47,79,.10);
}

.shop-pro-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #0b2f4f, #03ad03, #c9972b);
}

.shop-pro-label {
    color: #0f766e !important;
    font-size: .72rem !important;
    letter-spacing: .13em !important;
    font-weight: 700 !important;
}

.shop-pro-hero h1 {
    max-width: 840px;
    color: #0b2f4f !important;
    font-size: clamp(2.25rem, 4vw, 3.75rem) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: -.045em;
    margin: .75rem 0 1rem;
}

.shop-pro-hero p {
    max-width: 760px;
    color: #4b5f73 !important;
    font-size: 1.02rem !important;
    line-height: 1.68;
}

.shop-pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.45rem;
}

.shop-pro-actions .btn {
    border-radius: .42rem !important;
    font-weight: 700 !important;
    padding: .72rem 1.08rem !important;
}

.shop-pro-purpose-card {
    background: #ffffff !important;
    border: 1px solid rgba(11,47,79,.12) !important;
    border-top: 4px solid #c9972b !important;
    border-radius: .85rem !important;
    padding: 1.65rem !important;
    box-shadow: 0 16px 42px rgba(11,47,79,.075) !important;
}

.shop-pro-card-kicker {
    color: #c9972b;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: inline-flex;
    margin-bottom: .65rem;
}

.shop-pro-purpose-card h2 {
    color: #0b2f4f !important;
    font-size: 1.45rem !important;
    line-height: 1.16;
    font-weight: 800;
    margin-bottom: .75rem;
}

.shop-pro-purpose-card p {
    color: #506174 !important;
    font-size: .96rem !important;
    line-height: 1.62;
    text-align: justify;
}

.shop-pro-purpose-card .shop-purpose-icons {
    gap: .5rem;
}

.shop-pro-purpose-card .shop-purpose-icons span {
    background: #f8fafc !important;
    border: 1px solid rgba(11,47,79,.10);
    color: #0b2f4f !important;
    border-radius: 2rem;
    padding: .42rem .65rem;
    font-weight: 700;
}

.shop-benefits-section {
    padding: 1.25rem 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(11,47,79,.08);
}

.shop-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}

.shop-benefits-grid div {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .85rem 1rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .65rem;
    background: #f8fafc;
}

.shop-benefits-grid i {
    color: #03ad03;
    font-size: 1.1rem;
}

.shop-benefits-grid span {
    color: #0b2f4f;
    font-weight: 700;
    font-size: .92rem;
    line-height: 1.3;
}

.shop-highlight-section {
    padding: 3.4rem 0 1.5rem;
    background: #ffffff;
}

.shop-pro-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shop-pro-section-head h2 {
    color: #0b2f4f !important;
    font-size: clamp(1.6rem, 2.5vw, 2.35rem) !important;
    font-weight: 800 !important;
    letter-spacing: -.035em;
    margin: .35rem 0 .3rem;
}

.shop-pro-section-head p {
    color: #64748b !important;
    margin: 0;
    line-height: 1.55;
}

.shop-highlight-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.shop-highlight-card {
    display: block;
    padding: 1.25rem 1rem;
    border: 1px solid rgba(11,47,79,.11);
    border-radius: .75rem;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(11,47,79,.045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.shop-highlight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(3,173,3,.25);
    box-shadow: 0 14px 32px rgba(11,47,79,.075);
}

.shop-highlight-card i {
    width: 42px;
    height: 42px;
    border-radius: .6rem;
    background: rgba(201,151,43,.14);
    color: #0b2f4f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: .9rem;
}

.shop-highlight-card span {
    display: block;
    color: #0b2f4f;
    font-weight: 800;
    line-height: 1.25;
}

.shop-highlight-card small {
    display: block;
    color: #03ad03;
    font-weight: 700;
    margin-top: .35rem;
}

.shop-catalog-section {
    padding-top: 2.5rem !important;
    background: #f8fafc !important;
}

.shop-pro-filter {
    background: #ffffff !important;
    border: 1px solid rgba(11,47,79,.12) !important;
    border-radius: .85rem !important;
    box-shadow: 0 12px 34px rgba(11,47,79,.055) !important;
    padding: 1rem !important;
}

.shop-pro-filter .form-label {
    color: #0b2f4f;
    font-weight: 700;
    font-size: .76rem;
    margin-bottom: .35rem;
}

.shop-pro-filter .form-control,
.shop-pro-filter .form-select {
    border-color: rgba(11,47,79,.15);
    border-radius: .42rem;
    min-height: 44px;
    font-size: .92rem;
}

.shop-pro-filter .form-control:focus,
.shop-pro-filter .form-select:focus {
    border-color: rgba(3,173,3,.55);
    box-shadow: 0 0 0 .2rem rgba(3,173,3,.12);
}

.shop-clear-filters {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #03ad03;
    font-weight: 700;
    text-decoration: none;
}

.shop-clear-filters:hover {
    color: #009f00;
}

.shop-pro-product-card {
    border: 1px solid rgba(11,47,79,.11) !important;
    border-radius: .75rem !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(11,47,79,.045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.shop-pro-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(3,173,3,.24) !important;
    box-shadow: 0 14px 34px rgba(11,47,79,.075);
}

.shop-pro-product-card .shop-product-img img {
    height: 210px !important;
    object-fit: cover;
}

.shop-pro-product-card .shop-product-img span {
    background: rgba(11,47,79,.88) !important;
    color: #ffffff !important;
    border-radius: 2rem;
    font-weight: 700;
}

.shop-pro-product-card .shop-product-body {
    padding: 1.15rem !important;
    display: flex;
    flex-direction: column;
}

.shop-pro-product-card .shop-product-body small {
    color: #64748b !important;
    font-weight: 700;
}

.shop-pro-product-card h3 a {
    color: #0b2f4f !important;
    font-weight: 800;
    text-decoration: none;
}

.shop-pro-product-card h3 a:hover {
    color: #03ad03 !important;
}

.shop-pro-product-card p {
    color: #506174;
    font-size: .92rem;
    line-height: 1.58;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

.shop-pro-product-card .shop-product-meta strong {
    color: #0b2f4f !important;
    font-size: 1.15rem;
}

.shop-empty-state-pro {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.4rem;
    background: #ffffff;
    border: 1px dashed rgba(11,47,79,.22);
    border-radius: .85rem;
    box-shadow: 0 8px 24px rgba(11,47,79,.035);
}

.shop-empty-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: .75rem;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}

.shop-empty-state-pro h3 {
    color: #0b2f4f;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: .3rem;
}

.shop-empty-state-pro p {
    color: #64748b;
    margin-bottom: .9rem;
    line-height: 1.55;
}

.shop-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.shop-empty-actions .btn {
    border-radius: .42rem;
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .shop-highlight-grid,
    .shop-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .shop-pro-hero {
        padding: 3.4rem 0 3rem !important;
    }

    .shop-pro-actions .btn,
    .shop-pro-section-head .btn {
        width: 100%;
        justify-content: center;
    }

    .shop-pro-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-highlight-grid,
    .shop-benefits-grid {
        grid-template-columns: 1fr;
    }

    .shop-empty-state-pro {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-empty-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .shop-pro-purpose-card p,
    .shop-pro-product-card p {
        text-align: left;
    }
}


/* v27.64 - Franja de identidad visual debajo del menú público */
    width: 100%;
    height: 6px;
    display: grid;
    grid-template-columns: 1.2fr 1fr .9fr;
    background: #0b2f4f;
    box-shadow: 0 1px 0 rgba(11, 47, 79, .08);
    position: relative;
    z-index: 1020;
}

    background: #0b2f4f;
}

    background: #03ad03;
}

    background: #c9972b;
}

@media (max-width: 767.98px) {
        height: 4px;
        grid-template-columns: 1fr 1fr 1fr;
    }
}


    display: none !important;
}

@media (max-width: 767.98px) {
        height: 4px;
        background: linear-gradient(
            90deg,
            #0b2f4f 0%,
            #03ad03 55%,
            #c9972b 100%
        ) !important;
    }
}




/* Evita cualquier renderizado interno residual */
/* Si el menú público usa contenedor sticky/fixed, la franja queda unida visualmente */
nav + /* Previene dobles líneas visuales junto al encabezado */
.navbar,
.navbar-public,
header .navbar,
header nav {
    border-bottom-width: 0;
}

/* Ajuste móvil */
@media (max-width: 767.98px) {
    }




/* v27.68 - Franja degradada horizontal completa debajo del menú */
.public-main-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 0 !important;
    overflow: visible;
}

.public-main-nav::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0b2f4f 0%, #0b2f4f 18%, #03ad03 55%, #c9972b 100%);
    display: block;
    pointer-events: none;
    box-shadow: none;
}

.navbar,
.navbar-public,
header .navbar,
header nav {
    border-bottom-width: 0;
}

/* Evita que el pseudo-elemento se comporte como item flex */
.public-main-nav.navbar::after {
    flex: none;
}

@media (max-width: 767.98px) {
    .public-main-nav::after {
        height: 4px;
        background: linear-gradient(90deg, #0b2f4f 0%, #03ad03 55%, #c9972b 100%);
    }
}


/* v27.69 - Franja única sin duplicados en Sobre, Blog y Tienda */
.about-final-hero::before,
.blog-editorial-hero::before,
.shop-pro-hero::before {
    content: none !important;
    display: none !important;
}

/* Asegura que solo quede la franja global debajo del menú público */
.about-final-hero,
.blog-editorial-hero,
.shop-pro-hero {
    border-top: 0 !important;
    box-shadow: none !important;
}


/* v27.70 - Panel del viajero tipo dashboard corporativo */
.traveler-dashboard-hero {
    position: relative;
    overflow: hidden;
    padding: 3.8rem 0 3.3rem;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.96) 54%, rgba(255,248,235,.78)),
        radial-gradient(circle at 88% 18%, rgba(201,151,43,.16), transparent 28%),
        radial-gradient(circle at 8% 85%, rgba(3,173,3,.09), transparent 24%);
    border-bottom: 1px solid rgba(11,47,79,.10);
}

.traveler-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #c9972b;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.traveler-dashboard-hero h1 {
    color: #0b2f4f;
    font-size: clamp(2.05rem, 3.3vw, 3.2rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: .8rem;
}

.traveler-dashboard-hero p {
    max-width: 760px;
    color: #4b5f73;
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.traveler-hero-actions,
.traveler-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.35rem;
}

.traveler-hero-actions .btn,
.traveler-share-actions .btn {
    border-radius: .42rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.traveler-share-card {
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.12);
    border-top: 4px solid #c9972b;
    border-radius: .85rem;
    padding: 1.35rem;
    box-shadow: 0 14px 38px rgba(11,47,79,.065);
}

.traveler-share-head,
.traveler-side-head,
.traveler-card-heading {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.traveler-share-head > span,
.traveler-side-head > span {
    width: 40px;
    height: 40px;
    border-radius: .6rem;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.05rem;
}

.traveler-share-head h2,
.traveler-side-head h2 {
    color: #0b2f4f;
    font-size: 1.05rem;
    line-height: 1.2;
    font-weight: 800;
    margin: 0;
}

.traveler-share-head p,
.traveler-side-head p {
    color: #64748b;
    font-size: .88rem;
    line-height: 1.45;
    margin: .2rem 0 .9rem;
}

.traveler-dashboard-section {
    padding: 3.3rem 0 4.6rem;
    background: #f8fafc;
}

.traveler-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.traveler-stat-card {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .75rem;
    padding: 1.05rem;
    box-shadow: 0 8px 24px rgba(11,47,79,.045);
}

.traveler-stat-card > span {
    width: 44px;
    height: 44px;
    border-radius: .65rem;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.traveler-stat-card strong {
    display: block;
    color: #0b2f4f;
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 800;
}

.traveler-stat-card small {
    color: #64748b;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.traveler-main-card,
.traveler-side-card {
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .85rem;
    padding: 1.35rem;
    box-shadow: 0 10px 30px rgba(11,47,79,.055);
}

.traveler-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.traveler-section-head h2 {
    color: #0b2f4f;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 800;
    letter-spacing: -.035em;
    margin: .25rem 0 .25rem;
}

.traveler-section-head p {
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

.traveler-tabs {
    gap: .45rem;
}

.traveler-tabs .nav-link {
    color: #0b2f4f;
    border: 1px solid rgba(11,47,79,.12);
    background: #f8fafc;
    border-radius: .5rem;
    font-weight: 700;
}

.traveler-tabs .nav-link.active {
    color: #ffffff;
    background: #03ad03;
    border-color: #03ad03;
}

.traveler-empty-inline {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .95rem 1rem;
    background: #f8fafc;
    border: 1px dashed rgba(11,47,79,.18);
    border-radius: .65rem;
    color: #64748b;
    line-height: 1.45;
}

.traveler-empty-inline i {
    color: #03ad03;
}

.traveler-place-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .75rem;
    box-shadow: 0 8px 24px rgba(11,47,79,.04);
}

.traveler-place-img {
    display: block;
    background: #0b2f4f;
}

.traveler-place-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.traveler-place-body {
    padding: 1rem;
}

.traveler-place-badge {
    display: inline-flex;
    color: #0b2f4f;
    background: #f1f5f9;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: 2rem;
    padding: .25rem .55rem;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: .55rem;
}

.traveler-place-body h5 {
    color: #0b2f4f;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.traveler-place-body p {
    color: #64748b;
    font-size: .86rem;
    margin-bottom: .75rem;
}

.traveler-place-link,
.traveler-suggestion-card a {
    color: #03ad03;
    font-weight: 700;
    text-decoration: none;
}

.traveler-place-link:hover,
.traveler-suggestion-card a:hover {
    color: #009f00;
}

.traveler-suggestion-card {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    height: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .75rem;
    box-shadow: 0 6px 18px rgba(11,47,79,.035);
}

.traveler-suggestion-icon {
    width: 40px;
    height: 40px;
    border-radius: .6rem;
    background: rgba(201,151,43,.14);
    color: #0b2f4f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.traveler-suggestion-card h3 {
    color: #0b2f4f;
    font-size: .98rem;
    font-weight: 800;
    margin-bottom: .15rem;
}

.traveler-suggestion-card p {
    color: #64748b;
    font-size: .85rem;
    margin-bottom: .45rem;
}

.traveler-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.traveler-quick-link {
    display: block;
    padding: .9rem;
    background: #f8fafc;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .65rem;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.traveler-quick-link:hover {
    transform: translateY(-2px);
    border-color: rgba(3,173,3,.24);
    box-shadow: 0 10px 26px rgba(11,47,79,.06);
}

.traveler-quick-link i {
    color: #03ad03;
    font-size: 1.1rem;
    margin-bottom: .5rem;
    display: inline-flex;
}

.traveler-quick-link strong {
    display: block;
    color: #0b2f4f;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.25;
}

.traveler-quick-link small {
    display: block;
    color: #64748b;
    line-height: 1.35;
    margin-top: .15rem;
}

.traveler-compact-list {
    display: grid;
    gap: .65rem;
}

.traveler-compact-list a {
    display: block;
    text-decoration: none;
    padding: .85rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .65rem;
    background: #f8fafc;
}

.traveler-compact-list strong,
.traveler-progress-list span {
    color: #0b2f4f;
    font-weight: 800;
}

.traveler-compact-list small {
    display: block;
    color: #64748b;
    margin-top: .15rem;
}

.traveler-progress-list {
    display: grid;
    gap: .55rem;
}

.traveler-progress-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .8rem .9rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .6rem;
    background: #f8fafc;
}

.traveler-progress-list strong {
    color: #03ad03;
}

.traveler-achievement-list {
    display: grid;
    gap: .75rem;
}

.traveler-achievement-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .8rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .65rem;
    background: #f8fafc;
}

.traveler-achievement-item i {
    color: #c9972b;
    font-size: 1.1rem;
}

.traveler-achievement-item strong {
    display: block;
    color: #0b2f4f;
    font-size: .92rem;
}

.traveler-achievement-item small {
    display: block;
    color: #64748b;
    line-height: 1.4;
}

.traveler-muted {
    color: #64748b;
    line-height: 1.5;
}

.traveler-profile-form .form-label {
    color: #0b2f4f;
    font-size: .8rem;
    font-weight: 700;
}

.traveler-profile-form .form-control {
    border-color: rgba(11,47,79,.15);
    border-radius: .42rem;
}

.traveler-profile-form .form-control:focus {
    border-color: rgba(3,173,3,.55);
    box-shadow: 0 0 0 .2rem rgba(3,173,3,.12);
}

@media (max-width: 1199.98px) {
    .traveler-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .traveler-dashboard-hero {
        padding: 3.1rem 0 2.7rem;
    }

    .traveler-hero-actions .btn,
    .traveler-share-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .traveler-stats-grid,
    .traveler-quick-grid {
        grid-template-columns: 1fr;
    }

    .traveler-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* v27.71 - Panel del viajero compacto y mejor agrupado */
.traveler-stats-grid-strong .traveler-stat-card {
    border-top: 3px solid rgba(3,173,3,.75);
}

.traveler-quick-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}

.traveler-quick-grid-compact .traveler-quick-link {
    padding: .75rem;
}

.traveler-quick-grid-compact .traveler-quick-link i {
    margin-bottom: .35rem;
}

.traveler-quick-grid-compact .traveler-quick-link strong {
    font-size: .84rem;
}

.traveler-quick-grid-compact .traveler-quick-link small {
    font-size: .74rem;
}

.traveler-progress-card {
    padding-bottom: 1rem;
}

.traveler-progress-block {
    padding: .95rem 0;
    border-top: 1px solid rgba(11,47,79,.09);
}

.traveler-progress-block:first-of-type {
    border-top: 0;
    padding-top: .35rem;
}

.traveler-progress-block:last-child {
    padding-bottom: 0;
}

.traveler-progress-title {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .7rem;
}

.traveler-progress-title i {
    width: 30px;
    height: 30px;
    border-radius: .5rem;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.traveler-progress-title strong {
    color: #0b2f4f;
    font-size: .9rem;
    font-weight: 800;
}

.traveler-progress-list-compact {
    gap: .45rem;
}

.traveler-progress-list-compact div {
    padding: .62rem .7rem;
}

.traveler-progress-list-compact span {
    font-size: .82rem;
}

.traveler-progress-list-compact strong {
    font-size: .9rem;
}

.traveler-achievement-list-compact {
    gap: .55rem;
}

.traveler-achievement-list-compact .traveler-achievement-item {
    padding: .65rem;
}

.traveler-achievement-list-compact .traveler-achievement-item strong {
    font-size: .84rem;
}

.traveler-achievement-list-compact .traveler-achievement-item small {
    font-size: .76rem;
}

.traveler-profile-card {
    border-left: 4px solid #03ad03;
}

.traveler-profile-form-compact .form-label {
    font-size: .74rem;
    margin-bottom: .25rem;
}

.traveler-profile-form-compact .form-control {
    min-height: 36px;
    font-size: .86rem;
}

.traveler-profile-form-compact textarea.form-control {
    min-height: 86px;
}

.traveler-profile-form-compact .form-check-label {
    color: #475569;
    font-size: .82rem;
}

.traveler-suggestion-card-compact {
    padding: .85rem;
}

.traveler-suggestion-card-compact h3 {
    font-size: .9rem;
}

.traveler-suggestion-card-compact p {
    font-size: .8rem;
}

@media (max-width: 1199.98px) {
    .traveler-quick-grid-compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .traveler-quick-grid-compact {
        grid-template-columns: 1fr;
    }
}


/* v27.72 - Perfil viajero completo y pasaporte público compartible */
.traveler-profile-summary-card {
    border-left: 4px solid #03ad03;
}

.traveler-profile-summary {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .95rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .7rem;
    background: #f8fafc;
    margin-bottom: .85rem;
}

.traveler-profile-avatar,
.traveler-profile-avatar-lg,
.traveler-profile-preview-avatar,
.public-passport-avatar {
    overflow: hidden;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.traveler-profile-avatar {
    width: 58px;
    height: 58px;
    border-radius: .8rem;
    flex: 0 0 auto;
    font-size: 1.4rem;
}

.traveler-profile-avatar img,
.traveler-profile-avatar-lg img,
.traveler-profile-preview-avatar img,
.public-passport-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.traveler-profile-summary h3 {
    color: #0b2f4f;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .15rem;
}

.traveler-profile-summary p,
.traveler-profile-summary small {
    display: block;
    color: #64748b;
    margin: 0;
    line-height: 1.35;
}

.traveler-profile-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem .85rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .65rem;
    margin-bottom: 1rem;
}

.traveler-profile-status span {
    color: #64748b;
    font-weight: 700;
}

.traveler-profile-hero,
.public-passport-hero {
    position: relative;
    overflow: hidden;
    padding: 3.8rem 0 3.3rem;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.96) 54%, rgba(255,248,235,.78)),
        radial-gradient(circle at 88% 18%, rgba(201,151,43,.16), transparent 28%),
        radial-gradient(circle at 8% 85%, rgba(3,173,3,.09), transparent 24%);
    border-bottom: 1px solid rgba(11,47,79,.10);
}

.traveler-profile-hero h1,
.public-passport-hero h1 {
    color: #0b2f4f;
    font-size: clamp(2.05rem, 3.3vw, 3.2rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: .8rem;
}

.traveler-profile-hero p,
.public-passport-bio {
    max-width: 780px;
    color: #4b5f73;
    font-size: 1.02rem;
    line-height: 1.65;
}

.traveler-profile-preview-card {
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.12);
    border-top: 4px solid #c9972b;
    border-radius: .85rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 14px 38px rgba(11,47,79,.065);
}

.traveler-profile-preview-avatar {
    width: 92px;
    height: 92px;
    border-radius: 1rem;
    margin: 0 auto 1rem;
    font-size: 2.2rem;
}

.traveler-profile-preview-card h2 {
    color: #0b2f4f;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.traveler-profile-preview-card p {
    color: #64748b;
    margin-bottom: .85rem;
}

.traveler-profile-public-state {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .7rem;
    background: #f8fafc;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: 2rem;
    color: #0b2f4f;
    font-size: .85rem;
    font-weight: 700;
}

.traveler-profile-edit-section,
.public-passport-section {
    padding: 3.3rem 0 4.6rem;
    background: #f8fafc;
}

.traveler-profile-edit-card {
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .85rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(11,47,79,.055);
}

.traveler-profile-avatar-editor {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .75rem;
    margin-bottom: 1rem;
}

.traveler-profile-avatar-lg {
    width: 96px;
    height: 96px;
    border-radius: 1rem;
    flex: 0 0 auto;
    font-size: 2.2rem;
}

.traveler-profile-avatar-editor small {
    display: block;
    color: #64748b;
    margin-top: .35rem;
}

.traveler-profile-edit-card .form-label {
    color: #0b2f4f;
    font-size: .8rem;
    font-weight: 700;
}

.traveler-profile-edit-card .form-control,
.traveler-profile-edit-card .form-select {
    border-color: rgba(11,47,79,.15);
    border-radius: .42rem;
}

.traveler-profile-edit-card .form-control:focus,
.traveler-profile-edit-card .form-select:focus {
    border-color: rgba(3,173,3,.55);
    box-shadow: 0 0 0 .2rem rgba(3,173,3,.12);
}

.traveler-form-block {
    margin-top: 1.35rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(11,47,79,.09);
}

.traveler-form-block h3 {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: #0b2f4f;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.traveler-form-block h3 i {
    color: #03ad03;
}

.traveler-form-block p {
    color: #64748b;
    margin-bottom: .9rem;
}

.traveler-interest-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.traveler-interest-grid label {
    cursor: pointer;
}

.traveler-interest-grid input {
    display: none;
}

.traveler-interest-grid span {
    display: inline-flex;
    align-items: center;
    padding: .45rem .72rem;
    border: 1px solid rgba(11,47,79,.13);
    border-radius: 2rem;
    background: #ffffff;
    color: #0b2f4f;
    font-size: .86rem;
    font-weight: 700;
    transition: all .18s ease;
}

.traveler-interest-grid input:checked + span {
    background: rgba(3,173,3,.12);
    border-color: rgba(3,173,3,.40);
    color: #007a00;
}

.traveler-profile-final-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(11,47,79,.09);
}

.traveler-profile-final-row .btn {
    border-radius: .42rem;
    font-weight: 700;
}

.traveler-profile-guide {
    display: grid;
    gap: .75rem;
}

.traveler-profile-guide div {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    padding: .75rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .65rem;
    background: #f8fafc;
}

.traveler-profile-guide i {
    color: #03ad03;
    margin-top: .1rem;
}

.traveler-profile-guide span {
    color: #334155;
    font-weight: 600;
    line-height: 1.45;
}

.traveler-profile-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.traveler-profile-mini-stats div {
    padding: .85rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .65rem;
    background: #f8fafc;
    text-align: center;
}

.traveler-profile-mini-stats strong {
    display: block;
    color: #0b2f4f;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.traveler-profile-mini-stats span {
    color: #64748b;
    font-size: .8rem;
    font-weight: 700;
}

.public-passport-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.public-passport-avatar {
    width: 96px;
    height: 96px;
    border-radius: 1rem;
    flex: 0 0 auto;
    font-size: 2.2rem;
}

.public-passport-tags,
.public-passport-interests,
.public-passport-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.public-passport-tags span,
.public-passport-interests span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .42rem .68rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: 2rem;
    background: #ffffff;
    color: #0b2f4f;
    font-size: .86rem;
    font-weight: 700;
}

.public-passport-interests {
    margin-top: 1rem;
}

.public-passport-interests span {
    background: rgba(3,173,3,.10);
    color: #007a00;
    border-color: rgba(3,173,3,.28);
}

.public-passport-socials {
    margin-top: 1rem;
}

.public-passport-socials a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #0b2f4f;
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: 2rem;
    padding: .42rem .7rem;
    text-decoration: none;
    font-weight: 700;
    font-size: .86rem;
}

.public-passport-socials a:hover {
    color: #03ad03;
    border-color: rgba(3,173,3,.28);
}

@media (max-width: 767.98px) {
    .traveler-profile-hero,
    .public-passport-hero {
        padding: 3.1rem 0 2.7rem;
    }

    .traveler-profile-avatar-editor,
    .public-passport-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .traveler-profile-final-row .btn {
        width: 100%;
        justify-content: center;
    }
}


/* v27.73 - Menú desplegable profesional del viajero */
.traveler-account-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: .45rem;
    padding: .45rem .7rem !important;
    border-radius: .45rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}

.traveler-account-toggle:hover,
.traveler-account-toggle.show {
    background: rgba(3,173,3,.12);
    border-color: rgba(3,173,3,.32);
}

.traveler-nav-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(3,173,3,.15);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 800;
    overflow: hidden;
    flex: 0 0 auto;
}

.traveler-nav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.traveler-nav-name {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.traveler-menu-pro {
    width: 330px;
    padding: 0;
    border: 1px solid rgba(11,47,79,.12);
    border-radius: .85rem;
    box-shadow: 0 18px 45px rgba(11,47,79,.18);
    overflow: hidden;
    margin-top: .75rem !important;
}

.traveler-menu-header {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem;
    background:
        linear-gradient(135deg, #0b2f4f, #123f63 58%, rgba(3,173,3,.72));
    color: #ffffff;
}

.traveler-menu-avatar {
    width: 52px;
    height: 52px;
    border-radius: .8rem;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    overflow: hidden;
    flex: 0 0 auto;
}

.traveler-menu-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.traveler-menu-header strong {
    display: block;
    font-size: .98rem;
    line-height: 1.25;
    font-weight: 800;
}

.traveler-menu-header span {
    display: block;
    color: rgba(255,255,255,.76);
    font-size: .78rem;
    margin-top: .15rem;
}

.traveler-menu-profile-link {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .78rem 1rem;
    color: #0b2f4f;
    background: #f8fafc;
    border-bottom: 1px solid rgba(11,47,79,.08);
    font-weight: 800;
    text-decoration: none;
}

.traveler-menu-profile-link i {
    color: #03ad03;
}

.traveler-menu-profile-link:hover {
    background: rgba(3,173,3,.10);
    color: #007a00;
}

.traveler-menu-section {
    padding: .75rem .75rem .55rem;
    border-bottom: 1px solid rgba(11,47,79,.08);
}

.traveler-menu-label {
    display: block;
    color: #c9972b;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .10em;
    margin: 0 0 .45rem .25rem;
}

.traveler-menu-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .62rem .65rem;
    border-radius: .52rem;
    color: #26384c;
    text-decoration: none;
    font-weight: 700;
    font-size: .92rem;
    line-height: 1.25;
    position: relative;
}

.traveler-menu-item i {
    width: 30px;
    height: 30px;
    border-radius: .45rem;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.traveler-menu-item:hover {
    background: #f8fafc;
    color: #007a00;
}

.traveler-menu-item em {
    margin-left: auto;
    min-width: 22px;
    height: 22px;
    border-radius: 1rem;
    background: #dc3545;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: .72rem;
    font-weight: 800;
}

.traveler-menu-footer {
    padding: .7rem .75rem;
    background: #ffffff;
}

.traveler-menu-logout {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .68rem .65rem;
    border-radius: .52rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 800;
}

.traveler-menu-logout i {
    color: #dc3545;
}

.traveler-menu-logout:hover {
    color: #b02a37;
    background: rgba(220,53,69,.08);
}

@media (max-width: 575.98px) {
    .traveler-menu-pro {
        width: min(92vw, 330px);
    }

    .traveler-nav-name {
        max-width: 110px;
    }
}


/* v27.74 - Menú usuario con altura controlada y cierre visible */
.traveler-menu-pro {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(3,173,3,.45) rgba(11,47,79,.08);
}

.traveler-menu-pro::-webkit-scrollbar {
    width: 7px;
}

.traveler-menu-pro::-webkit-scrollbar-track {
    background: rgba(11,47,79,.06);
}

.traveler-menu-pro::-webkit-scrollbar-thumb {
    background: rgba(3,173,3,.45);
    border-radius: 2rem;
}

.traveler-menu-header {
    position: sticky;
    top: 0;
    z-index: 3;
}

.traveler-menu-footer {
    position: sticky;
    bottom: 0;
    z-index: 3;
    border-top: 1px solid rgba(11,47,79,.10);
    box-shadow: 0 -10px 22px rgba(255,255,255,.92);
}

.traveler-menu-section {
    padding-top: .62rem;
    padding-bottom: .45rem;
}

.traveler-menu-item {
    padding-top: .54rem;
    padding-bottom: .54rem;
}

.traveler-menu-profile-link {
    padding-top: .68rem;
    padding-bottom: .68rem;
}

@media (max-height: 760px) {
    .traveler-menu-pro {
        max-height: calc(100vh - 78px);
    }

    .traveler-menu-header {
        padding: .82rem;
    }

    .traveler-menu-avatar {
        width: 44px;
        height: 44px;
        border-radius: .7rem;
    }

    .traveler-menu-section {
        padding: .55rem .65rem .38rem;
    }

    .traveler-menu-item {
        padding: .48rem .55rem;
        font-size: .88rem;
    }

    .traveler-menu-item i {
        width: 27px;
        height: 27px;
    }
}

@media (max-width: 575.98px) {
    .traveler-menu-pro {
        max-height: calc(100vh - 76px);
    }
}


/* v27.75 - Home premium, institucional y orientado a comunidad */
.home-hero-slider .hero { min-height: 620px; }
.home-hero-slider .hero h1 { max-width: 920px; letter-spacing: -.055em; }
.home-hero-slider .hero-subtitle { max-width: 820px; }
.home-hero-premium-card { margin-left: auto; max-width: 420px; padding: 1.55rem; border: 1px solid rgba(255,255,255,.22); border-top: 4px solid #c9972b; border-radius: .95rem; background: rgba(255,255,255,.12); backdrop-filter: blur(10px); box-shadow: 0 22px 55px rgba(0,0,0,.20); color: #ffffff; }
.home-hero-card-label { display: inline-flex; color: #f3cf69; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .65rem; }
.home-hero-premium-card h2 { color: #ffffff; font-size: 1.55rem; line-height: 1.18; font-weight: 800; margin-bottom: .75rem; }
.home-hero-premium-card p { color: rgba(255,255,255,.86); line-height: 1.6; margin-bottom: 1rem; }
.home-hero-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; }
.home-hero-card-grid span { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem .65rem; border-radius: .6rem; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.16); color: #ffffff; font-weight: 700; font-size: .88rem; }
.home-hero-card-grid i { color: #03ad03; }
.home-value-section { padding: 1.25rem 0; background: #ffffff; border-bottom: 1px solid rgba(11,47,79,.08); }
.home-value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem; }
.home-value-card { display: flex; gap: .75rem; align-items: flex-start; padding: 1rem; border: 1px solid rgba(11,47,79,.10); border-radius: .75rem; background: #f8fafc; box-shadow: 0 8px 22px rgba(11,47,79,.035); }
.home-value-card i { width: 40px; height: 40px; border-radius: .6rem; background: rgba(3,173,3,.10); color: #03ad03; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; font-size: 1.05rem; }
.home-value-card strong { display: block; color: #0b2f4f; font-weight: 800; line-height: 1.25; margin-bottom: .2rem; }
.home-value-card span { display: block; color: #64748b; font-size: .88rem; line-height: 1.45; }
.home-featured-places-section { background: linear-gradient(180deg, #ffffff, #f8fafc); }
.home-featured-places-section .section-title, .home-services-section .section-title, .home-promotions-section .section-title { color: #0b2f4f; }
.home-featured-places-section .smart-place-card, .home-services-section .business-card, .home-promotions-section .place-card { border: 1px solid rgba(11,47,79,.10) !important; border-radius: .85rem !important; overflow: hidden; box-shadow: 0 10px 28px rgba(11,47,79,.055) !important; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.home-featured-places-section .smart-place-card:hover, .home-services-section .business-card:hover, .home-promotions-section .place-card:hover { transform: translateY(-3px); border-color: rgba(3,173,3,.26) !important; box-shadow: 0 18px 42px rgba(11,47,79,.09) !important; }
.home-featured-places-section .smart-place-card img, .home-services-section .business-card img, .home-promotions-section .place-card img { height: 220px; object-fit: cover; }
.home-community-cta { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.96) 52%, rgba(255,248,235,.82)), radial-gradient(circle at 84% 20%, rgba(201,151,43,.16), transparent 28%), radial-gradient(circle at 8% 85%, rgba(3,173,3,.10), transparent 24%) !important; border-top: 1px solid rgba(11,47,79,.08); border-bottom: 1px solid rgba(11,47,79,.08); }
.home-cta-label { display: inline-flex; align-items: center; gap: .45rem; color: #c9972b; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .75rem; }
.home-community-cta h2 { color: #0b2f4f; font-size: clamp(1.8rem, 3vw, 2.65rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.15; margin-bottom: .85rem; }
.home-community-cta p { color: #4b5f73; line-height: 1.68; margin-bottom: 0; }
.home-community-points { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.1rem; }
.home-community-points span { display: inline-flex; align-items: center; gap: .4rem; color: #0b2f4f; background: #ffffff; border: 1px solid rgba(11,47,79,.10); border-radius: 2rem; padding: .45rem .7rem; font-weight: 700; font-size: .88rem; }
.home-community-points i { color: #03ad03; }
.home-community-panel { background: #ffffff; border: 1px solid rgba(11,47,79,.12); border-top: 4px solid #c9972b; border-radius: .85rem; padding: 1.35rem; box-shadow: 0 14px 38px rgba(11,47,79,.065); }
.home-community-panel h3 { color: #0b2f4f; font-size: 1.2rem; font-weight: 800; margin-bottom: .5rem; }
.home-community-panel p { color: #64748b; margin-bottom: 1rem; }
.home-editorial-section .home-highlight-card { border: 1px solid rgba(11,47,79,.10) !important; border-radius: .85rem !important; }
.home-business-cta-premium { background: linear-gradient(135deg, #0b2f4f, #123f63 55%, rgba(3,173,3,.85)) !important; }
.home-business-cta-premium h2 { letter-spacing: -.035em; }
@media (max-width: 1199.98px) { .home-value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 767.98px) { .home-hero-slider .hero { min-height: 560px; } .home-value-grid { grid-template-columns: 1fr; } .home-community-points span, .home-community-panel .btn, .home-section-heading .btn { width: 100%; justify-content: center; } }


/* v27.76 - Detalle de evento turístico profesional */
.event-pro-hero {
    position: relative;
    overflow: hidden;
    padding: 4.3rem 0 3.8rem;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.96) 54%, rgba(255,248,235,.78)),
        radial-gradient(circle at 86% 18%, rgba(201,151,43,.18), transparent 28%),
        radial-gradient(circle at 8% 88%, rgba(3,173,3,.10), transparent 24%);
    border-bottom: 1px solid rgba(11,47,79,.10);
}

.event-pro-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #c9972b;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.event-pro-hero h1 {
    color: #0b2f4f;
    font-size: clamp(2.2rem, 4vw, 3.65rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.045em;
    margin-bottom: .85rem;
}

.event-pro-hero p {
    max-width: 780px;
    color: #42576d;
    font-size: 1.08rem;
    line-height: 1.68;
    margin-bottom: 1.35rem;
}

.event-pro-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    max-width: 820px;
}

.event-pro-meta-card {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .9rem;
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .72rem;
    box-shadow: 0 8px 24px rgba(11,47,79,.045);
}

.event-pro-meta-card i {
    width: 38px;
    height: 38px;
    border-radius: .58rem;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.event-pro-meta-card span {
    display: block;
    color: #64748b;
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .1rem;
}

.event-pro-meta-card strong {
    color: #0b2f4f;
    font-size: .94rem;
    line-height: 1.35;
}

.event-pro-image-card {
    position: relative;
    overflow: hidden;
    border-radius: .95rem;
    border: 1px solid rgba(11,47,79,.12);
    box-shadow: 0 18px 50px rgba(11,47,79,.13);
    background: #0b2f4f;
}

.event-pro-image-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.event-pro-date-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    min-width: 78px;
    padding: .65rem .8rem;
    border-radius: .75rem;
    background: rgba(255,255,255,.94);
    text-align: center;
    box-shadow: 0 12px 26px rgba(11,47,79,.16);
}

.event-pro-date-badge strong {
    display: block;
    color: #0b2f4f;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.event-pro-date-badge span {
    display: block;
    color: #c9972b;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-top: .15rem;
}

.event-pro-section {
    padding: 3.2rem 0 4.6rem;
    background: #f8fafc;
}

.event-pro-card,
.event-pro-side-card {
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .85rem;
    padding: 1.45rem;
    box-shadow: 0 10px 30px rgba(11,47,79,.055);
}

.event-pro-section-head {
    margin-bottom: 1.1rem;
}

.event-pro-section-head h2 {
    color: #0b2f4f;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 800;
    letter-spacing: -.035em;
    margin: .25rem 0 .2rem;
}

.event-pro-section-head p {
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}

.event-pro-description {
    color: #334155;
    font-size: .98rem;
    line-height: 1.72;
    text-align: justify;
    margin-bottom: 1.25rem;
}

.event-pro-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.event-pro-info-item {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .95rem;
    background: #f8fafc;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .7rem;
}

.event-pro-info-item i {
    width: 36px;
    height: 36px;
    border-radius: .55rem;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.event-pro-info-item span {
    display: block;
    color: #64748b;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .18rem;
}

.event-pro-info-item strong {
    color: #0b2f4f;
    line-height: 1.4;
}

.event-pro-reasons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}

.event-pro-reasons div {
    padding: 1rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .75rem;
    background: #f8fafc;
}

.event-pro-reasons i {
    width: 42px;
    height: 42px;
    border-radius: .6rem;
    background: rgba(201,151,43,.15);
    color: #0b2f4f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .8rem;
}

.event-pro-reasons h3 {
    color: #0b2f4f;
    font-size: .98rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.event-pro-reasons p {
    color: #64748b;
    font-size: .88rem;
    line-height: 1.55;
    margin: 0;
}

.event-pro-side-head {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
}

.event-pro-side-head > span {
    width: 42px;
    height: 42px;
    border-radius: .6rem;
    background: rgba(3,173,3,.10);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.event-pro-side-head h2 {
    color: #0b2f4f;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.22;
    margin: 0;
}

.event-pro-side-head p {
    color: #64748b;
    font-size: .88rem;
    line-height: 1.45;
    margin: .2rem 0 0;
}

.event-pro-actions {
    display: grid;
    gap: .65rem;
}

.event-pro-actions .btn {
    border-radius: .45rem;
    font-weight: 800;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.event-pro-sticky {
    position: sticky;
    top: 96px;
}

.event-pro-related-list {
    display: grid;
    gap: .65rem;
}

.event-pro-related-list a {
    display: block;
    padding: .85rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .65rem;
    background: #f8fafc;
    text-decoration: none;
}

.event-pro-related-list strong {
    display: block;
    color: #0b2f4f;
    font-weight: 800;
    line-height: 1.35;
}

.event-pro-related-list span {
    display: block;
    color: #64748b;
    font-size: .85rem;
    margin-top: .15rem;
}

.event-pro-related-list a:hover {
    border-color: rgba(3,173,3,.30);
    background: rgba(3,173,3,.07);
}

.event-pro-gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.event-pro-video,
.event-pro-map {
    overflow: hidden;
    border-radius: .75rem;
    border: 1px solid rgba(11,47,79,.10);
}

@media (max-width: 991.98px) {
    .event-pro-sticky {
        position: static;
    }

    .event-pro-image-card img {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .event-pro-hero {
        padding: 3.2rem 0 2.8rem;
    }

    .event-pro-meta-grid,
    .event-pro-info-grid,
    .event-pro-reasons {
        grid-template-columns: 1fr;
    }

    .event-pro-description {
        text-align: left;
    }

    .event-pro-image-card img {
        height: 240px;
    }
}


/* v27.77 - Detalle de blog con entradilla editorial a ancho completo */
.editorial-header .editorial-lead {
    max-width: 100% !important;
    width: 100% !important;
    display: block;
    color: #26384c;
    font-size: clamp(1.05rem, 1.55vw, 1.25rem);
    line-height: 1.72;
    text-align: justify;
    text-justify: inter-word;
    margin: .9rem 0 1.15rem;
}

.editorial-header .editorial-title {
    margin-bottom: .85rem;
}

@media (max-width: 767.98px) {
    .editorial-header .editorial-lead {
        text-align: left;
        line-height: 1.62;
    }
}

/* v27.78 - Hero de detalle de eventos más impactante */
.event-pro-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(3,173,3,.08), transparent 26%), radial-gradient(circle at 82% 22%, rgba(11,47,79,.08), transparent 26%);
    pointer-events: none;
}

.event-pro-hero .container {
    position: relative;
    z-index: 1;
}

.event-pro-kicker-row {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-wrap: wrap;
    margin-bottom: .55rem;
}

.event-pro-status-badge {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    padding: .4rem .72rem;
    border-radius: 999px;
    background: rgba(11,47,79,.08);
    color: #0b2f4f;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .03em;
}

.event-pro-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin: -.1rem 0 1rem;
}

.event-pro-pill-row span {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    padding: .5rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(11,47,79,.10);
    color: #30475f;
    font-size: .88rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(11,47,79,.05);
}

.event-pro-pill-row i {
    color: #03ad03;
}

.event-pro-meta-card {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.event-pro-meta-card:hover {
    transform: translateY(-2px);
    border-color: rgba(3,173,3,.22);
    box-shadow: 0 14px 28px rgba(11,47,79,.08);
}

.event-pro-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.15rem;
}

.event-pro-hero-actions .btn {
    min-height: 46px;
    border-radius: .58rem;
    padding-inline: 1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
}

.event-pro-image-card {
    min-height: 360px;
}

.event-pro-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,47,79,.04), rgba(11,47,79,.18) 60%, rgba(11,47,79,.38));
    pointer-events: none;
}

.event-pro-image-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    max-width: calc(100% - 2rem);
    padding: .7rem .85rem;
    border-radius: .8rem;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.7);
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 28px rgba(11,47,79,.15);
}

.event-pro-image-label span {
    display: block;
    color: #03ad03;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .12rem;
}

.event-pro-image-label strong {
    display: block;
    color: #0b2f4f;
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.3;
}

@media (max-width: 767.98px) {
    .event-pro-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .event-pro-pill-row {
        gap: .55rem;
    }

    .event-pro-pill-row span,
    .event-pro-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .event-pro-image-label {
        left: .85rem;
        right: .85rem;
        max-width: none;
    }
}


/* v27.79 - Tienda con checkout seguro para usuarios registrados */
.checkout-account-notice {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem;
    margin-bottom: 1.1rem;
    border: 1px solid rgba(3,173,3,.22);
    border-radius: .75rem;
    background: linear-gradient(135deg, rgba(3,173,3,.08), rgba(255,255,255,.95));
}

.checkout-account-notice > i {
    width: 42px;
    height: 42px;
    border-radius: .6rem;
    background: rgba(3,173,3,.12);
    color: #03ad03;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.15rem;
}

.checkout-account-notice strong {
    display: block;
    color: #0b2f4f;
    font-weight: 800;
    line-height: 1.25;
}

.checkout-account-notice span {
    display: block;
    color: #64748b;
    font-size: .9rem;
    margin-top: .18rem;
}

.cart-login-note {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .68rem .85rem;
    margin: .4rem 0 1rem;
    border: 1px solid rgba(3,173,3,.18);
    border-radius: .65rem;
    background: rgba(3,173,3,.07);
    color: #0b2f4f;
    font-weight: 700;
    font-size: .9rem;
}

.cart-login-note i {
    color: #03ad03;
}

@media (max-width: 767.98px) {
    .checkout-account-notice {
        align-items: flex-start;
    }

    .cart-login-note {
        width: 100%;
    }
}


/* v27.80 - Carrito compacto y más profesional */
.cart-card--compact {
    background: #fff;
    border: 1px solid rgba(11, 47, 79, .08);
    border-radius: 1rem;
    padding: 1rem 1rem 1.1rem;
    box-shadow: 0 18px 36px rgba(11, 47, 79, .06);
}

.cart-table {
    margin-bottom: 0;
}

.cart-table thead th {
    color: #64748b;
    font-size: .82rem;
    letter-spacing: .03em;
    font-weight: 800;
    text-transform: uppercase;
    padding-top: .55rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(11, 47, 79, .12);
}

.cart-table tbody td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(11, 47, 79, .08);
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
}

.cart-product-thumb {
    width: 140px;
    flex: 0 0 140px;
    display: block;
    border-radius: .9rem;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(11, 47, 79, .08);
    box-shadow: 0 8px 18px rgba(11, 47, 79, .06);
}

.cart-product-thumb img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    display: block;
}

.cart-product-body {
    min-width: 0;
}

.cart-product-title {
    display: inline-block;
    color: #0b2f4f;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.35;
    text-decoration: none;
    margin-bottom: .22rem;
}

.cart-product-title:hover {
    color: #03ad03;
}

.cart-product-meta {
    color: #64748b;
    font-size: .88rem;
}

.cart-price,
.cart-subtotal {
    white-space: nowrap;
    color: #0b2f4f;
    font-weight: 700;
}

.cart-subtotal {
    font-weight: 800;
}

.cart-qty-input {
    max-width: 104px;
    min-height: 44px;
    border-radius: .7rem;
    text-align: center;
    font-weight: 700;
}

.cart-remove-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .6rem;
}

.cart-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
    margin-top: 1rem;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .85rem;
    padding: .9rem 1rem;
    border-radius: .95rem;
    background: linear-gradient(135deg, rgba(11,47,79,.04), rgba(3,173,3,.06));
    border: 1px solid rgba(11, 47, 79, .08);
}

.cart-summary span {
    display: block;
    color: #64748b;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.cart-summary strong {
    display: block;
    color: #0b2f4f;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
}

@media (max-width: 991.98px) {
    .cart-product {
        min-width: 280px;
    }

    .cart-product-thumb {
        width: 116px;
        flex-basis: 116px;
    }

    .cart-product-thumb img {
        height: 84px;
    }

    .cart-footer {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .cart-summary {
        align-items: stretch;
    }
}

@media (max-width: 767.98px) {
    .cart-card--compact {
        padding: .85rem;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tbody tr {
        border: 1px solid rgba(11, 47, 79, .08);
        border-radius: .95rem;
        padding: .9rem;
        margin-bottom: .85rem;
        background: #fff;
        box-shadow: 0 10px 24px rgba(11, 47, 79, .05);
    }

    .cart-table tbody td {
        border: none;
        padding: .3rem 0;
    }

    .cart-table tbody td.text-end {
        text-align: left !important;
        padding-top: .55rem;
    }

    .cart-product {
        align-items: flex-start;
        min-width: 0;
    }

    .cart-product-thumb {
        width: 92px;
        flex-basis: 92px;
    }

    .cart-product-thumb img {
        height: 78px;
    }

    .cart-price::before,
    .cart-subtotal::before {
        color: #94a3b8;
        font-weight: 700;
        margin-right: .35rem;
    }

    .cart-price::before {
        content: 'Precio:';
    }

    .cart-subtotal::before {
        content: 'Subtotal:';
    }

    .cart-qty-input {
        max-width: 120px;
    }
}


/* v27.83 - Tienda conectada con servicios turísticos y membresías */
.shop-business-provider {
    display: flex;
    align-items: center;
    gap: .35rem;
    flex-wrap: wrap;
    color: #0b2f4f;
    font-size: .78rem;
    font-weight: 800;
    margin: .45rem 0 .25rem;
}

.shop-business-provider i {
    color: #03ad03;
}

.shop-business-provider span {
    display: inline-flex;
    align-items: center;
    padding: .18rem .45rem;
    border-radius: 999px;
    background: rgba(3,173,3,.08);
    color: #047857;
    font-size: .7rem;
    font-weight: 800;
}

.shop-business-provider.platform {
    color: #64748b;
}


/* v27.86 - Restauración de Mis compras del viajero */
.traveler-order-stat {
    background: #fff;
    border: 1px solid rgba(11,47,79,.08);
    border-radius: 1rem;
    padding: 1.1rem;
    box-shadow: 0 12px 28px rgba(11,47,79,.055);
    height: 100%;
}

.traveler-order-stat span {
    display: block;
    color: #64748b;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .35rem;
}

.traveler-order-stat strong {
    display: block;
    color: #0b2f4f;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 900;
    line-height: 1.1;
}

.traveler-order-card {
    background: #fff;
    border: 1px solid rgba(11,47,79,.08);
    border-radius: 1rem;
    padding: 1.3rem;
    box-shadow: 0 14px 34px rgba(11,47,79,.06);
}

.traveler-order-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .7rem;
}

.traveler-order-mini-grid div,
.traveler-order-status-box {
    border: 1px solid rgba(11,47,79,.08);
    border-radius: .8rem;
    padding: .85rem;
    background: #f8fafc;
}

.traveler-order-mini-grid span,
.traveler-order-status-box span {
    display: block;
    color: #64748b;
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .2rem;
}

.traveler-order-mini-grid strong,
.traveler-order-status-box strong {
    color: #0b2f4f;
    font-weight: 900;
}

.traveler-order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(11,47,79,.08);
}

.traveler-order-item:last-child {
    border-bottom: none;
}

.traveler-order-item img {
    width: 104px;
    height: 78px;
    object-fit: cover;
    border-radius: .8rem;
    border: 1px solid rgba(11,47,79,.08);
    background: #f8fafc;
    flex: 0 0 auto;
}

.traveler-order-item h3 {
    color: #0b2f4f;
    font-size: 1.02rem;
    font-weight: 800;
    margin-bottom: .15rem;
}

.traveler-order-item p {
    color: #64748b;
    font-size: .9rem;
    margin-bottom: .45rem;
}

@media (max-width: 767.98px) {
    .traveler-order-mini-grid {
        grid-template-columns: 1fr;
    }

    .traveler-order-item {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .traveler-order-item img {
        width: 88px;
        height: 70px;
    }
}


/* v27.87 - Promociones compartibles */
.promo-public-hero,
.promo-detail-hero {
    background: radial-gradient(circle at top left, rgba(3,173,3,.24), transparent 34%),
        linear-gradient(135deg, #082942 0%, #0b5137 54%, #0b2f4f 100%);
    color: #fff;
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.promo-public-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: .45rem .8rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 1rem;
}

.promo-public-hero h1,
.promo-detail-hero h1 {
    font-size: clamp(2.1rem, 4.8vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.promo-public-hero p,
.promo-detail-hero p {
    color: rgba(255,255,255,.86);
    font-size: 1.08rem;
    max-width: 760px;
}

.promo-public-card,
.promo-detail-card {
    background: #fff;
    border: 1px solid rgba(11,47,79,.08);
    border-radius: 1.1rem;
    box-shadow: 0 16px 38px rgba(11,47,79,.08);
    overflow: hidden;
}

.promo-public-card-img {
    display: block;
    position: relative;
    height: 220px;
    overflow: hidden;
    text-decoration: none;
}

.promo-public-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.promo-public-card:hover .promo-public-card-img img {
    transform: scale(1.06);
}

.promo-public-card-img span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: #ffc107;
    color: #102033;
    font-weight: 900;
    border-radius: 999px;
    padding: .4rem .7rem;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.promo-public-card-body {
    padding: 1.2rem;
}

.promo-public-card-body > small {
    color: #03ad03;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.promo-public-card-body h2 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #0b2f4f;
    margin: .35rem 0 .45rem;
}

.promo-share-mini {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.promo-share-mini a,
.promo-share-mini button {
    border: 1px solid rgba(11,47,79,.12);
    background: #f8fafc;
    color: #0b2f4f;
    border-radius: 999px;
    padding: .36rem .62rem;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.promo-share-mini a:hover,
.promo-share-mini button:hover {
    background: #03ad03;
    color: #fff;
}

.promo-detail-breadcrumb,
.promo-detail-breadcrumb a {
    color: rgba(255,255,255,.82);
    text-decoration: none;
}

.promo-detail-discount {
    display: inline-block;
    background: #ffc107;
    color: #102033;
    font-weight: 900;
    font-size: 1.15rem;
    border-radius: 999px;
    padding: .5rem 1rem;
    margin-bottom: 1rem;
}

.promo-detail-media {
    position: relative;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 1.4rem;
    padding: .65rem;
    box-shadow: 0 18px 48px rgba(0,0,0,.24);
}

.promo-detail-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 1rem;
}

.promo-detail-status {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-weight: 900;
    border-radius: 999px;
    padding: .45rem .8rem;
    color: #fff;
}

.promo-detail-status.is-active {
    background: #03ad03;
}

.promo-detail-status.is-expired {
    background: #6c757d;
}

.promo-detail-card {
    padding: 1.4rem;
}

.promo-detail-card h2 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #0b2f4f;
    margin-bottom: 1rem;
}

.promo-detail-card h3 {
    font-size: 1.05rem;
    font-weight: 900;
    color: #0b2f4f;
    margin-bottom: .65rem;
}

.promo-detail-info {
    background: #f8fafc;
    border: 1px solid rgba(11,47,79,.08);
    border-radius: .9rem;
    padding: 1rem;
    height: 100%;
}

.promo-detail-info span {
    display: block;
    color: #64748b;
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .04em;
}

.promo-detail-info strong {
    display: block;
    color: #0b2f4f;
    margin-top: .25rem;
}

.promo-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.promo-detail-qr {
    max-width: 260px;
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(11,47,79,.1);
}

@media (max-width: 767.98px) {
    .promo-detail-media img {
        height: 260px;
    }
}


/* v27.89 - Promociones laterales responsive y sin desbordes
   Ordena fecha/negocio y acciones en dos niveles para evitar que los botones salgan de la tarjeta. */
.business-sidebar-promo-row {
    overflow: hidden;
}

.business-sidebar-promo-content {
    min-width: 0;
    overflow: hidden;
}

.business-sidebar-promo-title {
    overflow-wrap: anywhere;
}

.business-sidebar-promo-badge {
    flex: 0 0 auto;
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.business-sidebar-promo-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .45rem;
    margin-top: .45rem;
    min-width: 0;
}

.business-sidebar-promo-date {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal !important;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.business-sidebar-promo-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .35rem;
    width: 100%;
    min-width: 0;
}

.business-sidebar-promo-actions form {
    display: inline-flex;
    margin: 0;
}

.business-sidebar-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    max-width: 100%;
    min-height: 28px;
    padding: .26rem .52rem;
    line-height: 1.15;
}

@media (max-width: 575.98px) {
    .business-sidebar-promo-actions {
        justify-content: stretch;
    }

    .business-sidebar-promo-actions .business-sidebar-promo-btn,
    .business-sidebar-promo-actions form {
        flex: 1 1 auto;
    }

    .business-sidebar-promo-actions form .business-sidebar-promo-btn {
        width: 100%;
    }
}

/* v27.95 - Sistema avanzado de notificaciones */
.notification-summary .card-body {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.notification-summary span {
    display: block;
    font-size: .78rem;
    color: #64748b;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.notification-summary strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: #0f4f7c;
}
.notification-summary i {
    font-size: 2rem;
    opacity: .9;
}
.notification-filter-card .form-label {
    color: #334155;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.notification-list-pro {
    display: grid;
    gap: .85rem;
}
.notification-item-pro {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 5px solid #cbd5e1;
    border-radius: 18px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}
.notification-item-pro.is-unread {
    background: linear-gradient(135deg, #fffdf4, #fff);
    border-color: #facc15;
}
.notification-item-pro.priority-urgente { border-left-color: #dc3545; }
.notification-item-pro.priority-importante { border-left-color: #f59e0b; }
.notification-item-pro.priority-informativa { border-left-color: #0ea5e9; }
.notification-item-pro.priority-sistema { border-left-color: #64748b; }
.notification-icon-pro {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #eef6ff;
    color: #0f4f7c;
    font-size: 1.3rem;
}
.notification-content-pro h6 {
    font-weight: 800;
    color: #0f172a;
}
.notification-content-pro p {
    line-height: 1.55;
}
.notification-actions-pro {
    display: flex;
    gap: .5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.notification-topbar-dropdown .dropdown-toggle::after { margin-left: .35rem; }
.notification-topbar-menu {
    width: 340px;
    padding: .65rem;
    border: 0;
    border-radius: 16px;
}
.notification-topbar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .35rem .55rem .6rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: .35rem;
}
.notification-topbar-head a {
    font-size: .78rem;
    text-decoration: none;
    font-weight: 800;
}
.notification-topbar-item {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    border-radius: 12px;
    white-space: normal;
    padding: .7rem .55rem;
}
.notification-topbar-item i {
    color: #0f4f7c;
    margin-top: .15rem;
}
.notification-topbar-item strong,
.traveler-menu-alerts a span {
    display: block;
    font-size: .85rem;
    line-height: 1.25;
}
.notification-topbar-item small {
    display: block;
    color: #64748b;
    font-size: .72rem;
    margin-top: .15rem;
}
.traveler-menu-alerts {
    display: grid;
    gap: .35rem;
    margin-bottom: .45rem;
}
.traveler-menu-alerts a {
    display: flex;
    gap: .5rem;
    align-items: center;
    color: #0f172a;
    text-decoration: none;
    background: #fff7d6;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: .55rem .65rem;
}
.traveler-menu-alerts i { color: #b45309; }
@media (max-width: 768px) {
    .notification-item-pro { grid-template-columns: 44px 1fr; }
    .notification-actions-pro { grid-column: 1 / -1; justify-content: flex-start; }
    .notification-topbar-menu { width: min(330px, 92vw); }
}


/* v27.98 - Mapa turístico interactivo */
.map-hero-section{background:linear-gradient(135deg,#0f172a 0%,#0f766e 52%,#f59e0b 100%);color:#fff;padding:86px 0 70px;position:relative;overflow:hidden}.map-hero-section:after{content:"";position:absolute;inset:auto -12% -45% 45%;height:320px;background:rgba(255,255,255,.12);filter:blur(35px);border-radius:999px}.map-kicker{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.28);padding:8px 14px;border-radius:999px;font-weight:800;text-transform:uppercase;letter-spacing:.06em;font-size:.78rem}.map-hero-section h1{font-family:Montserrat,sans-serif;font-weight:900;font-size:clamp(2.1rem,4vw,4rem);line-height:1.03;margin:18px 0}.map-hero-section p{font-size:1.08rem;opacity:.92;max-width:760px}.map-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}.map-summary-card{background:rgba(255,255,255,.94);color:#0f172a;border-radius:28px;padding:24px;display:grid;grid-template-columns:repeat(2,1fr);gap:14px;box-shadow:0 24px 60px rgba(15,23,42,.22)}.map-summary-card div{border:1px solid #e5e7eb;border-radius:22px;padding:18px;background:#fff}.map-summary-card strong{display:block;font-size:2rem;font-weight:900;color:#0f766e}.map-summary-card span{font-weight:700;color:#64748b}.tourism-map-page{background:#f8fafc}.map-filter-panel{background:#fff;border:1px solid #e2e8f0;border-radius:24px;padding:18px;box-shadow:0 12px 32px rgba(15,23,42,.07)}.tourism-map-shell{background:#fff;border:1px solid #dbeafe;border-radius:28px;padding:12px;box-shadow:0 18px 50px rgba(15,23,42,.09);position:relative}.tourism-map-canvas{height:620px;border-radius:22px;overflow:hidden;background:#e2e8f0}.map-legend{position:absolute;z-index:400;left:28px;bottom:28px;background:#fff;border:1px solid #e5e7eb;border-radius:999px;padding:9px 14px;display:flex;gap:14px;flex-wrap:wrap;box-shadow:0 12px 28px rgba(15,23,42,.14);font-weight:800;font-size:.82rem}.legend-dot{display:inline-block;width:10px;height:10px;border-radius:50%;margin-right:5px}.legend-place{background:#0f766e}.legend-business{background:#2563eb}.legend-event{background:#dc2626}.legend-route{background:#f59e0b}.map-results-panel{background:#fff;border:1px solid #e2e8f0;border-radius:28px;padding:20px;box-shadow:0 18px 50px rgba(15,23,42,.08);height:100%}.map-results-panel h2{font-family:Montserrat,sans-serif;font-weight:900;font-size:1.25rem;margin:0}.map-results-panel p{color:#64748b;margin:0}.map-results-list{display:flex;flex-direction:column;gap:10px;max-height:545px;overflow:auto;padding-right:4px}.map-result-item{display:flex;gap:12px;padding:12px;border:1px solid #e5e7eb;border-radius:18px;cursor:pointer;transition:.18s;background:#fff}.map-result-item:hover,.map-result-item.active{border-color:#0f766e;background:#f0fdfa;transform:translateY(-1px)}.map-result-icon{width:42px;height:42px;border-radius:14px;background:#eef6ff;color:#0f766e;display:grid;place-items:center;flex:0 0 auto}.map-result-item span{display:block;font-size:.76rem;font-weight:800;text-transform:uppercase;color:#64748b}.map-result-item h3{font-size:.95rem;font-weight:900;margin:2px 0;color:#0f172a}.map-result-item p{font-size:.8rem}.tourism-div-icon{background:transparent;border:0}.tourism-div-icon span{width:34px;height:34px;border-radius:14px;color:#fff;display:grid;place-items:center;border:3px solid #fff;box-shadow:0 10px 26px rgba(15,23,42,.28)}.map-popup-card{max-width:280px}.map-popup-image{width:100%;height:100px;object-fit:cover;border-radius:12px;margin-bottom:8px}.map-popup-card span{font-size:.72rem;font-weight:800;color:#64748b;text-transform:uppercase}.map-popup-card strong{display:block;font-size:1rem;margin:2px 0;color:#111827}.map-popup-card p{font-size:.84rem;color:#475569;margin:0 0 8px}.map-inline-card{border:1px solid #e2e8f0;border-radius:24px;overflow:hidden;background:#fff;box-shadow:0 14px 34px rgba(15,23,42,.07)}.map-inline-card iframe{display:block;width:100%;height:280px;border:0}.map-inline-card-body{padding:16px}.map-inline-card-body h3{font-family:Montserrat,sans-serif;font-weight:900;font-size:1.2rem;margin:0 0 5px}.admin-map-head{background:#fff;border:1px solid #dbeafe;border-radius:26px;padding:22px;margin-bottom:18px}.admin-page-heading{display:flex;justify-content:space-between;align-items:center;gap:15px;flex-wrap:wrap}.admin-stat-card{background:#fff;border:1px solid #dbeafe;border-radius:20px;padding:18px;box-shadow:0 12px 28px rgba(15,23,42,.05)}.admin-stat-card span{font-size:.78rem;text-transform:uppercase;letter-spacing:.06em;color:#64748b;font-weight:900}.admin-stat-card strong{display:block;font-size:2rem;color:#0f5f95;font-weight:900}.admin-tourism-map .tourism-map-canvas{height:640px}.admin-map-side .map-results-list{max-height:520px}.admin-map-filter{border-color:#dbeafe}@media(max-width:991px){.tourism-map-canvas{height:460px}.map-legend{position:static;margin-top:10px;border-radius:18px}.map-summary-card{grid-template-columns:1fr 1fr}.map-results-list{max-height:360px}}@media(max-width:575px){.map-summary-card{grid-template-columns:1fr}.tourism-map-canvas{height:380px}}

/* v27.99 - Pasaporte turístico gamificado */
.traveler-stat-card-gold span,
.game-level-medal,
.game-metric-card span,
.certificate-icon {
    background: linear-gradient(135deg, #f59e0b, #facc15);
    color: #111827;
}
.game-passport-hero {
    padding: 72px 0 48px;
    background: radial-gradient(circle at top left, rgba(245,158,11,.22), transparent 35%), linear-gradient(135deg, #0f172a, #0f766e);
    color: #fff;
}
.game-passport-hero .traveler-kicker,
.game-passport-hero p { color: rgba(255,255,255,.84); }
.game-passport-hero h1 { font-weight: 900; letter-spacing: -.04em; max-width: 780px; }
.game-hero-card,
.certificate-card {
    background: rgba(255,255,255,.96);
    color: #111827;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(15,23,42,.18);
    text-align: center;
}
.game-level-medal {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    margin-bottom: 14px;
    box-shadow: 0 16px 28px rgba(245,158,11,.28);
}
.game-hero-card h2 { font-weight: 900; margin-bottom: 4px; }
.game-hero-card strong { font-size: 2rem; color: var(--tp-primary, #0f766e); }
.game-progress-bar {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
    margin: 14px 0;
}
.game-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--tp-primary, #0f766e), #f59e0b);
}
.game-metrics-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}
.game-metric-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 20px;
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 12px 34px rgba(15,23,42,.06);
}
.game-metric-card span,
.game-badge-mini-grid span {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex: 0 0 auto;
}
.game-metric-card strong { display: block; font-size: 1.45rem; font-weight: 900; }
.game-metric-card small { color: #64748b; font-weight: 700; }
.game-level-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.08);
}
.game-level-pill > i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff7ed;
    color: #d97706;
    font-size: 1.35rem;
}
.game-level-pill strong { display: block; font-weight: 900; }
.game-level-pill small { color: #64748b; font-weight: 700; }
.game-badge-mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.game-badge-mini-grid span {
    background: color-mix(in srgb, var(--badge-color, #f59e0b) 16%, white);
    color: var(--badge-color, #f59e0b);
}
.game-badge-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.game-badge-grid-compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.game-badge-card {
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 22px;
    padding: 18px;
    display: flex;
    gap: 14px;
    background: #fff;
}
.game-badge-card.locked { opacity: .68; background: #f8fafc; }
.game-badge-card > span {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    background: color-mix(in srgb, var(--badge-color, #f59e0b) 16%, white);
    color: var(--badge-color, #f59e0b);
    flex: 0 0 auto;
}
.game-badge-card h3 { font-size: 1rem; font-weight: 900; margin: 0 0 4px; }
.game-badge-card p { color: #64748b; margin: 0 0 8px; font-size: .9rem; }
.game-badge-card small { font-weight: 800; color: #0f766e; }
.game-ledger-list,
.game-level-list,
.game-ranking-list,
.game-certificate-list { display: grid; gap: 10px; }
.game-ledger-list > div,
.game-level-list > div,
.game-ranking-list > a,
.game-certificate-list > a,
.game-certificate-list > span {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
    text-decoration: none;
    color: #111827;
}
.game-ledger-list span,
.game-ranking-list em,
.game-certificate-list i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #ecfdf5;
    color: #0f766e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 900;
    flex: 0 0 auto;
}
.game-ledger-list div div,
.game-ranking-list span,
.game-certificate-list span { flex: 1; }
.game-ledger-list strong,
.game-ranking-list strong,
.game-certificate-list strong { display: block; font-weight: 900; }
.game-ledger-list small,
.game-ranking-list small,
.game-certificate-list small { color: #64748b; font-weight: 700; }
.game-ledger-list em {
    font-style: normal;
    font-weight: 900;
    color: #16a34a;
}
.game-level-list .active { background: #ecfdf5; border: 1px solid rgba(15,118,110,.18); }
.certificate-section { padding: 64px 0; background: linear-gradient(135deg, #f8fafc, #fff7ed); }
.certificate-card { max-width: 920px; margin: 0 auto; border: 8px solid #fff; position: relative; }
.certificate-card:before,
.certificate-card:after { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(245,158,11,.35); border-radius: 20px; pointer-events: none; }
.certificate-topline { letter-spacing: .28em; font-weight: 900; color: #0f766e; margin-bottom: 12px; }
.certificate-icon { width: 90px; height: 90px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 3rem; margin-bottom: 12px; }
.certificate-card h1 { font-weight: 900; font-size: clamp(2rem, 5vw, 3.8rem); color: #111827; }
.certificate-card h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; color: #0f766e; margin: 10px 0 16px; }
.certificate-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 24px 0; }
.certificate-meta span { background: #f8fafc; border-radius: 999px; padding: 9px 14px; font-size: .92rem; }
.certificate-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
@media (max-width: 992px) {
    .game-metrics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .game-badge-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .game-metrics-grid { grid-template-columns: 1fr; }
    .game-passport-hero { padding: 44px 0 28px; }
    .game-hero-card, .certificate-card { padding: 20px; border-radius: 22px; }
    .certificate-actions .btn { width: 100%; }
}
@media print {
    .navbar, .footer, .certificate-actions, .alert { display: none !important; }
    .certificate-section { background: #fff; padding: 0; }
    .certificate-card { box-shadow: none; border: 8px solid #f59e0b; }
}

/* v28.00 - Cupones y campañas turísticas */
.coupon-card,
.coupon-mini-card {
    border: 1px dashed rgba(215,25,32,.35);
    border-radius: 22px;
    padding: 20px;
    background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
    box-shadow: 0 12px 30px rgba(15,23,42,.08);
    position: relative;
    overflow: hidden;
}
.coupon-card:before,
.coupon-mini-card:before {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #f8fafc;
    border: 1px dashed rgba(215,25,32,.25);
}
.coupon-card-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.coupon-code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #111827;
    color: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 800;
    letter-spacing: .06em;
    font-size: .82rem;
}
.coupon-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.coupon-card p {
    color: #64748b;
    min-height: 48px;
}
.coupon-benefit {
    display: inline-flex;
    align-items: center;
    border-radius: 14px;
    padding: 10px 14px;
    background: rgba(22,163,74,.1);
    color: #15803d;
    font-weight: 800;
}
.coupon-mini-card {
    padding: 16px;
    min-height: 142px;
}
.coupon-mini-card strong,
.coupon-mini-card small {
    display: block;
    margin-top: 8px;
}

/* v28.01 - Planificador inteligente de viajes */
.planner-hero{background:linear-gradient(135deg,#fff7f0,#f8fafc)}
.planner-feature{display:flex;gap:.75rem;align-items:flex-start;padding:.55rem 0;color:#334155}
.planner-feature i{width:34px;height:34px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;background:#fee2e2;color:#b91c1c;flex:0 0 auto}
.planner-card-img{width:100%;height:155px;object-fit:cover}
.planner-icon-circle{width:44px;height:44px;border-radius:18px;background:#fee2e2;color:#b91c1c;display:inline-flex;align-items:center;justify-content:center;font-size:1.25rem;flex:0 0 auto}
.planner-mini-stat{background:#fff;border:1px solid #eef2f7;border-radius:1.25rem;padding:1rem;box-shadow:0 .25rem 1rem rgba(15,23,42,.06);height:100%}
.planner-mini-stat strong{display:block;font-size:1.65rem;color:#b91c1c;line-height:1}
.planner-mini-stat span{font-size:.82rem;color:#64748b}
.planner-trip-card{transition:transform .2s ease, box-shadow .2s ease}
.planner-trip-card:hover{transform:translateY(-3px);box-shadow:0 .75rem 1.75rem rgba(15,23,42,.1)!important}
.planner-smart-box .accordion-button{font-size:.92rem;font-weight:700;padding:.75rem;background:#fff}
.planner-smart-box .accordion-button:not(.collapsed){color:#991b1b;background:#fff7f7;box-shadow:none}
.planner-suggestion-row{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.55rem .35rem;border-bottom:1px solid #f1f5f9}
.planner-suggestion-row:last-child{border-bottom:0}
.planner-suggestion-row strong{display:block;font-size:.9rem;color:#0f172a}
.planner-suggestion-row span{display:block;font-size:.78rem;color:#64748b}
@media(max-width:768px){.planner-user-hero .display-6,.planner-hero .display-5{font-size:2rem}.planner-card-img{height:130px}}

/* v28.02 - Aportes multimedia de viajeros */
.community-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
}
.community-media-card {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .07);
}
.community-media-preview {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f8fafc;
    overflow: hidden;
}
.community-media-preview img,
.community-media-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.community-media-type {
    position: absolute;
    left: 12px;
    top: 12px;
    background: rgba(15, 23, 42, .78);
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}
.community-media-body {
    padding: 14px;
}
.community-media-body h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #0f172a;
}
.community-media-body p {
    color: #64748b;
    font-size: .9rem;
    margin-bottom: 8px;
}
.community-media-body small {
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.community-empty-box {
    display: flex;
    gap: 16px;
    align-items: center;
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
    border: 1px dashed rgba(215, 25, 32, .35);
    border-radius: 22px;
    padding: 22px;
}
.community-empty-box > i {
    font-size: 2.4rem;
    color: #d71920;
}
.community-empty-box h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 800;
}
.community-empty-box p {
    margin: 0;
    color: #64748b;
}
.traveler-contribution-card video,
.traveler-contribution-admin-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0f172a;
}
.traveler-contributions-page .stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .07);
    border: 1px solid rgba(15, 23, 42, .06);
}
.traveler-contributions-page .stat-card span {
    display: block;
    color: #64748b;
    font-size: .85rem;
}
.traveler-contributions-page .stat-card strong {
    font-size: 1.8rem;
    color: #0f172a;
}
@media (max-width: 576px) {
    .community-empty-box { align-items: flex-start; }
    .community-gallery-grid { grid-template-columns: 1fr; }
}


/* v28.03 - Home responsive con banners uniformes */
:root {
    --home-hero-height: clamp(560px, 43vw, 690px);
}
.home-hero-slider {
    position: relative;
    background: #0f172a;
    overflow: hidden;
}
.home-hero-slider #homeHeroCarousel,
.home-hero-slider .carousel-inner,
.home-hero-slider .carousel-item {
    height: var(--home-hero-height);
}
.home-hero-slider .carousel-item {
    overflow: hidden;
}
.home-hero-slider .hero,
.home-hero-slider .hero.hero-manageable {
    width: 100%;
    height: var(--home-hero-height);
    min-height: var(--home-hero-height);
    max-height: var(--home-hero-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
.home-hero-slider .hero .container {
    width: 100%;
}
.home-hero-slider .hero h1 {
    max-width: 760px;
    line-height: .98;
    margin-bottom: 1.05rem;
}
.home-hero-slider .hero-subtitle {
    max-width: 760px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-hero-slider .hero-search-form {
    max-width: 760px;
}
.home-hero-premium-card {
    max-width: 430px;
    margin-left: auto;
}
.home-hero-slider .carousel-fade .carousel-item {
    transition: opacity .65s ease-in-out;
}
@media (min-width: 992px) {
    .home-hero-slider .row.align-items-center {
        min-height: calc(var(--home-hero-height) - 5.5rem);
    }
}
@media (max-width: 991.98px) {
    :root { --home-hero-height: 560px; }
    .home-hero-slider .hero,
    .home-hero-slider .hero.hero-manageable {
        padding-top: 4.75rem;
        padding-bottom: 3.75rem;
        text-align: left;
    }
    .home-hero-slider .hero h1 {
        font-size: clamp(2.35rem, 8vw, 4.5rem);
    }
}
@media (max-width: 575.98px) {
    :root { --home-hero-height: 520px; }
    .home-hero-slider .hero,
    .home-hero-slider .hero.hero-manageable {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }
    .home-hero-slider .hero h1 {
        font-size: clamp(2.05rem, 11vw, 3.25rem);
        line-height: 1.02;
    }
    .home-hero-slider .hero-subtitle {
        -webkit-line-clamp: 3;
        font-size: 1rem;
    }
    .home-hero-slider .hero-search-form .form-control,
    .home-hero-slider .hero-search-form .btn {
        min-height: 48px;
        font-size: .98rem;
    }
}

/* v28.04 - Menú público optimizado y navegación agrupada */
.public-main-menu-compact {
    gap: .12rem;
}

.public-main-menu-compact .nav-link {
    display: inline-flex;
    align-items: center;
    gap: .15rem;
    font-weight: 700;
}

.public-main-nav .container {
    max-width: 1280px;
}

.public-main-nav .navbar-brand {
    flex-shrink: 0;
}

.public-nav-group .dropdown-toggle::after {
    margin-left: .35rem;
    vertical-align: .1em;
}

.public-nav-dropdown {
    min-width: 310px;
    padding: .55rem;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .22);
    overflow: hidden;
}

.public-nav-dropdown .dropdown-item {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: .7rem;
    align-items: center;
    padding: .7rem .75rem;
    border-radius: 14px;
    white-space: normal;
    color: #0f172a;
}

.public-nav-dropdown .dropdown-item i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 166, 80, .10);
    color: #007a3d;
    font-size: 1rem;
}

.public-nav-dropdown .dropdown-item strong {
    display: block;
    font-size: .92rem;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.public-nav-dropdown .dropdown-item small {
    display: block;
    margin-top: .15rem;
    color: #64748b;
    font-size: .78rem;
    line-height: 1.25;
}

.public-nav-dropdown .dropdown-item:hover,
.public-nav-dropdown .dropdown-item:focus {
    background: rgba(0, 166, 80, .08);
    color: #0f172a;
}

.public-main-nav .public-nav-search input {
    max-width: 155px;
}

@media (min-width: 992px) {
    .public-main-menu-compact .nav-link {
        font-size: .9rem !important;
        padding-left: .45rem !important;
        padding-right: .45rem !important;
    }

    .public-nav-group:hover > .public-nav-dropdown {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .public-main-nav .public-nav-search input {
        width: 0;
        max-width: 0;
        padding-left: 0;
        padding-right: 0;
        border: 0;
        margin-right: .25rem !important;
    }
}

@media (max-width: 991.98px) {
    .public-main-menu-compact {
        align-items: stretch !important;
        padding-top: .75rem;
    }

    .public-main-menu-compact .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: .7rem .35rem !important;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .public-nav-dropdown {
        min-width: auto;
        width: 100%;
        box-shadow: none;
        border-radius: 14px;
        margin-bottom: .45rem;
    }

    .public-main-nav .public-nav-search {
        width: 100%;
        margin-left: 0 !important;
    }

    .public-main-nav .public-nav-search input {
        max-width: none;
    }
}

/* v28.05 - Menú público simple institucional */
.public-main-menu-simple {
    gap: .35rem;
}

.public-main-menu-simple .nav-link {
    font-weight: 800;
    letter-spacing: -.02em;
    white-space: nowrap;
    border-radius: 999px;
    padding: .45rem .7rem !important;
}

.public-main-menu-simple .nav-link:hover,
.public-main-menu-simple .nav-link:focus {
    background: rgba(255, 255, 255, .08);
}

@media (min-width: 992px) {
    .public-main-menu-simple .nav-link {
        font-size: .9rem !important;
    }
}

@media (min-width: 1200px) {
    .public-main-menu-simple .nav-link {
        font-size: .94rem !important;
    }
}

@media (max-width: 991.98px) {
    .public-main-menu-simple {
        align-items: stretch !important;
        padding-top: .75rem;
        gap: .1rem;
    }

    .public-main-menu-simple .nav-link {
        width: 100%;
        border-radius: 14px;
        padding: .75rem .85rem !important;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
}


/* v28.06 - Mostrar / ocultar contraseña */
.password-field-wrap {
    position: relative;
}

.password-field-wrap .form-control {
    padding-right: 3.1rem;
}

.password-toggle-btn {
    position: absolute;
    top: 50%;
    right: .65rem;
    transform: translateY(-50%);
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.password-toggle-btn:hover,
.password-toggle-btn:focus {
    background: rgba(15, 23, 42, .08);
    color: #0f172a;
    outline: none;
}

.password-toggle-btn:focus-visible {
    box-shadow: 0 0 0 .18rem rgba(13, 110, 253, .22);
}

.auth-body .password-toggle-btn,
.bg-dark .password-toggle-btn {
    color: #64748b;
}

.password-field-wrap.password-visible .password-toggle-btn {
    color: var(--tp-primary, #005b96);
}

/* v28.07 - Personalización visual del Home */
.hero.hero-manageable h1 {
    color: var(--hero-title-color, #ffffff);
}
.hero.hero-manageable .hero-subtitle {
    color: var(--hero-subtitle-color, #ffffff);
}
.hero-custom-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: .45rem;
    padding: .35rem .65rem;
    font-weight: 800;
    font-size: .82rem;
    line-height: 1;
    background: var(--hero-badge-bg, #ffc107);
    color: var(--hero-badge-text, #111827);
}
.btn-hero-primary {
    background: var(--hero-button-bg, #ffc107) !important;
    border-color: var(--hero-button-border, #ffc107) !important;
    color: var(--hero-button-text, #111827) !important;
    font-weight: 800;
    box-shadow: 0 .7rem 1.4rem rgba(0,0,0,.18);
}
.btn-hero-primary:hover,
.btn-hero-primary:focus {
    background: var(--hero-button-hover-bg, var(--hero-button-bg, #f59e0b)) !important;
    border-color: var(--hero-button-hover-bg, var(--hero-button-border, #f59e0b)) !important;
    color: var(--hero-button-text, #111827) !important;
    transform: translateY(-1px);
}
.btn-hero-secondary {
    background: rgba(255,255,255,.08) !important;
    border: 1.5px solid var(--hero-secondary-border, #ffffff) !important;
    color: var(--hero-secondary-text, #ffffff) !important;
    font-weight: 800;
    backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    background: rgba(255,255,255,.18) !important;
    color: var(--hero-secondary-text, #ffffff) !important;
}

/* v28.08 - Home más limpio: se retiró la franja informativa bajo el banner */
.home-after-hero-section {
    padding-top: 2rem !important;
}
@media (max-width: 767.98px) {
    .home-after-hero-section {
        padding-top: 1.5rem !important;
    }
}

/* v28.09 - Contacto más limpio y sin doble franja */
.contact-corporate-hero::before {
    content: none !important;
    display: none !important;
}
.contact-corporate-hero {
    border-top: 0 !important;
}
.contact-corporate-info {
    display: flex;
    flex-direction: column;
}
.contact-corporate-lines .contact-line-corporate:last-child {
    border-bottom: 0;
}
/* Se oculta cualquier llamado antiguo al registro de servicios dentro de Contacto */
.contact-business-corporate,
.contact-corporate-info > a[href*="negocio/registro"] {
    display: none !important;
}

/* v28.10 - Detalle de evento optimizado: portada compacta y scroll lateral estable */
.event-pro-hero {
    padding: 2.65rem 0 2.35rem !important;
}

.event-pro-hero h1 {
    max-width: 760px;
    font-size: clamp(2.05rem, 3.35vw, 3.25rem) !important;
    line-height: 1.06 !important;
    margin-bottom: .7rem !important;
}

.event-pro-hero p {
    max-width: 720px;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    margin-bottom: .95rem !important;
}

.event-pro-kicker-row {
    margin-bottom: .35rem !important;
}

.event-pro-kicker,
.event-pro-status-badge {
    font-size: .68rem !important;
}

.event-pro-pill-row {
    gap: .5rem !important;
    margin: 0 0 .8rem !important;
}

.event-pro-pill-row span {
    padding: .4rem .68rem !important;
    font-size: .82rem !important;
}

.event-pro-meta-grid {
    gap: .65rem !important;
    max-width: 780px !important;
}

.event-pro-meta-card {
    padding: .72rem !important;
    border-radius: .62rem !important;
}

.event-pro-meta-card i {
    width: 34px !important;
    height: 34px !important;
    border-radius: .5rem !important;
}

.event-pro-meta-card span {
    font-size: .7rem !important;
}

.event-pro-meta-card strong {
    font-size: .88rem !important;
}

.event-pro-hero-actions {
    margin-top: .9rem !important;
    gap: .6rem !important;
}

.event-pro-hero-actions .btn {
    min-height: 42px !important;
    padding-inline: .9rem !important;
    border-radius: .5rem !important;
}

.event-pro-image-card {
    min-height: 305px !important;
    border-radius: .9rem !important;
}

.event-pro-image-card img {
    height: 305px !important;
    object-fit: cover !important;
}

.event-pro-image-label {
    padding: .58rem .72rem !important;
    border-radius: .68rem !important;
}

.event-pro-image-label span {
    font-size: .66rem !important;
}

.event-pro-image-label strong {
    font-size: .88rem !important;
}

.event-pro-date-badge {
    min-width: 66px !important;
    padding: .55rem .65rem !important;
    border-radius: .65rem !important;
}

.event-pro-date-badge strong {
    font-size: 1.42rem !important;
}

.event-pro-date-badge span {
    font-size: .68rem !important;
}

.event-pro-section {
    padding-top: 2.55rem !important;
}

@media (min-width: 992px) {
    .event-pro-sidebar-col {
        position: sticky;
        top: 92px;
        max-height: calc(100vh - 108px);
        overflow-y: auto;
        padding-right: .28rem;
        scrollbar-width: thin;
        scrollbar-color: rgba(11,47,79,.25) transparent;
    }

    .event-pro-sidebar-col::-webkit-scrollbar {
        width: 6px;
    }

    .event-pro-sidebar-col::-webkit-scrollbar-track {
        background: transparent;
    }

    .event-pro-sidebar-col::-webkit-scrollbar-thumb {
        background: rgba(11,47,79,.22);
        border-radius: 999px;
    }

    .event-pro-sidebar-col .event-pro-sticky {
        position: static !important;
        top: auto !important;
    }
}

@media (max-width: 991.98px) {
    .event-pro-hero {
        padding: 2.35rem 0 2.2rem !important;
    }

    .event-pro-image-card,
    .event-pro-image-card img {
        min-height: 280px !important;
        height: 280px !important;
    }

    .event-pro-sidebar-col {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .event-pro-hero {
        padding: 2rem 0 1.85rem !important;
    }

    .event-pro-hero h1 {
        font-size: clamp(1.85rem, 9vw, 2.35rem) !important;
    }

    .event-pro-meta-grid {
        gap: .55rem !important;
    }

    .event-pro-image-card,
    .event-pro-image-card img {
        min-height: 230px !important;
        height: 230px !important;
    }
}

/* v28.11 - Vigencia automática de eventos */
.event-pro-status-active {
    background: rgba(34, 197, 94, .16) !important;
    color: #166534 !important;
}
.event-pro-status-finished {
    background: rgba(100, 116, 139, .16) !important;
    color: #475569 !important;
}
.event-pro-status-cancelled {
    background: rgba(220, 38, 38, .14) !important;
    color: #991b1b !important;
}
.event-pro-status-upcoming {
    background: rgba(14, 165, 233, .16) !important;
    color: #075985 !important;
}
.event-pro-finished-alert {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: .25rem 0 1rem;
    padding: .75rem 1rem;
    border-radius: 16px;
    background: rgba(100, 116, 139, .10);
    border: 1px solid rgba(100, 116, 139, .18);
    color: #475569;
    font-weight: 700;
}

/* v28.12 - Eventos creados por servicios turísticos */
.event-organizer-public-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.26);
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    color: #fff;
    max-width: 620px;
}
.event-organizer-public-card > i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,.18);
    font-size: 1.25rem;
    flex: 0 0 auto;
}
.event-organizer-public-card span {
    display: block;
    font-size: .78rem;
    opacity: .82;
    line-height: 1.2;
}
.event-organizer-public-card strong {
    display: block;
    font-size: .98rem;
    line-height: 1.2;
}
.event-organizer-public-card a {
    margin-left: auto;
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    padding: 6px 10px;
    border-radius: 999px;
    text-decoration: none;
    font-size: .82rem;
    white-space: nowrap;
}
.event-organizer-public-card a:hover {
    background: rgba(255,255,255,.18);
}
@media (max-width: 575.98px) {
    .event-organizer-public-card { align-items: flex-start; flex-wrap: wrap; }
    .event-organizer-public-card a { margin-left: 54px; }
}

/* v28.18 - Rediseño del panel del usuario/viajero: más ancho, visual, turístico y conectado al calendario */
.traveler-dashboard-pro {
    padding: 2.4rem 0 4.8rem;
    background:
        radial-gradient(circle at 8% 8%, rgba(3, 173, 3, .08), transparent 28%),
        radial-gradient(circle at 92% 2%, rgba(245, 158, 11, .12), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #eef6f1 100%);
}

.traveler-dashboard-pro .container-xxl {
    max-width: 1500px;
}

.traveler-hero-pro {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    padding: clamp(1.35rem, 3vw, 2.4rem);
    margin-bottom: 1.35rem;
    background:
        linear-gradient(135deg, rgba(11, 47, 79, .96), rgba(15, 118, 110, .93) 55%, rgba(3, 173, 3, .88));
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 24px 70px rgba(11, 47, 79, .20);
}

.traveler-hero-pro::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -150px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    filter: blur(2px);
    pointer-events: none;
}

.traveler-hero-pro > .row,
.traveler-hero-pro .row {
    position: relative;
    z-index: 1;
}

.traveler-hero-pro .traveler-kicker {
    color: #facc15;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: .55rem .85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.traveler-hero-pro h1 {
    color: #ffffff;
    font-size: clamp(2.35rem, 4.4vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: .98;
    margin-bottom: 1rem;
}

.traveler-hero-pro p {
    color: rgba(255, 255, 255, .88);
    max-width: 790px;
    font-size: clamp(.98rem, 1.25vw, 1.15rem);
    line-height: 1.65;
}

.traveler-hero-actions-pro .btn {
    border-radius: 999px;
    padding: .72rem 1rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .14);
}

.traveler-hero-actions-pro .btn-outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, .56);
    background: rgba(255, 255, 255, .06);
}

.traveler-passport-overview {
    background: rgba(255, 255, 255, .96);
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 1.5rem;
    padding: 1.15rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .18);
    backdrop-filter: blur(8px);
}

.traveler-passport-user {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding-bottom: .95rem;
    margin-bottom: .95rem;
    border-bottom: 1px solid #e2e8f0;
}

.traveler-avatar-pro {
    width: 68px;
    height: 68px;
    border-radius: 1.1rem;
    background: linear-gradient(135deg, #0f766e, #03ad03);
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 118, 110, .22);
}

.traveler-avatar-pro span {
    font-size: 1.65rem;
}

.traveler-passport-user strong {
    display: block;
    color: #0b2f4f;
    font-size: 1.05rem;
    font-weight: 900;
}

.traveler-passport-user small,
.traveler-passport-progress p,
.traveler-passport-progress-head span {
    color: #64748b;
}

.traveler-passport-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .86rem;
    font-weight: 800;
}

.traveler-passport-progress-head strong {
    color: #0f766e;
}

.traveler-share-mini {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: .45rem;
    margin-top: .9rem;
}

.traveler-share-mini .form-control,
.traveler-share-mini .btn {
    border-radius: .8rem;
}

.traveler-stats-grid-pro {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .9rem;
    margin-bottom: 1.45rem;
}

.traveler-stat-card-pro {
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    padding: 1.15rem;
    min-height: 114px;
    align-items: flex-start;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .07);
}

.traveler-stat-card-pro::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -42px;
    width: 108px;
    height: 108px;
    border-radius: 999px;
    background: rgba(3, 173, 3, .06);
}

.traveler-stat-card-pro > span {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    position: relative;
    z-index: 1;
}

.traveler-stat-card-pro div {
    position: relative;
    z-index: 1;
}

.traveler-stat-card-pro strong {
    font-size: 1.9rem;
    letter-spacing: -.04em;
}

.traveler-stat-card-pro small {
    font-size: .78rem;
}

.traveler-stat-card-pro em {
    display: block;
    color: #94a3b8;
    font-size: .74rem;
    font-style: normal;
    margin-top: .15rem;
}

.traveler-card-pro {
    border-radius: 1.35rem;
    border-color: rgba(15, 118, 110, .13);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .065);
}

.traveler-main-card.traveler-card-pro,
.traveler-side-card.traveler-card-pro {
    padding: clamp(1rem, 1.7vw, 1.45rem);
}

.traveler-section-head-pro {
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.traveler-section-head-pro h2 {
    font-size: clamp(1.35rem, 2.2vw, 2.15rem);
}

.traveler-tabs-pro {
    background: #f1f5f9;
    padding: .45rem;
    border-radius: 1rem;
    display: inline-flex;
}

.traveler-tabs-pro .nav-link {
    border: 0;
    border-radius: .78rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.traveler-place-card-pro,
.traveler-suggestion-card-pro,
.traveler-event-card-pro,
.traveler-quick-link-pro {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.traveler-place-card-pro:hover,
.traveler-suggestion-card-pro:hover,
.traveler-event-card-pro:hover,
.traveler-quick-link-pro:hover {
    transform: translateY(-3px);
    border-color: rgba(3, 173, 3, .25);
    box-shadow: 0 18px 38px rgba(15, 23, 42, .10);
}

.traveler-events-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.traveler-event-card-pro {
    display: grid;
    grid-template-columns: 148px 1fr;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(11, 47, 79, .10);
    border-radius: 1.05rem;
}

.traveler-event-image-pro {
    position: relative;
    display: block;
    background: #0b2f4f;
    min-height: 150px;
}

.traveler-event-image-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.traveler-event-image-pro span {
    position: absolute;
    left: .65rem;
    top: .65rem;
    background: #ffffff;
    color: #0f766e;
    border-radius: .8rem;
    padding: .35rem .55rem;
    font-size: .76rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .16);
}

.traveler-event-body-pro {
    padding: 1rem;
}

.traveler-event-body-pro small {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #0f766e;
    font-weight: 800;
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .45rem;
}

.traveler-event-body-pro h3 {
    color: #0b2f4f;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: .35rem;
}

.traveler-event-body-pro p {
    color: #64748b;
    font-size: .86rem;
    margin-bottom: .7rem;
}

.traveler-event-body-pro a,
.traveler-compact-list-pro a:hover {
    color: #03ad03;
    font-weight: 800;
    text-decoration: none;
}

.traveler-side-stack {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 86px;
}

.traveler-quick-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
}

.traveler-quick-link-pro {
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    padding: .95rem;
}

.traveler-quick-link-pro i {
    width: 38px;
    height: 38px;
    border-radius: .9rem;
    background: rgba(3, 173, 3, .10);
    align-items: center;
    justify-content: center;
    margin-bottom: .55rem;
}

.game-level-pill-pro {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.05rem;
    padding: .9rem;
}

.game-badge-mini-grid-pro {
    margin-top: .85rem;
}

.traveler-mini-card-pro .traveler-compact-list-pro a {
    border-radius: .95rem;
    background: #f8fafc;
}

.traveler-profile-summary-card-pro {
    border-left: 0;
    border-top: 4px solid #03ad03;
}

.traveler-profile-summary-pro,
.traveler-profile-status-pro {
    border-radius: 1rem;
}

.traveler-empty-pro {
    border-radius: 1rem;
    background: #f8fafc;
}

@media (max-width: 1399.98px) {
    .traveler-dashboard-pro .container-xxl { max-width: 1320px; }
    .traveler-events-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1199.98px) {
    .traveler-stats-grid-pro { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .traveler-side-stack { position: static; }
}

@media (max-width: 991.98px) {
    .traveler-dashboard-pro { padding-top: 1.35rem; }
    .traveler-hero-pro { border-radius: 1.35rem; }
    .traveler-stats-grid-pro { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
    .traveler-hero-actions-pro .btn,
    .traveler-section-head-pro .btn { width: 100%; justify-content: center; }
    .traveler-section-head-pro { display: block; }
    .traveler-section-head-pro .btn { margin-top: .85rem; }
    .traveler-tabs-pro { display: grid; width: 100%; }
    .traveler-tabs-pro .nav-item,
    .traveler-tabs-pro .nav-link { width: 100%; justify-content: center; }
    .traveler-event-card-pro { grid-template-columns: 1fr; }
    .traveler-event-image-pro { height: 190px; }
    .traveler-quick-grid-pro { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
    .traveler-dashboard-pro .container-xxl { padding-left: .9rem; padding-right: .9rem; }
    .traveler-stats-grid-pro { grid-template-columns: 1fr; }
    .traveler-share-mini { grid-template-columns: 1fr; }
    .traveler-share-mini .btn { width: 100%; justify-content: center; }
}

/* v28.19 - Panel comercial del negocio turístico */
.business-sidebar-nav .business-nav-section {
    color: rgba(255, 255, 255, .42);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: .95rem .65rem .35rem;
}
.business-sidebar-nav hr {
    border-color: rgba(255, 255, 255, .16);
    margin: 1rem .35rem;
}
.business-dashboard-pro {
    --business-dark: #0b1728;
    --business-blue: #0f5f95;
    --business-green: #03ad03;
    --business-soft: #f8fafc;
    --business-border: #e2e8f0;
    color: var(--business-dark);
}
.business-alert-pro {
    border-radius: 1.1rem;
    border: 1px solid rgba(245, 158, 11, .28);
}
.business-hero-pro {
    position: relative;
    overflow: hidden;
    border-radius: 1.65rem;
    background: linear-gradient(135deg, #0b1728 0%, #0f5f95 52%, #03ad03 100%);
    color: #fff;
    padding: clamp(1.35rem, 2.7vw, 2.25rem);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .18);
}
.business-hero-pro::before,
.business-hero-pro::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    filter: blur(20px);
}
.business-hero-pro::before {
    width: 260px;
    height: 260px;
    right: -90px;
    top: -120px;
}
.business-hero-pro::after {
    width: 330px;
    height: 330px;
    left: 38%;
    bottom: -210px;
}
.business-hero-pro > .row {
    position: relative;
    z-index: 1;
}
.business-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: .45rem .75rem;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.business-hero-pro h1 {
    font-family: Montserrat, sans-serif;
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: .98;
    margin: 1rem 0 .75rem;
    max-width: 820px;
}
.business-hero-pro p {
    max-width: 760px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.02rem;
    margin-bottom: 1.15rem;
}
.business-hero-actions .btn {
    border-radius: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .10);
}
.business-hero-status-card {
    background: rgba(255, 255, 255, .95);
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 1.35rem;
    padding: 1.2rem;
    box-shadow: 0 22px 46px rgba(15, 23, 42, .18);
}
.business-hero-status-card small,
.business-section-title span,
.business-stat-card-pro small {
    color: #64748b;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.business-hero-status-card strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
}
.business-membership-meter .progress {
    height: .72rem;
    border-radius: 999px;
    background: #e2e8f0;
}
.business-membership-meter .progress-bar {
    background: linear-gradient(90deg, #0f5f95, #03ad03);
    border-radius: 999px;
}
.business-hero-meta {
    display: grid;
    gap: .45rem;
    color: #475569;
    font-size: .88rem;
    font-weight: 700;
}
.business-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.business-stat-grid-pro {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}
.business-stat-card-pro {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 1.25rem;
    background: #fff;
    padding: 1rem;
    display: flex;
    gap: .85rem;
    min-height: 128px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .065);
}
.business-stat-card-pro::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -60px;
    bottom: -70px;
    border-radius: 999px;
    background: rgba(15, 95, 149, .08);
}
.business-stat-card-pro > span {
    width: 44px;
    height: 44px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
    color: var(--business-blue);
    font-size: 1.25rem;
    flex: 0 0 auto;
}
.business-stat-card-pro strong {
    display: block;
    font-size: 1.62rem;
    font-weight: 900;
    letter-spacing: -.05em;
    color: #0f172a;
    line-height: 1.08;
}
.business-stat-card-pro em {
    display: block;
    font-size: .76rem;
    font-style: normal;
    color: #94a3b8;
    margin-top: .2rem;
}
.business-stat-success > span { background: #ecfdf5; color: #059669; }
.business-stat-danger > span { background: #fff1f2; color: #e11d48; }
.business-stat-warning > span { background: #fffbeb; color: #d97706; }
.business-card-pro {
    border: 1px solid var(--business-border);
    border-radius: 1.35rem;
    background: #fff;
    padding: clamp(1rem, 1.7vw, 1.35rem);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
}
.business-section-title {
    margin-bottom: 1rem;
}
.business-section-title h2 {
    font-family: Montserrat, sans-serif;
    font-size: 1.22rem;
    font-weight: 900;
    letter-spacing: -.025em;
    color: #0f172a;
    margin: .2rem 0 .15rem;
}
.business-section-title p {
    color: #64748b;
    font-size: .88rem;
    margin: 0;
}
.business-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
}
.business-action-grid a {
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: .9rem;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    color: #0f172a;
    font-weight: 900;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .6rem;
    transition: .18s ease;
}
.business-action-grid a:hover,
.business-recommendation-list a:hover {
    transform: translateY(-2px);
    border-color: rgba(3, 173, 3, .35);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .10);
}
.business-action-grid i {
    width: 38px;
    height: 38px;
    border-radius: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 173, 3, .10);
    color: #03ad03;
}
.business-recommendation-list {
    display: grid;
    gap: .75rem;
}
.business-recommendation-list a {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: .7rem;
    padding: .82rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    color: #0f172a;
    background: #f8fafc;
    text-decoration: none;
    transition: .18s ease;
}
.business-recommendation-list i {
    width: 42px;
    height: 42px;
    border-radius: .9rem;
    display: grid;
    place-items: center;
    background: #eef6ff;
    color: #0f5f95;
    font-size: 1.1rem;
}
.business-recommendation-list strong,
.business-mini-list-pro strong {
    display: block;
    font-weight: 900;
    line-height: 1.18;
}
.business-recommendation-list small,
.business-mini-list-pro small {
    display: block;
    color: #64748b;
    font-size: .78rem;
    margin-top: .15rem;
}
.business-recommendation-list em {
    font-style: normal;
    color: #03ad03;
    font-size: .75rem;
    font-weight: 900;
}
.business-mini-list-pro {
    display: grid;
    gap: .7rem;
}
.business-mini-list-pro > div {
    display: flex;
    justify-content: space-between;
    gap: .8rem;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #f8fafc;
    padding: .85rem;
}
.business-mini-list-pro .badge {
    white-space: nowrap;
}
.business-empty-pro {
    min-height: 158px;
    border: 1px dashed #cbd5e1;
    border-radius: 1rem;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    color: #64748b;
}
.business-empty-pro i {
    font-size: 1.9rem;
    color: #0f5f95;
    margin-bottom: .5rem;
}
.business-empty-pro strong {
    color: #0f172a;
    font-weight: 900;
}
.business-tip-pro {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    border: 1px solid #bae6fd;
    background: #ecfeff;
    border-radius: 1.15rem;
    padding: 1rem;
    color: #155e75;
}
.business-tip-pro i {
    width: 38px;
    height: 38px;
    border-radius: .9rem;
    display: grid;
    place-items: center;
    background: #cffafe;
    color: #0891b2;
    flex: 0 0 auto;
}
.business-tip-pro strong {
    color: #0f172a;
}
@media (max-width: 1599.98px) {
    .business-stat-grid-pro { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1199.98px) {
    .business-stat-grid-pro { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991.98px) {
    .admin-sidebar { min-height: auto !important; }
    .business-hero-pro { border-radius: 1.25rem; }
}
@media (max-width: 575.98px) {
    .business-stat-grid-pro,
    .business-action-grid { grid-template-columns: 1fr; }
    .business-recommendation-list a { grid-template-columns: 42px 1fr; }
    .business-recommendation-list em { grid-column: 2; }
    .business-mini-list-pro > div { align-items: flex-start; flex-direction: column; }
    .business-hero-actions .btn { width: 100%; justify-content: center; }
}

/* v28.21 - Rediseño compacto y turístico del apartado Sobre nosotros */
.about-v28-21-hero {
    position: relative;
    overflow: hidden;
    padding: 3.15rem 0 3rem;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(248,250,252,.96) 52%, rgba(233,248,242,.93) 100%),
        radial-gradient(circle at 86% 18%, rgba(201,151,43,.16), transparent 30%),
        radial-gradient(circle at 10% 84%, rgba(3,173,3,.10), transparent 28%);
    border-bottom: 1px solid rgba(11, 47, 79, .10);
}

.about-v28-21-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #0b2f4f, #03ad03, #c9972b);
}

.about-v28-21-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #c9972b;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.about-v28-21-hero h1 {
    max-width: 720px;
    color: #0b2f4f;
    font-family: var(--tp-font-title, 'Montserrat', Arial, sans-serif);
    font-size: clamp(2rem, 3.25vw, 3.05rem);
    line-height: 1.10;
    font-weight: 900;
    letter-spacing: -.045em;
    margin-bottom: .9rem;
}

.about-v28-21-lead {
    max-width: 740px;
    color: #43566c;
    font-size: 1rem;
    line-height: 1.66;
    margin-bottom: 0;
    text-align: justify;
}

.about-v28-21-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.2rem;
}

.about-v28-21-actions .btn,
.about-v28-21-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border-radius: .48rem;
    font-weight: 800;
    min-height: 44px;
    padding: .66rem 1.05rem;
}

.about-v28-21-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1rem;
}

.about-v28-21-tags span {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    padding: .42rem .68rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(11, 47, 79, .10);
    color: #334155;
    font-size: .86rem;
    font-weight: 750;
    box-shadow: 0 6px 18px rgba(11, 47, 79, .045);
}

.about-v28-21-tags i {
    color: #03ad03;
}

.about-v28-21-visual {
    position: relative;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(11, 47, 79, .12);
    border-top: 4px solid #c9972b;
    border-radius: 1rem;
    padding: 1.35rem;
    box-shadow: 0 18px 46px rgba(11, 47, 79, .085);
}

.about-v28-21-visual::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -26px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(3,173,3,.08);
    z-index: 0;
}

.about-v28-21-visual > * {
    position: relative;
    z-index: 1;
}

.about-v28-21-visual-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: .95rem;
}

.about-v28-21-visual-head span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #0f766e;
    font-size: .86rem;
    font-weight: 800;
}

.about-v28-21-visual-head strong {
    color: #0b2f4f;
    font-size: .95rem;
    font-weight: 900;
}

.about-v28-21-map-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .9rem;
    padding: 1rem;
    border-radius: .85rem;
    background:
        linear-gradient(135deg, #f8fafc, #ffffff 56%, rgba(201,151,43,.10));
    border: 1px solid rgba(11, 47, 79, .10);
}

.about-v28-21-map-icon {
    width: 54px;
    height: 54px;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    background: #0b2f4f;
    color: #ffffff;
    font-size: 1.45rem;
    box-shadow: 0 10px 24px rgba(11,47,79,.18);
}

.about-v28-21-map-card h2 {
    color: #0b2f4f;
    font-size: 1.18rem;
    font-weight: 900;
    margin-bottom: .35rem;
}

.about-v28-21-map-card p {
    color: #4b5f73;
    line-height: 1.56;
    margin: 0;
    font-size: .94rem;
}

.about-v28-21-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: .85rem;
}

.about-v28-21-mini-grid div {
    min-height: 82px;
    border-radius: .78rem;
    background: #f8fafc;
    border: 1px solid rgba(11, 47, 79, .09);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: .8rem .55rem;
}

.about-v28-21-mini-grid strong {
    color: #0b2f4f;
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 950;
}

.about-v28-21-mini-grid span {
    color: #64748b;
    font-size: .78rem;
    line-height: 1.25;
    margin-top: .35rem;
    font-weight: 700;
}

.about-v28-21-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    margin-top: .9rem;
    color: #0b2f4f;
    font-size: .88rem;
    font-weight: 850;
}

.about-v28-21-route span {
    padding: .4rem .72rem;
    border-radius: 999px;
    background: rgba(3,173,3,.09);
    border: 1px solid rgba(3,173,3,.20);
}

.about-v28-21-route i {
    color: #c9972b;
}

.about-v28-21-section {
    padding: 3.15rem 0;
    background: #ffffff;
}

.about-v28-21-intro {
    background: #ffffff;
}

.about-v28-21-do {
    background: #f8fafc;
    border-top: 1px solid rgba(11, 47, 79, .08);
    border-bottom: 1px solid rgba(11, 47, 79, .08);
}

.about-v28-21-pillars {
    background: #ffffff;
}

.about-v28-21-heading {
    max-width: 860px;
}

.about-v28-21-heading.compact {
    margin-bottom: 1.55rem;
}

.about-v28-21-heading h2 {
    color: #0b2f4f;
    font-family: var(--tp-font-title, 'Montserrat', Arial, sans-serif);
    font-size: clamp(1.65rem, 2.45vw, 2.35rem);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -.035em;
    margin-bottom: .6rem;
}

.about-v28-21-heading p,
.about-v28-21-side-text {
    color: #4b5f73;
    font-size: .98rem;
    line-height: 1.65;
    text-align: justify;
    margin-bottom: 0;
}

.about-v28-21-side-text {
    background: #ffffff;
    border: 1px solid rgba(11,47,79,.09);
    border-radius: .8rem;
    padding: 1rem;
    box-shadow: 0 8px 22px rgba(11,47,79,.04);
}

.about-v28-21-card,
.about-v28-21-feature {
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(11, 47, 79, .10);
    border-radius: .85rem;
    padding: 1.25rem;
    box-shadow: 0 10px 26px rgba(11, 47, 79, .045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.about-v28-21-card:hover,
.about-v28-21-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(3, 173, 3, .24);
    box-shadow: 0 16px 34px rgba(11, 47, 79, .075);
}

.about-v28-21-principle-card > span,
.about-v28-21-card-top span,
.about-v28-21-feature > i {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: .75rem;
    background: rgba(201,151,43,.14);
    color: #0b2f4f;
    font-size: 1.15rem;
    margin-bottom: .8rem;
}

.about-v28-21-card h3,
.about-v28-21-feature h3 {
    color: #0b2f4f;
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: .5rem;
}

.about-v28-21-card p,
.about-v28-21-feature p {
    color: #506174;
    font-size: .93rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
}

.about-v28-21-card-top {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .75rem;
}

.about-v28-21-card-top span {
    flex: 0 0 auto;
    margin: 0;
}

.about-v28-21-card-top h3 {
    margin: 0;
}

.about-v28-21-audience-card {
    padding: 1.35rem;
    border-top: 4px solid rgba(3,173,3,.70);
}

.about-v28-21-audience-card.business {
    border-top-color: #c9972b;
}

.about-v28-21-audience-card.country {
    border-top-color: #0b2f4f;
}

.about-v28-21-audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    gap: .55rem;
}

.about-v28-21-audience-card li {
    position: relative;
    padding-left: 1.25rem;
    color: #43566c;
    font-size: .93rem;
    line-height: 1.46;
}

.about-v28-21-audience-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #03ad03;
    font-weight: 900;
}

.about-v28-21-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #0f766e;
    font-weight: 850;
    text-decoration: none;
}

.about-v28-21-link:hover {
    color: #03ad03;
    text-decoration: none;
}

.about-v28-21-feature {
    padding: 1.1rem;
}

.about-v28-21-feature > i {
    margin-bottom: .75rem;
    background: rgba(3,173,3,.10);
    color: #0f766e;
}

.about-v28-21-feature h3 {
    font-size: 1rem;
}

.about-v28-21-feature p {
    font-size: .9rem;
}

.about-v28-21-community {
    padding: 0 0 3.4rem;
    background: #ffffff;
}

.about-v28-21-community-box {
    background:
        linear-gradient(135deg, #0b2f4f 0%, #0f466d 50%, #0f766e 100%);
    border-radius: 1rem;
    padding: 2rem;
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(11, 47, 79, .18);
    overflow: hidden;
    position: relative;
}

.about-v28-21-community-box::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.about-v28-21-community-box .about-v28-21-kicker {
    color: #f4c04e;
}

.about-v28-21-community-box h2 {
    color: #ffffff;
    font-family: var(--tp-font-title, 'Montserrat', Arial, sans-serif);
    font-size: clamp(1.65rem, 2.65vw, 2.45rem);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -.035em;
    margin-bottom: .65rem;
}

.about-v28-21-community-box p {
    color: rgba(255,255,255,.86);
    line-height: 1.62;
    max-width: 780px;
    margin: 0;
}

.about-v28-21-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-lg-end;
    gap: .7rem;
    position: relative;
    z-index: 1;
}

.about-v28-21-cta-actions .btn-outline-success {
    background: #ffffff !important;
    color: #0f766e !important;
    border-color: #ffffff !important;
}

.about-v28-21-cta-actions .btn-outline-success:hover {
    background: rgba(255,255,255,.88) !important;
    color: #0b2f4f !important;
}

@media (max-width: 1199.98px) {
    .about-v28-21-hero h1 {
        font-size: clamp(2rem, 3vw, 2.65rem);
    }
}

@media (max-width: 991.98px) {
    .about-v28-21-hero {
        padding: 2.6rem 0 2.7rem;
    }

    .about-v28-21-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .about-v28-21-hero h1 {
        font-size: 2.15rem;
    }

    .about-v28-21-lead,
    .about-v28-21-heading p,
    .about-v28-21-side-text,
    .about-v28-21-card p {
        text-align: left;
    }

    .about-v28-21-mini-grid {
        grid-template-columns: 1fr;
    }

    .about-v28-21-map-card {
        grid-template-columns: 1fr;
    }

    .about-v28-21-section {
        padding: 2.55rem 0;
    }

    .about-v28-21-community-box {
        padding: 1.45rem;
    }

    .about-v28-21-actions .btn,
    .about-v28-21-cta-actions .btn {
        width: 100%;
    }
}

/* v28.21.1 - Contacto visible en navegación pública */
.public-nav-contact-link {
    border: 1px solid rgba(255,255,255,.38);
    border-radius: .65rem;
    padding: .42rem .75rem !important;
    margin-left: .25rem;
    color: #ffffff !important;
    background: rgba(255,255,255,.06);
}

.public-nav-contact-link:hover,
.public-nav-contact-link:focus {
    background: var(--brand-primary, #00b894);
    border-color: var(--brand-primary, #00b894);
    color: #ffffff !important;
}

.about-v28-21-actions {
    flex-wrap: wrap;
}

.about-v28-21-cta-actions .btn-outline-primary {
    background: rgba(255,255,255,.12) !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,.85) !important;
}

.about-v28-21-cta-actions .btn-outline-primary:hover {
    background: #ffffff !important;
    color: #0b2f4f !important;
}

@media (max-width: 991.98px) {
    .public-nav-contact-link {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        margin: .25rem 0;
    }
}


/* v28.21.2 - Contacto mejorado sin mapa ni sección de negocios */
.contact-whatsapp-cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    min-height: 46px;
    border-radius: .55rem;
    background: #03ad03;
    color: #ffffff !important;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(3,173,3,.18);
}
.contact-whatsapp-cta:hover {
    background: #029902;
    color: #ffffff !important;
    transform: translateY(-1px);
}
.contact-response-note {
    margin-top: .85rem;
    padding: .85rem .95rem;
    border: 1px solid rgba(11,47,79,.10);
    border-radius: .65rem;
    background: #f8fafc;
    color: #506174;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: .55rem;
}
.contact-response-note i {
    color: #0b7f7a;
    font-size: 1rem;
    margin-top: .05rem;
}
@media (max-width: 767.98px) {
    .contact-whatsapp-cta {
        min-height: 48px;
    }
}

/* v28.22 - Optimización móvil integral del sistema
   Revisión transversal: portal público, panel viajero, panel negocio, formularios y tablas. */
:root {
    --tp-mobile-safe-x: clamp(.85rem, 4vw, 1.1rem);
    --tp-mobile-radius: 1rem;
    --tp-mobile-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

img, video, canvas, iframe, svg { max-width: 100%; }
.tp-mobile-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: .9rem;
}
.tp-mobile-table-wrap > table { min-width: 720px; margin-bottom: 0; }
.table-responsive, .dataTables_wrapper { max-width: 100%; }

.public-main-nav {
    box-shadow: 0 8px 22px rgba(11, 47, 79, .12);
}
.public-main-nav .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap;
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis;
}
.public-main-nav .navbar-toggler {
    border: 1px solid rgba(255,255,255,.30);
    border-radius: .65rem;
    padding: .45rem .62rem;
}
.public-main-nav .navbar-toggler:focus { box-shadow: 0 0 0 .18rem rgba(3, 173, 3, .25); }
.public-nav-search input { min-width: 190px; }

/* Botones y formularios táctiles */
.btn, .form-control, .form-select, .input-group-text { min-height: 38px; }
textarea.form-control { min-height: 118px; }
@media (max-width: 767.98px) {
    html { scroll-padding-top: 72px; }
    body { overflow-x: hidden; }
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        padding-left: var(--tp-mobile-safe-x);
        padding-right: var(--tp-mobile-safe-x);
    }
    .public-main-nav .container { padding-left: .9rem; padding-right: .9rem; }
    .public-main-nav .navbar-brand { font-size: 1.02rem; max-width: 70vw; }
    .public-main-nav .navbar-collapse {
        margin-top: .7rem;
        padding: .75rem;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 1rem;
        background: rgba(11, 23, 40, .98);
        box-shadow: 0 18px 38px rgba(0,0,0,.22);
    }
    .public-main-menu .nav-link,
    .public-main-nav .navbar-nav .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        border-radius: .78rem;
        padding: .72rem .85rem !important;
        font-size: .96rem;
    }
    .public-main-menu .nav-link:hover,
    .public-main-nav .navbar-nav .nav-link:hover { background: rgba(255,255,255,.08); }
    .public-nav-search {
        display: grid !important;
        grid-template-columns: 1fr 48px;
        gap: .55rem;
        width: 100%;
        margin: .75rem 0 .35rem !important;
    }
    .public-nav-search input,
    .public-nav-search button {
        width: 100%;
        min-height: 44px;
        margin: 0 !important;
        border-radius: .75rem;
    }
    .traveler-menu-pro,
    .notification-topbar-menu {
        position: fixed !important;
        left: .75rem !important;
        right: .75rem !important;
        top: 70px !important;
        width: auto !important;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        transform: none !important;
        border-radius: 1rem;
    }
    .dropdown-menu-end { right: .75rem !important; }

    .hero,
    .hero.hero-manageable,
    .home-hero-slider .hero.hero-manageable,
    .shop-hero-section,
    .blog-index-hero,
    .blog-detail-hero,
    .place-detail-hero,
    .contact-corporate-hero,
    .about-v28-21-hero {
        min-height: auto !important;
        padding-top: 2.35rem !important;
        padding-bottom: 2.45rem !important;
    }
    .hero h1,
    .hero-title,
    .hero.hero-manageable h1,
    .shop-hero-section h1,
    .blog-index-hero h1,
    .blog-detail-hero h1,
    .place-detail-hero h1,
    .contact-corporate-hero h1,
    .about-v28-21-hero h1 {
        font-size: clamp(2rem, 11vw, 2.65rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -.045em;
    }
    .hero p,
    .hero-subtitle,
    .contact-corporate-hero p,
    .about-v28-21-lead {
        font-size: .98rem !important;
        line-height: 1.55 !important;
        text-align: left !important;
    }
    .hero-search-form,
    .search-panel form,
    .home-hero-slider form,
    .contact-corporate-form .row,
    .tp-mobile-form-ready .row {
        row-gap: .75rem;
    }
    .hero-search-form .input-group,
    .hero-search-form .form-control,
    .hero-search-form .btn,
    .search-panel .btn,
    .contact-form-footer .btn,
    .about-v28-21-actions .btn,
    .about-v28-21-cta-actions .btn {
        width: 100%;
        min-height: 46px;
        justify-content: center;
    }
    .hero-search-form .input-group { display: block; }
    .hero-search-form .input-group .form-control,
    .hero-search-form .input-group .btn { border-radius: .8rem !important; margin-top: .55rem; }
    .home-hero-slider .carousel-indicators { margin-bottom: .5rem; }

    .card, .purpose-card, .value-card, .contact-info-card,
    .contact-form-card, .contact-corporate-info,
    .about-v28-21-card, .about-v28-21-feature,
    .about-v28-21-visual, .about-v28-21-community-box,
    .business-card-pro, .traveler-card-pro {
        border-radius: var(--tp-mobile-radius) !important;
    }
    .row.g-4, .row.g-3, .row.g-2 { --bs-gutter-y: .9rem; }
    .footer { margin-top: 2rem !important; padding: 2.4rem 0 !important; }
    .footer .row > div { margin-bottom: .5rem; }
    .footer a { display: inline-block; padding: .16rem 0; }
}

@media (max-width: 575.98px) {
    .btn { min-height: 44px; }
    .btn-group, .d-flex.gap-2, .d-flex.gap-3, .contact-form-footer, .about-v28-21-actions, .about-v28-21-cta-actions {
        flex-wrap: wrap;
    }
    .btn-group .btn, .d-grid .btn { width: 100%; }
    .badge { white-space: normal; line-height: 1.2; }
    .list-group-item { padding: .85rem; }
    .alert { border-radius: .9rem; padding: .9rem; }
    .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 { font-size: clamp(1.8rem, 10vw, 2.45rem); }
}

/* Grillas públicas en móvil */
@media (max-width: 767.98px) {
    .home-section { padding-top: 2.4rem; padding-bottom: 2.4rem; }
    .destination-hero-highlights,
    .about-v28-21-mini-grid,
    .about-v28-21-route,
    .calendar-filter-grid,
    .smart-map-list,
    .map-summary-card,
    .traveler-events-grid,
    .business-stat-grid-pro,
    .business-action-grid {
        grid-template-columns: 1fr !important;
    }
    .about-v28-21-route { align-items: stretch; }
    .about-v28-21-route span { text-align: center; }
    .place-hero-meta,
    .destination-hero-highlights,
    .about-v28-21-tags { gap: .5rem; }
    .place-detail-hero .btn,
    .destination-profile-experience .btn { width: 100%; justify-content: center; }
    .map-summary-card { display: grid; }
    .smart-tourism-map, #placeMap, #adminMap { min-height: 320px; height: 360px !important; }
}

/* Panel viajero: lectura cómoda en celular */
@media (max-width: 767.98px) {
    .traveler-dashboard-pro { padding: 1rem 0 2.6rem; }
    .traveler-hero-pro { padding: 1.15rem; border-radius: 1.05rem; }
    .traveler-hero-pro h1 { font-size: clamp(1.85rem, 11vw, 2.35rem); }
    .traveler-passport-overview { margin-top: 1rem; padding: .95rem; border-radius: 1rem; }
    .traveler-passport-user { align-items: flex-start; }
    .traveler-avatar-pro { width: 56px; height: 56px; border-radius: .9rem; }
    .traveler-stats-grid-pro { gap: .65rem; }
    .traveler-stat-card-pro { min-height: 96px; padding: .9rem; }
    .traveler-stat-card-pro > span { width: 42px; height: 42px; }
    .traveler-stat-card-pro strong { font-size: 1.55rem; }
    .traveler-main-card.traveler-card-pro,
    .traveler-side-card.traveler-card-pro { padding: 1rem; }
    .traveler-event-image-pro { height: 170px; }
}

/* Panel negocio: menú lateral móvil tipo off-canvas */
.business-mobile-topbar { display: none; }
.business-sidebar-backdrop { display: none; }
.business-sidebar-title { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
@media (max-width: 991.98px) {
    .business-mobile-layout { background: #f5f8fb; }
    .business-mobile-topbar {
        position: sticky;
        top: 0;
        z-index: 1040;
        min-height: 62px;
        padding: .65rem .85rem;
        background: #0b1728;
        color: #fff;
        display: grid !important;
        grid-template-columns: auto minmax(0,1fr) auto;
        align-items: center;
        gap: .75rem;
        box-shadow: 0 10px 28px rgba(15,23,42,.22);
    }
    .business-mobile-topbar strong { display:block; font-weight:900; line-height:1.1; }
    .business-mobile-topbar span { display:block; color:rgba(255,255,255,.68); font-size:.78rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
    .business-mobile-menu-btn { border-radius:.75rem; width:44px; height:44px; display:grid; place-items:center; }
    .business-panel-container { padding-left: 0; padding-right: 0; }
    .business-panel-row { margin-left: 0; margin-right: 0; }
    .business-panel-main { width: 100%; padding: 1rem !important; }
    .business-sidebar-mobile {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 1050;
        width: min(86vw, 330px) !important;
        max-width: 330px;
        min-height: 100vh !important;
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform .22s ease;
        box-shadow: 20px 0 45px rgba(0,0,0,.28);
    }
    .business-sidebar-open .business-sidebar-mobile { transform: translateX(0); }
    .business-sidebar-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1045;
        background: rgba(3, 7, 18, .58);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
        display: block;
    }
    .business-sidebar-open .business-sidebar-backdrop { opacity: 1; pointer-events: auto; }
    .business-sidebar-open { overflow: hidden; }
    .business-content-header {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: .85rem;
        align-items: stretch !important;
    }
    .business-content-header > .d-flex { justify-content: space-between; }
    .business-hero-pro { padding: 1.1rem; border-radius: 1.05rem; }
    .business-hero-pro h1 { font-size: clamp(1.65rem, 9vw, 2.25rem); line-height:1.05; }
    .business-hero-pro p { font-size: .94rem; line-height:1.48; }
    .business-hero-actions { display:grid; grid-template-columns: 1fr; gap:.55rem; }
    .business-hero-actions .btn { width:100%; justify-content:center; }
    .business-stat-grid-pro { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap:.7rem; }
    .business-stat-card-pro { min-height: 100px; padding:.85rem; gap:.55rem; }
    .business-stat-card-pro strong { font-size:1.38rem; }
    .business-action-grid { grid-template-columns: 1fr !important; }
    .business-recommendation-list a { grid-template-columns: 40px 1fr; }
    .business-recommendation-list em { grid-column: 2; }
}
@media (max-width: 575.98px) {
    .business-stat-grid-pro { grid-template-columns: 1fr !important; }
    .business-card-pro { padding: .95rem; }
    .business-mini-list-pro > div { flex-direction: column; align-items: flex-start; }
}

/* Panel administrador: ajuste móvil adicional */
@media (max-width: 991.98px) {
    .admin-topbar-v2 {
        position: sticky;
        top: 0;
        z-index: 1030;
        background: rgba(245, 248, 251, .96);
        backdrop-filter: blur(10px);
    }
    .admin-topbar-v2 h1 { font-size: 1.25rem; line-height: 1.15; }
    .admin-topbar-actions { gap: .4rem; }
    .admin-topbar-actions .btn span,
    .admin-topbar-actions .admin-role-badge { display: none; }
    .admin-content-v2 { padding: 1rem !important; }
    .admin-table-toolbar,
    .admin-table-footer { display: grid !important; grid-template-columns: 1fr; gap: .65rem; }
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter,
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_paginate { text-align: left !important; }
    .dataTables_wrapper .dataTables_filter input,
    .dataTables_wrapper .dataTables_length select { width: 100% !important; margin-left: 0 !important; }
}
@media (max-width: 575.98px) {
    .admin-command-hero { padding: 1rem; border-radius: 1rem; }
    .admin-command-hero h2 { font-size: 1.35rem; }
    .admin-alert-metric { min-height: 84px; padding: .9rem; }
    .admin-alert-metric strong { font-size: 1.35rem; }
    .admin-review-card, .admin-quality-item { border-radius: .95rem; }
    .admin-crud-header, .admin-card-header { display: grid !important; grid-template-columns: 1fr; gap: .65rem; }
}

/* DataTables y formularios en celular */
@media (max-width: 767.98px) {
    .dataTables_wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .dataTables_wrapper table { min-width: 780px; }
    .dataTables_wrapper .row { row-gap: .7rem; }
    .dataTables_wrapper .pagination { flex-wrap: wrap; gap: .25rem; }
    .dataTables_wrapper .page-link { border-radius: .55rem; }
    .tp-mobile-form-ready .row > [class*="col-"] { margin-bottom: .75rem; }
    .tp-mobile-form-ready .btn,
    form .btn[type="submit"] { min-height: 46px; }
    .modal-dialog { margin: .75rem; }
    .modal-content { border-radius: 1rem; }
}

/* v28.34 - Footer público reorganizado */
.public-footer {
    padding: 3.8rem 0 1.4rem;
    background:
        radial-gradient(circle at top left, rgba(0, 196, 0, .18), transparent 30%),
        linear-gradient(135deg, var(--tp-footer-bg, #111827) 0%, #0b1220 60%, #07111f 100%) !important;
    color: var(--tp-footer-text, #cbd5e1) !important;
}
.public-footer a {
    color: var(--tp-footer-link, #e5e7eb) !important;
    text-decoration: none;
}
.public-footer a:hover {
    color: var(--tp-brand-accent, #facc15) !important;
}
.public-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 1.6rem;
    align-items: stretch;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.public-footer-brand,
.public-footer-cta {
    border: 1px solid rgba(255,255,255,.11);
    background: rgba(255,255,255,.045);
    border-radius: 24px;
    padding: 1.35rem;
    box-shadow: 0 18px 50px rgba(0,0,0,.16);
}
.public-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.18rem;
    letter-spacing: -.02em;
    margin-bottom: .7rem;
}
.public-footer-logo i {
    color: var(--tp-brand-accent, #facc15);
}
.public-footer-brand p {
    max-width: 720px;
    margin: 0 0 1rem;
    color: rgba(226,232,240,.86);
    line-height: 1.65;
}
.public-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.public-footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .42rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #e5e7eb;
    font-weight: 800;
    font-size: .78rem;
}
.public-footer-badges i {
    color: #22c55e;
}
.public-footer-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .75rem;
}
.public-footer-cta strong {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
}
.public-footer-cta span {
    color: rgba(226,232,240,.82);
    line-height: 1.55;
}
.public-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.public-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.6rem;
}
.public-footer-col h6 {
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    margin-bottom: .85rem;
    letter-spacing: .02em;
}
.public-footer-col a,
.public-footer-col span {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .22rem 0;
    color: rgba(226,232,240,.86) !important;
    line-height: 1.45;
}
.public-footer-col a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(34,197,94,.75);
    opacity: .8;
    flex: 0 0 auto;
}
.public-footer-contact a::before,
.public-footer-contact span::before {
    display: none;
}
.public-footer-contact i {
    color: #22c55e;
}
.public-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(226,232,240,.72);
    font-size: .9rem;
}
@media (max-width: 991.98px) {
    .public-footer-top,
    .public-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 575.98px) {
    .public-footer {
        padding: 2.6rem 0 1.2rem;
    }
    .public-footer-top,
    .public-footer-grid {
        grid-template-columns: 1fr;
    }
    .public-footer-brand,
    .public-footer-cta {
        border-radius: 18px;
        padding: 1.1rem;
    }
    .public-footer-cta-actions .btn {
        width: 100%;
    }
    .public-footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
    }
}


/* v28.36 - Misión y visión en footer público */
.public-footer-mission-vision {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin-top: 1rem;
}
.public-footer-mv-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .75rem;
    padding: .9rem;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
}
.public-footer-mv-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(34,197,94,.13);
    color: #22c55e;
}
.public-footer-mv-item strong {
    display: block;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    margin-bottom: .25rem;
}
.public-footer-mv-item p {
    margin: 0;
    max-width: none;
    color: rgba(226,232,240,.82);
    font-size: .86rem;
    line-height: 1.45;
}
@media (max-width: 767.98px) {
    .public-footer-mission-vision {
        grid-template-columns: 1fr;
    }
}

/* v28.35 - CTA de footer + página Crear cuenta */
.account-choice-hero {
    padding: 4.2rem 0 3.2rem;
    background:
        radial-gradient(circle at top right, rgba(0, 196, 0, .12), transparent 30%),
        linear-gradient(135deg, #f8fafc 0%, #eefdf4 100%);
    border-bottom: 1px solid #dbe5ef;
}
.account-choice-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    text-transform: uppercase;
    color: #b98000;
    font-weight: 900;
    letter-spacing: .12em;
    font-size: .78rem;
    margin-bottom: .75rem;
}
.account-choice-hero h1 {
    max-width: 850px;
    color: var(--tp-brand-primary, #00345f);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.2vw, 3.6rem);
    letter-spacing: -.04em;
    margin-bottom: .9rem;
}
.account-choice-hero p {
    max-width: 780px;
    color: #52627a;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}
.account-choice-section {
    padding: 3.4rem 0;
    background: #f6f8fb;
}
.account-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}
.account-choice-card {
    background: #fff;
    border: 1px solid #dce6f0;
    border-radius: 22px;
    padding: 1.35rem;
    box-shadow: 0 18px 40px rgba(15,23,42,.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.account-choice-card.featured {
    border-color: rgba(0,196,0,.35);
    box-shadow: 0 22px 55px rgba(0,196,0,.12);
}
.account-choice-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eaffea;
    color: #00a800;
    font-size: 1.35rem;
    margin-bottom: .95rem;
}
.account-choice-card h2 {
    color: var(--tp-brand-primary, #00345f);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: .55rem;
}
.account-choice-card p {
    color: #53627a;
    line-height: 1.6;
    margin-bottom: .85rem;
}
.account-choice-card ul {
    padding-left: 1rem;
    color: #1f2937;
    margin: 0 0 1.2rem;
    line-height: 1.65;
    flex: 1;
}
.account-choice-card li::marker {
    color: #00c400;
}
.account-choice-help {
    margin-top: 1.4rem;
    background: #fff;
    border: 1px solid #dce6f0;
    border-radius: 18px;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.account-choice-help strong,
.account-choice-help span {
    display: block;
}
.account-choice-help strong {
    color: var(--tp-brand-primary, #00345f);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}
.account-choice-help span {
    color: #53627a;
}
@media (max-width: 991.98px) {
    .account-choice-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575.98px) {
    .account-choice-hero {
        padding: 3rem 0 2.4rem;
    }
    .account-choice-section {
        padding: 2.2rem 0;
    }
    .account-choice-help {
        display: grid;
    }
    .account-choice-help .btn {
        width: 100%;
    }
}

/* v28.36.3 - Botón Contactar visible en CTA Sobre TURISMO PERÚ */
.about-v28-36-contact-only,
.about-v28-36-contact-card .about-v28-36-contact-only {
    min-width: 165px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .78rem 1.25rem;
    border-radius: .7rem;
    border: 1px solid #ffffff !important;
    background: #ffffff !important;
    color: #0b2f4f !important;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    opacity: 1 !important;
}
.about-v28-36-contact-only i,
.about-v28-36-contact-card .about-v28-36-contact-only i {
    color: #00b900 !important;
}
.about-v28-36-contact-only:hover,
.about-v28-36-contact-card .about-v28-36-contact-only:hover {
    background: #00b900 !important;
    border-color: #00b900 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}
.about-v28-36-contact-only:hover i,
.about-v28-36-contact-card .about-v28-36-contact-only:hover i {
    color: #ffffff !important;
}

/* v28.36.2 - Ajuste del CTA de comunidad en Sobre nosotros */
.about-v28-36-community-points {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.1rem;
    position: relative;
    z-index: 1;
}
.about-v28-36-community-points span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .42rem .68rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.08);
    font-weight: 700;
    font-size: .88rem;
}
.about-v28-36-community-points i { color: #f4c04e; }
.about-v28-36-contact-card {
    height: 100%;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: .55rem;
    padding: 1.35rem;
    border-radius: .9rem;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
    position: relative;
    z-index: 1;
}
.about-v28-36-contact-card > span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .85rem;
    color: #0b2f4f;
    background: #ffffff;
}
.about-v28-36-contact-card h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 900;
    margin: .15rem 0 0;
}
.about-v28-36-contact-card p {
    color: rgba(255,255,255,.86);
    margin: 0 0 .25rem;
    line-height: 1.45;
}
.about-v28-36-contact-card .btn {
    margin-top: .25rem;
}
@media (max-width: 991.98px) {
    .about-v28-36-contact-card { min-height: auto; }
    .about-v28-36-contact-card .btn,
    .about-v28-36-community-points span { width: 100%; justify-content: center; }
    .about-v28-36-contact-card { align-items: stretch; text-align: center; }
    .about-v28-36-contact-card > span { margin: 0 auto; }
}

/* v28.37 - Rediseño impactante del detalle de Patrimonio Cultural */
.cultural-detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    color: #fff;
    background: #062434;
}
.cultural-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(105deg, rgba(3, 23, 36, .94) 0%, rgba(6, 52, 61, .86) 44%, rgba(9, 119, 100, .72) 100%), var(--cultural-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.03);
}
.cultural-detail-hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -24% auto;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, .22), rgba(0, 185, 0, .08) 48%, transparent 72%);
}
.cultural-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 16, 29, .06), rgba(5, 16, 29, .34));
}
.cultural-detail-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
}
.cultural-detail-badges,
.cultural-detail-actions,
.cultural-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: center;
}
.cultural-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border-radius: 999px;
    padding: .46rem .75rem;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .02em;
    box-shadow: 0 10px 24px rgba(0,0,0,.14);
}
.cultural-pill--gold,
.cultural-pill--featured { background: #ffc107; color: #092033; }
.cultural-pill--light { background: rgba(255,255,255,.92); color: #0f2d43; }
.cultural-detail-title {
    max-width: 860px;
    font-size: clamp(2.25rem, 5vw, 4.65rem);
    line-height: .98;
    font-weight: 950;
    letter-spacing: -.055em;
    margin-bottom: 1.2rem;
    text-shadow: 0 16px 38px rgba(0,0,0,.24);
}
.cultural-detail-summary {
    max-width: 780px;
    font-size: clamp(1.03rem, 1.5vw, 1.34rem);
    line-height: 1.65;
    color: rgba(255,255,255,.92);
    font-weight: 500;
}
.cultural-detail-meta {
    color: rgba(255,255,255,.88);
    font-weight: 800;
    margin-top: 1.25rem;
}
.cultural-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
}
.cultural-detail-actions .btn {
    border-radius: .85rem;
    font-weight: 900;
    padding: .82rem 1.12rem;
}
.cultural-detail-visual-card {
    position: relative;
    border-radius: 1.65rem;
    overflow: hidden;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.24);
    box-shadow: 0 26px 80px rgba(0,0,0,.34);
    transform: rotate(.8deg);
}
.cultural-detail-visual-card img {
    display: block;
    width: 100%;
    height: 385px;
    object-fit: cover;
}
.cultural-detail-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(2, 13, 24, .74));
    pointer-events: none;
}
.cultural-detail-visual-caption {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    color: #fff;
}
.cultural-detail-visual-caption span {
    display: inline-flex;
    gap: .42rem;
    align-items: center;
    padding: .46rem .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(8px);
    font-weight: 800;
    font-size: .82rem;
}
.cultural-detail-visual-caption strong { font-size: 1.2rem; }
.cultural-detail-body { background: linear-gradient(180deg, #f5f8fb, #ffffff); }
.cultural-editorial-card,
.cultural-timeline-card,
.cultural-gallery-card,
.cultural-info-card,
.cultural-source-card,
.cultural-tags-card,
.cultural-action-card,
.cultural-related-card,
.cultural-highlight-card {
    border: 1px solid rgba(15, 46, 68, .09);
    border-radius: 1.35rem;
    background: #fff;
    box-shadow: 0 18px 48px rgba(11, 37, 58, .08);
}
.cultural-editorial-card { padding: clamp(1.35rem, 3vw, 2.6rem); }
.cultural-editorial-heading { margin-bottom: 1.35rem; }
.cultural-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    color: #b98000;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: .08em;
    font-size: .78rem;
    margin-bottom: .45rem;
}
.cultural-editorial-heading h2 {
    color: #0b2f4f;
    font-weight: 950;
    letter-spacing: -.035em;
    margin: 0;
}
.cultural-editorial-heading p { color: #607089; margin: .35rem 0 0; }
.cultural-prose {
    color: #37445a;
    font-size: 1.04rem;
    line-height: 1.88;
}
.cultural-prose p { margin-bottom: 1.25rem; }
.cultural-prose-lead {
    font-size: 1.14rem;
    color: #1f2e43;
    padding-left: 1.05rem;
    border-left: 4px solid #00b900;
    font-weight: 600;
}
.cultural-highlight-card {
    padding: 1.35rem;
    background: linear-gradient(135deg, #ffffff, #f4fbf6);
}
.cultural-highlight-card--quote { background: linear-gradient(135deg, #0e314f, #0f766e); color: #fff; }
.cultural-highlight-card > span {
    width: 42px;
    height: 42px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8f8ec;
    color: #00a000;
    margin-bottom: .9rem;
}
.cultural-highlight-card--quote > span { background: rgba(255,255,255,.14); color: #ffc107; }
.cultural-highlight-card h3 { font-size: 1.05rem; font-weight: 950; margin-bottom: .5rem; }
.cultural-highlight-card p { margin: 0; color: inherit; opacity: .9; line-height: 1.6; }
.cultural-timeline-card,
.cultural-gallery-card { padding: 1.45rem; }
.cultural-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem;
}
.cultural-timeline-item {
    position: relative;
    padding: 1rem 1rem 1rem 1.15rem;
    border-radius: 1rem;
    background: #f7fafc;
    border: 1px solid rgba(15,46,68,.08);
}
.cultural-timeline-item::before {
    content: "";
    position: absolute;
    left: -.02rem;
    top: 1rem;
    bottom: 1rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffc107, #00b900);
}
.cultural-timeline-item strong { display: block; color: #0b2f4f; font-weight: 950; margin-bottom: .2rem; }
.cultural-timeline-item span { color: #59697f; }
.cultural-gallery-item { margin: 0; }
.cultural-gallery-item img { height: 185px; width: 100%; object-fit: cover; border-radius: 1rem; box-shadow: 0 12px 26px rgba(0,0,0,.09); }
.cultural-gallery-item figcaption { margin-top: .45rem; color: #66758a; font-size: .9rem; }
.cultural-side-stack { display: grid; gap: 1rem; }
.cultural-info-card,
.cultural-source-card,
.cultural-tags-card,
.cultural-action-card,
.cultural-related-card { padding: 1.25rem; }
.cultural-info-card__header {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1rem;
}
.cultural-info-card__header > span,
.cultural-author-box > span {
    width: 44px;
    height: 44px;
    border-radius: 1rem;
    background: #e8f8ec;
    color: #00a000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.cultural-info-card__header h2,
.cultural-source-card h2,
.cultural-tags-card h2,
.cultural-action-card h2,
.cultural-related-card h2 {
    font-size: 1.05rem;
    font-weight: 950;
    color: #0b2f4f;
    margin: 0;
}
.cultural-info-card__header p { margin: 0; color: #708094; font-size: .92rem; }
.cultural-info-list { display: grid; gap: .65rem; }
.cultural-info-list div {
    display: grid;
    gap: .18rem;
    padding: .72rem;
    border-radius: .85rem;
    background: #f7fafc;
}
.cultural-info-list span { color: #738197; font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.cultural-info-list strong { color: #1f2e43; }
.cultural-info-list a { color: #008d13; text-decoration: none; }
.cultural-author-box {
    display: flex;
    gap: .8rem;
    align-items: center;
    padding: .85rem;
    border-radius: 1rem;
    background: #f7fafc;
    margin: .85rem 0;
}
.cultural-author-box strong { display: block; color: #172339; }
.cultural-author-box small { color: #63728a; }
.cultural-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .85rem; }
.cultural-tags span {
    border-radius: 999px;
    background: #eef8f0;
    color: #008d13;
    padding: .35rem .62rem;
    font-size: .82rem;
    font-weight: 800;
}
.cultural-related-item {
    display: block;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(15,46,68,.08);
    text-decoration: none;
}
.cultural-related-item:last-child { border-bottom: 0; padding-bottom: 0; }
.cultural-related-item strong { display: block; color: #172339; line-height: 1.25; }
.cultural-related-item span { color: #6a7890; font-size: .88rem; }
@media (max-width: 991.98px) {
    .cultural-detail-hero { min-height: auto; }
    .cultural-detail-hero__content { padding-top: 3rem; padding-bottom: 3rem; }
    .cultural-detail-visual-card { transform: none; }
    .cultural-timeline { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
    .cultural-detail-actions .btn { width: 100%; }
    .cultural-detail-visual-card img { height: 260px; }
    .cultural-detail-visual-caption { align-items: start; flex-direction: column; }
    .cultural-editorial-card { padding: 1.15rem; }
}

/* v28.38 - Hero de Patrimonio Cultural más limpio y estructurado */
.cultural-detail-summary {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cultural-detail-actions .btn {
    white-space: nowrap;
}
@media (min-width: 992px) {
    .cultural-detail-actions {
        flex-wrap: nowrap;
    }
    .cultural-detail-actions .btn {
        font-size: .95rem;
        padding: .78rem .95rem;
    }
}

/* v28.39 - Diseño editorial tipo revista para detalle de Patrimonio Cultural */
.cultural-magazine-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(255,193,7,.10), transparent 28%),
        linear-gradient(180deg, #f5f8fb 0%, #ffffff 58%, #f7faf8 100%);
}
.cultural-magazine-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(1.2rem, 3vw, 2rem);
    align-items: start;
}
.cultural-magazine-main { min-width: 0; }
.cultural-magazine-article {
    position: relative;
    overflow: hidden;
    border-radius: 1.65rem;
    background: #ffffff;
    border: 1px solid rgba(15, 46, 68, .10);
    box-shadow: 0 24px 70px rgba(11, 37, 58, .10);
    padding: clamp(1.35rem, 3vw, 3.1rem);
}
.cultural-magazine-article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, #ffc107, #00b900, #0b5a7a);
}
.cultural-magazine-label {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #b98000;
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: .09em;
    font-size: .78rem;
    margin-bottom: .7rem;
}
.cultural-magazine-article h2 {
    max-width: 860px;
    color: #0b2f4f;
    font-weight: 950;
    letter-spacing: -.045em;
    line-height: 1.03;
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    margin: 0 0 1rem;
}
.cultural-magazine-lead {
    color: #223249;
    font-size: clamp(1.08rem, 1.45vw, 1.28rem);
    line-height: 1.86;
    margin: 0 0 1.65rem;
}
.cultural-magazine-lead::first-letter {
    float: left;
    font-size: 4.8rem;
    line-height: .76;
    padding: .18rem .55rem .05rem 0;
    color: #0f766e;
    font-weight: 950;
    letter-spacing: -.06em;
}
.cultural-magazine-index {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
    margin: 1.5rem 0 1.9rem;
}
.cultural-magazine-index div {
    padding: 1rem;
    border-radius: 1.1rem;
    background: linear-gradient(135deg, #f8fbfd, #eef9f0);
    border: 1px solid rgba(15, 46, 68, .08);
}
.cultural-magazine-index span {
    display: flex;
    align-items: center;
    gap: .38rem;
    color: #64748b;
    font-weight: 800;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .045em;
}
.cultural-magazine-index strong {
    display: block;
    margin-top: .3rem;
    color: #0b2f4f;
    font-weight: 950;
    line-height: 1.2;
}
.cultural-magazine-prose {
    color: #37445a;
    font-size: 1.04rem;
    line-height: 1.95;
}
.cultural-magazine-prose h3 {
    color: #0b2f4f;
    font-size: clamp(1.22rem, 2vw, 1.62rem);
    font-weight: 950;
    letter-spacing: -.03em;
    margin: 2rem 0 .65rem;
    padding-top: .25rem;
}
.cultural-magazine-prose p { margin: 0 0 1.15rem; }

/* v28.40 - Cuerpo editorial de Patrimonio Cultural en dos columnas tipo revista */
.cultural-magazine-prose--columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.2rem, 2.4vw, 2rem);
    align-items: start;
    margin-top: .4rem;
}
.cultural-magazine-story-block {
    break-inside: avoid;
    page-break-inside: avoid;
    padding: 1.05rem 1.05rem 1.15rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(248,251,253,.88), rgba(255,255,255,.96));
    border: 1px solid rgba(15,46,68,.07);
}
.cultural-magazine-story-block h3 {
    margin-top: 0;
}
.cultural-magazine-story-block p:last-child {
    margin-bottom: 0;
}
@media (max-width: 991.98px) {
    .cultural-magazine-prose--columns {
        grid-template-columns: 1fr;
    }
}
.cultural-magazine-quote {
    position: relative;
    margin: 2rem 0;
    padding: 1.6rem 1.6rem 1.6rem 4.2rem;
    border-radius: 1.35rem;
    color: #fff;
    background: linear-gradient(135deg, #0e314f, #0f766e 78%);
    box-shadow: 0 18px 45px rgba(11, 37, 58, .16);
}
.cultural-magazine-quote i {
    position: absolute;
    left: 1.35rem;
    top: 1.25rem;
    width: 46px;
    height: 46px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #ffc107;
    font-size: 1.5rem;
}
.cultural-magazine-quote p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.68;
    font-weight: 650;
}
.cultural-magazine-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.75rem 0;
}
.cultural-magazine-feature {
    padding: 1.15rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(15,46,68,.08);
    background: #f8fbfd;
}
.cultural-magazine-feature span,
.cultural-magazine-author span {
    width: 42px;
    height: 42px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8f8ec;
    color: #00a000;
    margin-bottom: .85rem;
}
.cultural-magazine-feature h3 {
    font-size: 1rem;
    color: #0b2f4f;
    font-weight: 950;
    margin-bottom: .45rem;
}
.cultural-magazine-feature p {
    margin: 0;
    color: #5f6f84;
    line-height: 1.58;
    font-size: .94rem;
}
.cultural-magazine-timeline,
.cultural-magazine-gallery {
    margin-top: 1.8rem;
    padding: 1.25rem;
    border-radius: 1.35rem;
    background: linear-gradient(135deg, #ffffff, #f7fbf8);
    border: 1px solid rgba(15,46,68,.08);
}
.cultural-magazine-timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}
.cultural-magazine-timeline-grid div {
    position: relative;
    padding: .95rem .95rem .95rem 1rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(15,46,68,.08);
}
.cultural-magazine-timeline-grid div::before {
    content: "";
    position: absolute;
    left: 0;
    top: .85rem;
    bottom: .85rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffc107, #00b900);
}
.cultural-magazine-timeline-grid small {
    display: block;
    color: #708094;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .75rem;
    font-weight: 850;
    margin-bottom: .25rem;
}
.cultural-magazine-timeline-grid strong { color: #0b2f4f; }
.cultural-magazine-aside { min-width: 0; }
.cultural-magazine-sticky {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 1rem;
}
.cultural-magazine-card {
    padding: 1.25rem;
    border-radius: 1.35rem;
    background: #ffffff;
    border: 1px solid rgba(15,46,68,.09);
    box-shadow: 0 18px 48px rgba(11,37,58,.08);
}
.cultural-magazine-card--dark {
    background: linear-gradient(135deg, #0e314f, #123f5b);
    color: #fff;
}
.cultural-magazine-card h2 {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.06rem;
    font-weight: 950;
    margin: 0 0 .9rem;
    color: #0b2f4f;
}
.cultural-magazine-card--dark h2 { color: #fff; }
.cultural-magazine-facts {
    display: grid;
    gap: .65rem;
    margin: 0;
}
.cultural-magazine-facts div {
    padding: .75rem;
    border-radius: .9rem;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
}
.cultural-magazine-facts dt {
    color: rgba(255,255,255,.70);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .72rem;
    font-weight: 850;
}
.cultural-magazine-facts dd {
    margin: .15rem 0 0;
    color: #fff;
    font-weight: 850;
}
.cultural-magazine-facts a { color: #ffc107; text-decoration: none; }
.cultural-magazine-author {
    display: flex;
    gap: .8rem;
    align-items: center;
    padding: .9rem;
    border-radius: 1rem;
    background: #f7fafc;
    margin-bottom: .85rem;
}
.cultural-magazine-author span { margin: 0; flex: 0 0 auto; }
.cultural-magazine-author strong { display: block; color: #172339; }
.cultural-magazine-author small { color: #63728a; }
.cultural-magazine-card--actions .btn { font-weight: 850; border-radius: .85rem; }
.cultural-magazine-related {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: #0b1728;
    color: #fff;
}
.cultural-magazine-related .cultural-magazine-label { color: #ffc107; }
.cultural-magazine-related-item {
    display: block;
    height: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #fff;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}
.cultural-magazine-related-item:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.13);
    color: #fff;
}
.cultural-magazine-related-item strong { display: block; line-height: 1.25; }
.cultural-magazine-related-item span { display: block; margin-top: .45rem; color: rgba(255,255,255,.72); font-size: .9rem; }
@media (max-width: 1199.98px) {
    .cultural-magazine-layout { grid-template-columns: 1fr; }
    .cultural-magazine-sticky { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
    .cultural-magazine-index,
    .cultural-magazine-feature-grid,
    .cultural-magazine-timeline-grid,
    .cultural-magazine-sticky { grid-template-columns: 1fr; }
    .cultural-magazine-quote { padding: 1.2rem; }
    .cultural-magazine-quote i { position: static; margin-bottom: .85rem; }
    .cultural-magazine-lead::first-letter { float: none; font-size: inherit; line-height: inherit; padding: 0; }
}

/* v28.41 - Patrimonio Cultural con estructura basada en detalle de Blog */
.cultural-blog-detail-page {
    background:
        linear-gradient(180deg, rgba(247,250,252,.98), rgba(240,245,249,.98)),
        radial-gradient(circle at 8% 0%, rgba(0,185,0,.08), transparent 28%);
}
.cultural-blog-detail-paper {
    border-radius: 1.35rem;
    overflow: hidden;
}
.cultural-blog-detail-header {
    border-top-color: #00b900;
}
.cultural-blog-detail-header .editorial-masthead {
    color: #0f766e;
    border-bottom-color: #ffc107;
}
.cultural-blog-detail-title {
    font-family: var(--tp-font, 'Inter', system-ui, sans-serif);
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -.045em;
    color: #0b2f4f;
}
.cultural-blog-detail-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
}
.cultural-blog-readbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
    margin: 0 0 1.25rem;
}
.cultural-blog-readbar div {
    border: 1px solid rgba(15,46,68,.12);
    background: linear-gradient(135deg, #ffffff, #f4fbf6);
    border-radius: 1rem;
    padding: .9rem 1rem;
}
.cultural-blog-readbar small {
    display: block;
    color: #64748b;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}
.cultural-blog-readbar strong {
    display: block;
    color: #0b2f4f;
    font-weight: 900;
    line-height: 1.25;
}
.cultural-bloglike-body {
    column-count: 1 !important;
    column-rule: 0 !important;
    font-family: var(--tp-font, 'Inter', system-ui, sans-serif) !important;
    color: #26364c;
    font-size: clamp(1rem, 1.15vw, 1.08rem);
    line-height: 1.86;
    text-align: left !important;
    hyphens: none;
    max-width: 880px;
}
.cultural-bloglike-body p {
    text-align: left !important;
    margin-bottom: 1.25rem;
}
.cultural-bloglike-body p:first-child::first-letter {
    color: #0f766e !important;
    font-size: 4.4rem;
    font-weight: 950;
    line-height: .82;
    padding: .18rem .48rem .04rem 0;
}
.cultural-blog-highlight {
    border-left: 5px solid #00b900;
}
.cultural-blog-quote {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    border: 1px solid rgba(15,46,68,.12);
    border-radius: 1.1rem;
    background: linear-gradient(135deg, #0d3b55, #0f766e);
    color: #fff;
    padding: clamp(1rem, 2vw, 1.35rem);
    margin: 1rem 0 0;
}
.cultural-blog-quote i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #ffc107;
    font-size: 1.35rem;
}
.cultural-blog-quote p {
    margin: 0;
    line-height: 1.7;
    font-weight: 650;
}
.cultural-blog-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}
.cultural-blog-feature {
    border: 1px solid rgba(15,46,68,.10);
    border-radius: 1rem;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 12px 28px rgba(15,46,68,.06);
}
.cultural-blog-feature span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .85rem;
    background: #e8f8ec;
    color: #00a000;
    margin-bottom: .8rem;
}
.cultural-blog-feature strong {
    display: block;
    color: #0b2f4f;
    font-weight: 950;
    margin-bottom: .35rem;
}
.cultural-blog-feature p {
    color: #64748b;
    margin: 0;
    line-height: 1.55;
    font-size: .92rem;
}
.cultural-blog-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}
.cultural-blog-timeline-grid div,
.cultural-side-fact {
    border: 1px solid rgba(15,46,68,.10);
    border-radius: .9rem;
    background: #f8fafc;
    padding: .9rem;
}
.cultural-blog-timeline-grid small,
.cultural-side-fact small {
    display: block;
    color: #64748b;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .2rem;
}
.cultural-blog-timeline-grid strong,
.cultural-side-fact strong {
    display: block;
    color: #0b2f4f;
    font-weight: 900;
    line-height: 1.25;
}
.cultural-side-facts {
    display: grid;
    gap: .7rem;
}
.cultural-side-facts h3 { margin-bottom: .1rem; }
.cultural-author-box {
    border-radius: .9rem;
    background: #f8fafc;
    padding: .8rem;
    margin-bottom: .75rem;
}
.cultural-tag-chip {
    display: inline-flex;
    background: #e8f8ec;
    color: #116036;
    font-weight: 850;
    border: 0;
    padding: .42rem .65rem;
}
.cultural-blog-related-card img {
    height: 130px;
    object-fit: cover;
}
.cultural-bloglike-aside .editorial-cover img {
    height: 250px;
}
@media (max-width: 991.98px) {
    .cultural-blog-detail-grid { grid-template-columns: 1fr; }
    .cultural-blog-readbar,
    .cultural-blog-feature-grid,
    .cultural-blog-timeline-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
    .cultural-blog-detail-paper { border-radius: 0; }
    .cultural-blog-readbar div { padding: .8rem; }
    .cultural-blog-quote { grid-template-columns: 1fr; }
}
