/* ===========================================
   TURISMO - Estilos especificos
   =========================================== */

/* ===========================================
   HEADER DE PAGINA
   =========================================== */

.turismo-page-header {
    text-align: center;
    padding: 2rem 0 1.5rem 0;
    margin-bottom: 1rem;
    position: relative;
}

.turismo-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    border-radius: 2px;
}

.turismo-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.turismo-page-title .icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

.turismo-page-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
}

/* ===========================================
   SECCION DESTACADOS
   =========================================== */

.turismo-featured-section {
    margin-bottom: 1.5rem;
}

.turismo-featured-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.turismo-featured-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #34d399;
}

.turismo-featured-title span {
    font-size: 1.1rem;
}

.turismo-featured-dots {
    display: flex;
    gap: 0.5rem;
}

.turismo-featured-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.turismo-featured-dot.active {
    background: #34d399;
    width: 24px;
    border-radius: 4px;
}

.turismo-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Card destacada */
.turismo-featured-card {
    background: linear-gradient(145deg, rgba(20, 50, 45, 0.95), rgba(15, 35, 30, 0.98));
    border: 2px solid rgba(52, 211, 153, 0.4);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.turismo-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399, #10b981);
    z-index: 2;
}

.turismo-featured-card:hover {
    transform: translateY(-4px);
    border-color: rgba(52, 211, 153, 0.7);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.25);
}

.turismo-featured-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.turismo-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.turismo-featured-card:hover .turismo-featured-image img {
    transform: scale(1.08);
}

.turismo-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    pointer-events: none;
}

.turismo-featured-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.5);
}

.turismo-featured-category {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.55rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    backdrop-filter: blur(4px);
    text-transform: capitalize;
    letter-spacing: 0.2px;
    z-index: 3;
}

.turismo-featured-info {
    padding: 1rem;
}

.turismo-featured-name {
    font-size: 1rem;
    font-weight: 700;
    color: #a7f3d0;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.turismo-featured-desc {
    font-size: 0.8rem;
    color: #d4d4d4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.turismo-featured-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.turismo-featured-meta span {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.turismo-featured-entry {
    color: #34d399 !important;
    font-weight: 600;
}

.turismo-featured-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-turismo-view {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-turismo-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-turismo-map {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: #34d399;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-turismo-map:hover {
    background: rgba(52, 211, 153, 0.25);
    border-color: rgba(52, 211, 153, 0.5);
}


/* ===========================================
   CHIPS DE CATEGORIAS
   =========================================== */

.turismo-category-chips {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 0 1rem 0;
    overflow: visible;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.turismo-category-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.turismo-category-chip:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    color: #a7f3d0;
}

.turismo-category-chip.active {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.turismo-category-chip .chip-icon {
    font-size: 1rem;
}

/* Dropdown de categorias */
.turismo-category-dropdown {
    position: relative;
    display: inline-flex;
}

.turismo-category-chip.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
}

.turismo-category-chip .dropdown-arrow {
    font-size: 0.55rem;
    margin-left: 0.15rem;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.turismo-category-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.turismo-category-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    background: rgba(15, 35, 30, 0.98);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    display: none;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.turismo-category-dropdown.open .turismo-category-dropdown-menu {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.turismo-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #6ee7b7;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
}

.turismo-dropdown-item:hover {
    background: rgba(16, 185, 129, 0.2);
    color: #a7f3d0;
}

.turismo-dropdown-item.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

/* Scrollbar del dropdown */
.turismo-category-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.turismo-category-dropdown-menu::-webkit-scrollbar-track {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 3px;
}

.turismo-category-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.4);
    border-radius: 3px;
}

.turismo-category-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.6);
}

/* ===========================================
   BARRA DE FILTROS
   =========================================== */

.turismo-filter-bar {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    flex-wrap: wrap;
    align-items: center;
}

.turismo-filter-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.turismo-filter-wrapper .filter-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-size: 0.9rem;
}

.turismo-filter-input {
    width: 100%;
    padding: 0.6rem 0.75rem 0.6rem 2.25rem;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(30, 30, 40, 0.8);
    color: #f1f5f9;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.turismo-filter-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.turismo-filter-input::placeholder {
    color: #64748b;
}

.turismo-filter-bar .form-control {
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(30, 30, 40, 0.8);
    color: #f1f5f9;
    font-size: 0.9rem;
    min-width: 140px;
}

.turismo-filter-bar .form-control:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* ===========================================
   BARRA DE RESULTADOS
   =========================================== */

.turismo-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0 1rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    margin-bottom: 1rem;
}

.turismo-results-count {
    color: #94a3b8;
    font-size: 0.85rem;
}

.turismo-results-count strong {
    color: #a7f3d0;
}

/* ===========================================
   GRID DE PUNTOS DE INTERES
   =========================================== */

.turismo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

/* ===========================================
   CARDS DE PUNTOS DE INTERES
   =========================================== */

.poi-card {
    background: linear-gradient(145deg, rgba(20, 30, 35, 0.9), rgba(15, 25, 30, 0.95));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.poi-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.2);
}

/* Card destacada */
.poi-card.featured {
    border: 2px solid rgba(52, 211, 153, 0.5);
    background: linear-gradient(145deg, rgba(20, 50, 45, 0.95), rgba(15, 35, 30, 0.98));
    position: relative;
}

.poi-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399, #10b981);
    z-index: 2;
}

.poi-card.featured:hover {
    border-color: rgba(52, 211, 153, 0.8);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.3);
}

.poi-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.poi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.poi-card:hover .poi-image img {
    transform: scale(1.08);
}

.poi-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    pointer-events: none;
}

.poi-badge {
    position: absolute !important;
    top: 0.6rem !important;
    left: 0.6rem !important;
    right: auto !important;
    bottom: auto !important;
    padding: 0.3rem 0.6rem !important;
    border-radius: 6px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    background: rgba(16, 185, 129, 0.9) !important;
    color: #fff !important;
    backdrop-filter: blur(4px);
    border: none !important;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    display: inline-block !important;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.poi-featured-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.poi-info {
    padding: 1.25rem;
}

.poi-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.poi-title a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.2s ease;
}

.poi-title a:hover {
    color: #6ee7b7;
}

.poi-card.featured .poi-title a {
    color: #a7f3d0;
}

.poi-card.featured .poi-title a:hover {
    color: #34d399;
}

.poi-description {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.poi-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: center;
}

.poi-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #94a3b8;
    font-size: 0.8rem;
}

.poi-meta .entry-fee {
    color: #34d399;
    font-weight: 700;
    font-size: 0.85rem;
    background: rgba(16, 185, 129, 0.15);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.poi-meta .free-entry {
    color: #4ade80;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.15);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.poi-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.poi-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.poi-action-btn.view {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
}

.poi-action-btn.view:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.poi-action-btn.map {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.poi-action-btn.map:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
}

/* ===========================================
   ESTADOS
   =========================================== */

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.turismo-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1.5rem;
    color: #94a3b8;
}

.turismo-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.turismo-empty-text {
    font-size: 1rem;
    color: #64748b;
}

/* Paginacion */
.pagination-container {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
}

/* ===========================================
   SIDEBAR WIDGETS - TURISMO
   =========================================== */

.turismo-widget {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(20, 20, 30, 0.95));
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.turismo-widget .widget-title {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* ===========================================
   MODAL DE DETALLE POI
   =========================================== */

.poi-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.poi-modal.active {
    display: block;
}

.poi-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.poi-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: linear-gradient(145deg, rgba(20, 40, 35, 0.98), rgba(15, 30, 25, 0.99));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 20px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(16, 185, 129, 0.15);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.poi-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.poi-modal-close:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: transparent;
    transform: rotate(90deg);
}

/* Modal Header/Image */
.poi-modal-header {
    position: relative;
}

.poi-modal-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.poi-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poi-modal-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(15, 30, 25, 1), transparent);
    pointer-events: none;
}

.poi-modal-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
    backdrop-filter: blur(4px);
    text-transform: capitalize;
    z-index: 5;
}

.poi-modal-featured {
    position: absolute;
    top: 1rem;
    right: 3.5rem;
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    z-index: 5;
}

/* Modal Body */
.poi-modal-body {
    padding: 1.5rem;
    max-height: calc(90vh - 250px);
    overflow-y: auto;
}

.poi-modal-body::-webkit-scrollbar {
    width: 6px;
}

.poi-modal-body::-webkit-scrollbar-track {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 3px;
}

.poi-modal-body::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.4);
    border-radius: 3px;
}

.poi-modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #a7f3d0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.poi-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.poi-modal-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.poi-modal-meta-item .icon {
    font-size: 1rem;
}

.poi-modal-meta-item.entry-fee {
    color: #34d399;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
}

.poi-modal-meta-item.free-entry {
    color: #4ade80;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
}

.poi-modal-address,
.poi-modal-schedule {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
}

.poi-modal-address .icon,
.poi-modal-schedule .icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.poi-modal-description {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.poi-modal-description h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #34d399;
    margin-bottom: 0.75rem;
}

.poi-modal-description p {
    font-size: 0.95rem;
    color: #d4d4d4;
    line-height: 1.7;
    white-space: pre-wrap;
}

/* Modal Actions */
.poi-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.poi-modal-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.poi-modal-action-btn.map {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    flex: 1;
    min-width: 120px;
}

.poi-modal-action-btn.map:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.poi-modal-action-btn.directions {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.poi-modal-action-btn.directions:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.6);
}

.poi-modal-action-btn.phone {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.poi-modal-action-btn.phone:hover {
    background: rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.6);
}

.poi-modal-action-btn.website {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #c084fc;
}

.poi-modal-action-btn.website:hover {
    background: rgba(168, 85, 247, 0.25);
    border-color: rgba(168, 85, 247, 0.6);
}

/* Modal Loading */
.poi-modal-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: #94a3b8;
}

.poi-modal-loading p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Modal Error */
.poi-modal-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.poi-modal-error .error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.poi-modal-error p {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.poi-modal-error .btn-retry {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.poi-modal-error .btn-retry:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* POI title text fix */
.poi-title-text {
    color: #f1f5f9;
    cursor: pointer;
    transition: color 0.2s ease;
}

.poi-card:hover .poi-title-text {
    color: #6ee7b7;
}

.poi-card.featured .poi-title-text {
    color: #a7f3d0;
}

/* ===========================================
   CARRUSEL DE IMAGENES DEL MODAL
   =========================================== */

.poi-modal-carousel {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #0a1612;
}

.poi-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.poi-carousel-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.poi-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navegacion del carrusel - flechas */
.poi-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    opacity: 0;
}

.poi-modal-carousel:hover .poi-carousel-nav {
    opacity: 1;
}

.poi-carousel-nav:hover {
    background: rgba(16, 185, 129, 0.8);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.poi-carousel-nav.prev {
    left: 0.75rem;
}

.poi-carousel-nav.next {
    right: 0.75rem;
}

/* Dots de navegacion */
.poi-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.poi-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.poi-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.poi-carousel-dot.active {
    background: #10b981;
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Contador de imagenes */
.poi-carousel-counter {
    position: absolute;
    top: 1rem;
    right: 3.5rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    backdrop-filter: blur(4px);
    z-index: 10;
}

/* Ajustar badges sobre el carrusel */
.poi-modal-carousel .poi-modal-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.poi-modal-carousel .poi-modal-featured {
    position: absolute;
    top: 3rem;
    left: 1rem;
    z-index: 10;
}

/* Gradient overlay en carrusel */
.poi-modal-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(15, 30, 25, 1), transparent);
    pointer-events: none;
    z-index: 5;
}

/* ===========================================
   CARRUSEL RESPONSIVE - MOBILE
   =========================================== */

@media (max-width: 768px) {
    .poi-modal-carousel {
        height: 220px;
    }

    /* En mobile, mostrar siempre las flechas */
    .poi-carousel-nav {
        opacity: 0.8;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .poi-carousel-nav.prev {
        left: 0.5rem;
    }

    .poi-carousel-nav.next {
        right: 0.5rem;
    }

    /* Dots mas grandes para touch */
    .poi-carousel-dot {
        width: 10px;
        height: 10px;
    }

    .poi-carousel-dot.active {
        width: 28px;
    }

    .poi-carousel-dots {
        bottom: 0.75rem;
        gap: 0.6rem;
    }

    /* Indicador de swipe (hint) */
    .poi-modal-carousel::before {
        content: '← Desliza →';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 500;
        background: rgba(0, 0, 0, 0.7);
        color: rgba(255, 255, 255, 0.8);
        z-index: 15;
        opacity: 0;
        pointer-events: none;
        animation: swipeHint 3s ease-in-out 1s 1;
    }
}

@keyframes swipeHint {
    0%, 100% { opacity: 0; }
    20%, 80% { opacity: 1; }
}

/* Solo mostrar hint si hay mas de 1 imagen */
.poi-modal-carousel:has(.poi-carousel-dots)::before {
    animation: swipeHint 3s ease-in-out 1s 1;
}

.poi-modal-carousel:not(:has(.poi-carousel-dots))::before {
    display: none;
}

