/* ============================================================
   Tantra Palace - Estilos principales
   Diseño oscuro, elegante, moderno
   ============================================================ */

:root {
    --tp-black: #0a0a0a;
    --tp-dark: #111111;
    --tp-dark-2: #1a1a1a;
    --tp-dark-3: #222222;
    --tp-dark-4: #2a2a2a;
    --tp-gray: #888888;
    --tp-gray-light: #aaaaaa;
    --tp-white: #f5f5f5;
    --tp-gold: #c9a96e;
    --tp-gold-light: #d4b97e;
    --tp-gold-dark: #a8884d;
    --tp-red: #c0392b;
    --tp-green: #27ae60;

    --tp-font-heading: 'Playfair Display', Georgia, serif;
    --tp-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --tp-header-top-height: 100px;
    --tp-header-bottom-height: 44px;
    --tp-header-height: calc(var(--tp-header-top-height) + var(--tp-header-bottom-height));
    --tp-transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--tp-font-body);
    background-color: var(--tp-black);
    color: var(--tp-gray-light);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--tp-gold);
    text-decoration: none;
    transition: var(--tp-transition);
}

a:hover {
    color: var(--tp-gold-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tp-font-heading);
    color: var(--tp-white);
    font-weight: 400;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

img {
    max-width: 100%;
    height: auto;
}

/* ---- Utilidades ---- */
.text-gold { color: var(--tp-gold) !important; }
.bg-dark-1 { background-color: var(--tp-black) !important; }
.bg-dark-2 { background-color: var(--tp-dark) !important; }
.bg-dark-3 { background-color: var(--tp-dark-2) !important; }

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--tp-gold);
    margin: 15px auto 0;
}

.section-title p {
    color: var(--tp-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Header / Navbar ---- */
.tp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--tp-transition);
}

.tp-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.tp-header-top {
    height: var(--tp-header-top-height);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.tp-header-top-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.tp-header-bottom {
    height: var(--tp-header-bottom-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.tp-header-bottom .container {
    display: flex;
    justify-content: center;
}

.tp-logo img {
    height: 80px;
    width: auto;
}

.tp-logo span {
    font-family: var(--tp-font-heading);
    font-size: 1.8rem;
    color: var(--tp-white);
    letter-spacing: 1px;
}

.tp-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    list-style: none;
}

.tp-nav a {
    color: var(--tp-gray-light);
    font-size: 0.82rem;
    padding: 10px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: var(--tp-transition);
    white-space: nowrap;
}

.tp-nav a:hover,
.tp-nav a.active {
    color: var(--tp-gold);
    background: rgba(201, 169, 110, 0.08);
}

.tp-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--tp-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.tp-lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding-left: 12px;
    flex-shrink: 0;
}

.tp-flag-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.7;
    line-height: 0;
}

.tp-flag-link:hover {
    border-color: var(--tp-gold);
    opacity: 1;
}

.tp-flag-link.active {
    opacity: 1;
    cursor: default;
}

.tp-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* ---- Navbar Dropdowns ---- */
.tp-dropdown {
    position: relative;
}

.tp-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tp-dropdown-toggle .bi-chevron-down {
    font-size: 0.6em;
    transition: transform 0.25s ease;
}

.tp-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(15, 15, 15, 0.98);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 6px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 1100;
    max-height: 70vh;
    overflow-y: auto;
}

.tp-dropdown:hover > .tp-dropdown-menu,
.tp-dropdown.open > .tp-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tp-dropdown:hover > .tp-dropdown-toggle .bi-chevron-down,
.tp-dropdown.open > .tp-dropdown-toggle .bi-chevron-down {
    transform: rotate(180deg);
}

.tp-dropdown-menu .tp-dropdown-header a {
    color: var(--tp-gold);
    font-weight: 600;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    margin-bottom: 4px;
    padding-bottom: 10px;
}

.tp-dropdown-menu a {
    display: block;
    padding: 7px 20px;
    color: var(--tp-gray-light);
    font-size: 0.88rem;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.tp-dropdown-menu a:hover {
    color: var(--tp-gold);
    background: rgba(201, 169, 110, 0.08);
}

/* ---- Main content offset for fixed header ---- */
main {
    margin-top: var(--tp-header-height);
}

/* ---- Hero ---- */
.tp-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: calc(-1 * var(--tp-header-height));
}

.tp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}

.tp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.tp-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.tp-hero-content p {
    font-size: 1.3rem;
    color: var(--tp-gray-light);
    margin-bottom: 35px;
}

/* ---- Masajistas Slider (Home top) ---- */
.tp-masajistas-slider {
    padding: 30px 20px;
    background: var(--tp-dark);
    overflow: hidden;
}

.tp-slider-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.tp-slider-track::-webkit-scrollbar {
    display: none;
}

.tp-slider-item {
    flex: 0 0 auto;
    width: 140px;
    text-align: center;
    text-decoration: none;
    scroll-snap-align: start;
    transition: var(--tp-transition);
}

.tp-slider-item:hover {
    transform: translateY(-3px);
}

.tp-slider-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--tp-dark-4);
    transition: var(--tp-transition);
}

.tp-slider-item:hover img {
    border-color: var(--tp-gold);
}

.tp-slider-name {
    display: block;
    margin-top: 8px;
    color: var(--tp-white);
    font-size: 0.9rem;
    font-weight: 600;
}

.tp-slider-ver-todas {
    color: var(--tp-gold);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.tp-slider-ver-todas:hover {
    color: var(--tp-gold-light);
    text-decoration: underline;
}

/* ---- Home Tabs ---- */
.tp-home-tabs {
    display: flex;
    gap: 0;
    border: 1px solid var(--tp-dark-4);
    border-radius: 6px;
    overflow: hidden;
}

.tp-home-tabs a {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    color: var(--tp-gray-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    background: var(--tp-dark-2);
    border-right: 1px solid var(--tp-dark-4);
    transition: var(--tp-transition);
}

.tp-home-tabs a:last-child {
    border-right: none;
}

.tp-home-tabs a:hover {
    background: var(--tp-gold);
    color: var(--tp-black);
}

/* ---- Home Featured Image ---- */
.tp-home-featured-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.tp-home-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.tp-home-featured-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    text-align: center;
}

.tp-home-featured-caption h3 {
    font-size: 1.1rem;
    color: var(--tp-gold);
    margin: 0;
}

/* ---- Masaje Row (carta en home) ---- */
.tp-masajes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tp-masaje-row {
    background: var(--tp-dark-2);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--tp-dark-3);
    transition: var(--tp-transition);
}

.tp-masaje-row:hover {
    border-color: var(--tp-gold);
}

.tp-masaje-row-img {
    height: 100%;
    min-height: 180px;
    overflow: hidden;
}

.tp-masaje-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tp-masaje-row:hover .tp-masaje-row-img img {
    transform: scale(1.05);
}

.tp-masaje-row-body {
    padding: 20px 25px;
}

.tp-masaje-row-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tp-masaje-row-body h3 a {
    color: var(--tp-white);
    text-decoration: none;
}

.tp-masaje-row-body h3 a:hover {
    color: var(--tp-gold);
}

.tp-masaje-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-masaje-features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: var(--tp-gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.tp-masaje-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--tp-gold);
    font-weight: bold;
}

.tp-masaje-row-body p {
    color: var(--tp-gray);
    font-size: 0.9rem;
    margin: 0;
}

.tp-masaje-row-prices {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-left: 1px solid var(--tp-dark-3);
}

.tp-masaje-price-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.tp-masaje-price-item .duration {
    color: var(--tp-gray-light);
    font-size: 0.9rem;
}

.tp-masaje-price-item .price {
    color: var(--tp-gold);
    font-weight: 700;
    font-size: 1rem;
}

.tp-masaje-row-btn {
    margin-top: 10px;
    padding: 8px 20px !important;
    font-size: 0.8rem !important;
    width: 100%;
    text-align: center;
}

/* ---- Reviews Carousel ---- */
.tp-reviews-carousel {
    position: relative;
    overflow: hidden;
}

.tp-reviews-track {
    display: flex;
    transition: transform 0.4s ease;
}

.tp-review-slide {
    flex: 0 0 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.tp-reviews-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.tp-reviews-prev,
.tp-reviews-next {
    background: var(--tp-dark-3);
    border: 1px solid var(--tp-dark-4);
    color: var(--tp-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--tp-transition);
    font-size: 1.1rem;
}

.tp-reviews-prev:hover,
.tp-reviews-next:hover {
    background: var(--tp-gold);
    color: var(--tp-black);
}

/* ---- FAQ Accordion ---- */
.tp-accordion .accordion-item {
    background: var(--tp-dark-2);
    border: 1px solid var(--tp-dark-3);
    margin-bottom: 8px;
    border-radius: 6px !important;
    overflow: hidden;
}

.tp-accordion .accordion-button {
    background: var(--tp-dark-2);
    color: var(--tp-white);
    font-family: var(--tp-font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    padding: 16px 20px;
    box-shadow: none;
}

.tp-accordion .accordion-button:not(.collapsed) {
    background: var(--tp-dark-3);
    color: var(--tp-gold);
}

.tp-accordion .accordion-button::after {
    filter: invert(0.7);
}

.tp-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(0.5) sepia(1) saturate(3) hue-rotate(10deg);
}

.tp-accordion .accordion-body {
    background: var(--tp-dark-2);
    color: var(--tp-gray-light);
    padding: 15px 20px 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ---- Contact Info Card ---- */
.tp-contact-info-card {
    background: var(--tp-dark-2);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--tp-dark-3);
}

.tp-contact-info-card h4 {
    color: var(--tp-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.tp-contact-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--tp-dark-3);
    align-items: flex-start;
}

.tp-contact-row:last-child {
    border-bottom: none;
}

.tp-contact-row i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.tp-contact-row div {
    color: var(--tp-gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.tp-contact-row strong {
    color: var(--tp-white);
}

/* ---- Schedule Grid ---- */
.tp-schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tp-schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--tp-dark-2);
    border-radius: 6px;
    border: 1px solid var(--tp-dark-3);
}

.tp-schedule-days {
    color: var(--tp-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.tp-schedule-hours {
    color: var(--tp-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---- Map Embed ---- */
.tp-map-embed {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.tp-map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 8px;
}

/* ---- Botones ---- */
.btn-gold {
    display: inline-block;
    background: var(--tp-gold);
    color: var(--tp-black);
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--tp-gold);
    transition: var(--tp-transition);
    cursor: pointer;
}

.btn-gold:hover {
    background: transparent;
    color: var(--tp-gold);
}

.btn-gold-outline {
    display: inline-block;
    background: transparent;
    color: var(--tp-gold);
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--tp-gold);
    transition: var(--tp-transition);
    cursor: pointer;
}

.btn-gold-outline:hover {
    background: var(--tp-gold);
    color: var(--tp-black);
}

/* ---- Cards de masajistas ---- */
.tp-masajista-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: var(--tp-transition);
}

.tp-masajista-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.15);
}

.tp-masajista-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tp-masajista-card:hover img {
    transform: scale(1.05);
}

.tp-masajista-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.tp-masajista-card .card-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--tp-white);
}

.tp-masajista-card .card-overlay span {
    color: var(--tp-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Cards de masajes ---- */
.tp-masaje-card {
    background: var(--tp-dark-2);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--tp-dark-3);
    transition: var(--tp-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tp-masaje-card:hover {
    border-color: var(--tp-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.tp-masaje-card .card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tp-masaje-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tp-masaje-card:hover .card-image img {
    transform: scale(1.05);
}

.tp-masaje-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tp-masaje-card .card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tp-masaje-card .card-body p {
    font-size: 0.9rem;
    color: var(--tp-gray);
    flex: 1;
}

.tp-masaje-card .card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-top: 1px solid var(--tp-dark-3);
    background: var(--tp-dark);
}

.tp-masaje-card .card-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--tp-gold);
}

.tp-masaje-card .card-price .price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--tp-gray);
}

/* ---- Video responsive ---- */
.tp-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.tp-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---- Galeria / Lightbox ---- */
.tp-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 991.98px) {
    .tp-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575.98px) {
    .tp-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tp-gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--tp-transition);
    display: block;
}

.tp-gallery-item:hover {
    transform: scale(1.03);
}

.tp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tp-gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--tp-transition);
    color: var(--tp-gold);
}

.tp-gallery-item:hover .tp-gallery-item-overlay {
    opacity: 1;
}

.tp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
}

.tp-lightbox.active {
    display: flex;
}

.tp-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.tp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.tp-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 110, 0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px;
    cursor: pointer;
    transition: var(--tp-transition);
}

.tp-lightbox-nav:hover {
    background: rgba(201, 169, 110, 0.6);
}

.tp-lightbox-prev { left: 10px; }
.tp-lightbox-next { right: 10px; }

/* ---- Reviews ---- */
.tp-review-card {
    background: var(--tp-dark-2);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--tp-dark-3);
    display: flex;
    flex-direction: column;
    transition: var(--tp-transition);
}

.tp-review-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.tp-review-card .stars {
    color: var(--tp-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tp-review-card .review-text {
    font-style: italic;
    color: var(--tp-gray-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.tp-review-card .review-author {
    color: var(--tp-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.tp-review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.tp-review-card-name {
    color: var(--tp-white);
    font-size: 0.95rem;
}

.tp-review-card-stars {
    display: flex;
    gap: 2px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tp-review-card-text {
    color: var(--tp-gray-light);
    font-size: 0.93rem;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

/* Reviews summary */
.tp-reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 35px 40px;
    background: var(--tp-dark-2);
    border: 1px solid var(--tp-dark-3);
    border-radius: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tp-reviews-summary-rating {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tp-reviews-big-number {
    font-family: var(--tp-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--tp-white);
    line-height: 1;
}

.tp-reviews-summary-stars {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px;
}

.tp-reviews-summary-stars i {
    font-size: 1.1rem;
}

.tp-reviews-count {
    color: var(--tp-gray);
    font-size: 0.85rem;
    margin-left: 8px;
}

.tp-reviews-summary-google {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 40px;
    border-left: 1px solid var(--tp-dark-3);
    color: var(--tp-gray-light);
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 576px) {
    .tp-reviews-summary {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        text-align: center;
    }

    .tp-reviews-summary-google {
        border-left: none;
        padding-left: 0;
        padding-top: 15px;
        border-top: 1px solid var(--tp-dark-3);
    }
}

/* ---- Formularios ---- */
.tp-form .form-control,
.tp-form .form-select {
    background: var(--tp-dark-2);
    border: 1px solid var(--tp-dark-4);
    color: var(--tp-white);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: var(--tp-transition);
}

.tp-form .form-control:focus,
.tp-form .form-select:focus {
    border-color: var(--tp-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
    background: var(--tp-dark);
    color: var(--tp-white);
}

.tp-form .form-control::placeholder {
    color: var(--tp-gray);
}

.tp-form .form-label {
    color: var(--tp-gray-light);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.tp-form .form-check-input {
    background-color: var(--tp-dark-2);
    border-color: var(--tp-dark-4);
}

.tp-form .form-check-input:checked {
    background-color: var(--tp-gold);
    border-color: var(--tp-gold);
}

/* ---- Tabla de precios ---- */
.tp-price-table {
    width: 100%;
    border-collapse: collapse;
}

.tp-price-table th {
    background: var(--tp-dark-2);
    color: var(--tp-gold);
    padding: 12px 20px;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tp-price-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--tp-dark-3);
    color: var(--tp-gray-light);
}

.tp-price-table tr:hover td {
    background: var(--tp-dark);
}

.tp-price-table .price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tp-gold);
}

/* ---- Footer ---- */
.tp-footer {
    background: var(--tp-dark);
    border-top: 1px solid var(--tp-dark-3);
    padding: 60px 0 30px;
}

.tp-footer h5 {
    color: var(--tp-gold);
    font-family: var(--tp-font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.tp-footer p,
.tp-footer li {
    color: var(--tp-gray);
    font-size: 0.9rem;
    line-height: 1.8;
}

.tp-footer a {
    color: var(--tp-gray);
}

.tp-footer a:hover {
    color: var(--tp-gold);
}

.tp-footer-bottom {
    border-top: 1px solid var(--tp-dark-3);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: var(--tp-gray);
    font-size: 0.85rem;
}

.tp-footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.tp-footer-legal a {
    font-size: 0.8rem;
    color: var(--tp-gray);
}

/* ---- Botones flotantes de contacto ---- */
.tp-floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tp-floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--tp-transition);
    border: none;
    cursor: pointer;
}

.tp-floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.tp-floating-btn.whatsapp {
    background: #25d366;
}

.tp-floating-btn.phone {
    background: var(--tp-gold);
}

.tp-floating-btn.email {
    background: #6c757d;
}

/* ---- Promo banner ---- */
.tp-promo-bar {
    background: linear-gradient(90deg, var(--tp-gold-dark), var(--tp-gold));
    color: var(--tp-black);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---- Breadcrumb ---- */
.tp-breadcrumb {
    padding: 15px 0;
    font-size: 0.85rem;
}

.tp-breadcrumb a {
    color: var(--tp-gray);
}

.tp-breadcrumb span {
    color: var(--tp-gold);
}

/* ---- Animaciones fade-in ---- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 991px) {
    :root {
        --tp-header-top-height: 60px;
        --tp-header-bottom-height: 0px;
    }

    .tp-header {
        z-index: 2000;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .tp-header-top-inner {
        justify-content: space-between;
    }

    .tp-header-bottom {
        height: 0;
        overflow: visible;
        border-bottom: none;
    }

    .tp-logo img {
        height: 44px;
    }

    .tp-nav {
        position: fixed;
        top: var(--tp-header-top-height);
        left: 0;
        width: 100vw;
        height: calc(100vh - var(--tp-header-top-height));
        height: calc(100dvh - var(--tp-header-top-height));
        max-height: calc(100vh - var(--tp-header-top-height));
        max-height: calc(100dvh - var(--tp-header-top-height));
        z-index: 2050;
        background: #000;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
        gap: 5px;
        overflow-y: auto;
        transform: translateX(-100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }

    .tp-nav.open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .tp-nav li {
        width: 100%;
    }

    .tp-nav a {
        font-size: 1.1rem;
        padding: 12px 16px;
        width: 100%;
        display: block;
    }

    .tp-nav-toggle {
        display: block;
        position: relative;
        z-index: 2051;
    }

    .tp-lang-selector {
        margin-left: 0;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--tp-dark-3);
        justify-content: center;
        gap: 10px;
    }

    .tp-flag-link {
        padding: 5px;
        opacity: 0.85;
    }

    .tp-flag-link,
    .tp-lang-selector a {
        display: inline-flex !important;
        width: auto !important;
    }

    .tp-flag {
        width: 28px;
        height: 21px;
    }

    .tp-dropdown-menu {
        position: static;
        min-width: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.35s ease;
    }

    .tp-dropdown.open > .tp-dropdown-menu {
        max-height: 80vh;
        overflow-y: auto;
    }

    .tp-dropdown:hover > .tp-dropdown-menu {
        max-height: 0;
        overflow: hidden;
    }

    .tp-dropdown.open:hover > .tp-dropdown-menu {
        max-height: 80vh;
        overflow-y: auto;
    }

    .tp-dropdown-menu a {
        padding: 8px 16px 8px 30px;
        font-size: 0.95rem;
    }

    .tp-dropdown-menu .tp-dropdown-header a {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 8px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }

    .tp-hero-content h1 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .tp-review-slide {
        flex: 0 0 50%;
    }

    .tp-masaje-row-prices {
        border-left: none;
        border-top: 1px solid var(--tp-dark-3);
    }

    .tp-home-tabs a {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
}

@media (max-width: 576px) {
    .tp-hero {
        min-height: 500px;
    }

    .tp-hero-content h1 {
        font-size: 1.8rem;
    }

    .tp-floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .tp-floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .tp-slider-item {
        width: 100px;
    }

    .tp-slider-item img {
        width: 80px;
        height: 80px;
    }

    .tp-slider-name {
        font-size: 0.8rem;
    }

    .tp-review-slide {
        flex: 0 0 100%;
    }

    .tp-home-tabs {
        flex-wrap: wrap;
    }

    .tp-home-tabs a {
        flex: 0 0 50%;
        border-bottom: 1px solid var(--tp-dark-4);
    }
}

/* ---- Page header (para páginas interiores) ---- */
.tp-page-header {
    background: var(--tp-dark);
    margin-top: calc(-1 * var(--tp-header-height));
    padding: calc(var(--tp-header-height) + 20px) 0 20px;
    text-align: center;
    border-bottom: 1px solid var(--tp-dark-3);
}

.tp-page-header h1 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.tp-page-header p {
    font-size: 0.95rem;
}

/* ---- Perfil masajista (legacy) ---- */
.tp-profile-info {
    background: var(--tp-dark-2);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--tp-dark-3);
}

.tp-profile-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--tp-dark-3);
}

.tp-profile-info .info-item:last-child {
    border-bottom: none;
}

.tp-profile-info .info-label {
    color: var(--tp-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 120px;
}

.tp-profile-info .info-value {
    color: var(--tp-gray-light);
}

/* ---- Masajista Hero Mosaic ---- */
.tp-masajista-hero {
    position: relative;
    margin-top: calc(-1 * var(--tp-header-height));
    padding-top: var(--tp-header-height);
}

.tp-hero-mosaic {
    display: grid;
    gap: 4px;
    height: 65vh;
    min-height: 400px;
    max-height: 620px;
    overflow: hidden;
}

.tp-hero-mosaic--1 {
    grid-template-columns: 1fr;
}

.tp-hero-mosaic--2 {
    grid-template-columns: 1.3fr 1fr;
}

.tp-hero-mosaic--3 {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.tp-hero-mosaic--3 .tp-hero-mosaic-item:first-child {
    grid-row: 1 / 3;
}

.tp-hero-mosaic--4 {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.tp-hero-mosaic--4 .tp-hero-mosaic-item:first-child {
    grid-row: 1 / 3;
}

.tp-hero-mosaic--4 .tp-hero-mosaic-item:nth-child(4) {
    grid-column: 2 / 4;
}

.tp-hero-mosaic--5 {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.tp-hero-mosaic--5 .tp-hero-mosaic-item:first-child {
    grid-row: 1 / 3;
}

.tp-hero-mosaic-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tp-hero-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tp-hero-mosaic-item:hover img {
    transform: scale(1.05);
}

.tp-hero-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.8rem;
}

.tp-hero-mosaic-item:hover .tp-hero-mosaic-overlay {
    opacity: 1;
}

.tp-hero-mosaic-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    padding: 40px 0 12px;
    z-index: 2;
}

.tp-hero-mosaic-nav .tp-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.tp-hero-mosaic-nav .tp-breadcrumb a:hover {
    color: white;
}

.tp-hero-mosaic-nav .tp-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.tp-hero-mosaic-nav .tp-breadcrumb span:last-child {
    color: var(--tp-gold);
}

/* ---- Masajista Breadcrumb ---- */
.tp-masajista-breadcrumb {
    background: var(--tp-dark-2);
    padding: 12px 0;
    border-bottom: 1px solid var(--tp-dark-3);
}

.tp-masajista-breadcrumb .tp-breadcrumb a {
    color: var(--tp-gray-light);
}

.tp-masajista-breadcrumb .tp-breadcrumb a:hover {
    color: var(--tp-gold);
}

.tp-masajista-breadcrumb .tp-breadcrumb span {
    color: var(--tp-gray);
}

.tp-masajista-breadcrumb .tp-breadcrumb span:last-child {
    color: var(--tp-gold);
}

/* ---- Prev/Next Navigation ---- */
.tp-masajista-nav {
    background: var(--tp-dark-2);
    padding: 10px 0;
    border-bottom: 1px solid var(--tp-dark-3);
}

.tp-masajista-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tp-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--tp-transition);
}

.tp-masajista-nav-link:hover {
    color: var(--tp-gold-light);
}

[dir="rtl"] .tp-masajista-nav-link .bi-chevron-left,
[dir="rtl"] .tp-masajista-nav-link .bi-chevron-right {
    transform: scaleX(-1);
}

/* ---- Main Photo ---- */
.tp-main-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: sticky;
    top: calc(var(--tp-header-height) + 20px);
}

.tp-main-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.tp-main-photo:hover img {
    transform: scale(1.03);
}

.tp-main-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.8rem;
}

.tp-main-photo:hover .tp-main-photo-overlay {
    opacity: 1;
}

/* ---- CTA Banner ---- */
.tp-cta-banner {
    background: linear-gradient(135deg, #e8554e 0%, #c0392b 100%);
    padding: 22px 0;
    position: relative;
    text-align: center;
}

.tp-cta-banner h2 {
    color: #fff;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    font-weight: 600;
}

.tp-cta-arrow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 15px solid #c0392b;
    z-index: 1;
}

/* ---- Profile Card (v2) ---- */
.tp-profile-card {
    background: var(--tp-dark-2);
    border: 1px solid var(--tp-dark-3);
    border-radius: 12px;
    overflow: hidden;
}

.tp-profile-card-name {
    font-size: 1.8rem;
    margin: 0;
    padding: 25px 25px 20px;
    border-bottom: 2px solid var(--tp-gold);
}

.tp-profile-card-stats {
    padding: 0;
}

.tp-profile-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-bottom: 1px solid var(--tp-dark-3);
}

.tp-profile-stat:last-child {
    border-bottom: none;
}

.tp-profile-stat > i {
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.tp-profile-stat-label {
    display: block;
    color: var(--tp-gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    font-weight: 600;
}

.tp-profile-stat-value {
    display: block;
    color: var(--tp-white);
    font-size: 0.95rem;
}

.tp-profile-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 25px;
    border-top: 1px solid var(--tp-dark-3);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--tp-gold);
    color: var(--tp-dark);
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--tp-transition);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: var(--tp-gold-light);
    color: var(--tp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
}

.btn-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--tp-gold);
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--tp-gold);
    transition: var(--tp-transition);
    text-decoration: none;
}

.btn-phone:hover {
    background: var(--tp-gold);
    color: var(--tp-black);
    transform: translateY(-2px);
}

/* ---- Profile Description ---- */
.tp-profile-description {
    color: var(--tp-gray-light);
    line-height: 1.9;
    font-size: 1rem;
    padding: 25px 30px;
    background: var(--tp-dark-2);
    border: 1px solid var(--tp-dark-3);
    border-radius: 12px;
    border-left: 3px solid var(--tp-gold);
}

.tp-profile-description p {
    margin-bottom: 10px;
}

.tp-profile-description p:last-child {
    margin-bottom: 0;
}

/* ---- Gallery Title ---- */
.tp-gallery-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.tp-gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--tp-gold);
}

/* Gallery inside profile column: 3 cols */
.col-lg-8 .tp-gallery,
.col-lg-7 .tp-gallery {
    grid-template-columns: repeat(3, 1fr);
}

/* ---- Masajista Responsive ---- */
@media (max-width: 991.98px) {
    .tp-main-photo {
        position: static;
    }

    .tp-profile-card {
        position: static;
    }

    .col-lg-7 .tp-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575.98px) {
    .tp-cta-banner h2 {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .tp-profile-card-name {
        font-size: 1.5rem;
        padding: 20px 20px 15px;
    }

    .tp-profile-stat {
        padding: 12px 20px;
    }

    .tp-profile-card-actions {
        padding: 15px 20px;
    }

    .tp-profile-description {
        padding: 20px;
    }

    .col-lg-8 .tp-gallery,
    .col-lg-7 .tp-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Content pages ---- */
.tp-content {
    color: var(--tp-gray-light);
    line-height: 1.9;
}

.tp-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.tp-content h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.tp-content p {
    margin-bottom: 15px;
}

.tp-content ul, .tp-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.tp-content li {
    margin-bottom: 8px;
}

.tp-content a {
    color: var(--tp-gold);
    text-decoration: underline;
}

/* ---- Error page ---- */
.tp-error-page {
    position: relative;
    min-height: calc(100vh - var(--tp-header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
        var(--tp-black);
}

.tp-error-bg-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(20rem, 50vw, 40rem);
    color: var(--tp-gold);
    opacity: 0.025;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.tp-error-content {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tp-error-code-wrap {
    margin-bottom: 32px;
}

.tp-error-code {
    font-family: var(--tp-font-heading);
    font-size: clamp(6rem, 18vw, 10rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(
        180deg,
        var(--tp-gold-light) 0%,
        var(--tp-gold) 40%,
        var(--tp-gold-dark) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(201, 169, 110, 0.15));
}

.tp-error-title {
    font-family: var(--tp-font-heading);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--tp-white);
    margin-bottom: 16px;
    font-weight: 500;
    font-style: italic;
}

.tp-error-message {
    color: var(--tp-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.tp-error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tp-error-hint {
    color: var(--tp-gray);
    font-size: 0.9rem;
}

.tp-error-hint a {
    color: var(--tp-gold);
    text-decoration: none;
    font-weight: 500;
}

.tp-error-hint a:hover {
    text-decoration: underline;
}

/* ---- Parking Banner ---- */
.tp-parking-banner {
    padding: 1.5rem 0;
}

.tp-parking-box {
    background: #f8f5ef;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.tp-parking-box > i {
    font-size: 2.8rem;
    color: #4a6fa5;
    flex-shrink: 0;
}

.tp-parking-box h3 {
    color: #4a6fa5;
    font-size: 1.4rem;
    margin-bottom: .4rem;
}

.tp-parking-box p {
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 575.98px) {
    .tp-parking-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

/* Features list (instalaciones, etc.) */
.tp-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tp-features-list li {
    padding: 10px 0;
    color: var(--tp-light);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--tp-dark-3);
}

.tp-features-list li:last-child {
    border-bottom: none;
}
