/* =====================================================
   TOORIZ DESIGN SYSTEM - Inspirado em Airbnb & Tripadvisor
   ===================================================== */

/* ===================
   CSS Variables
   =================== */
:root {
    /* Colors - Primary */
    --tr-primary: #FF385C;
    --tr-primary-dark: #E31C5F;
    --tr-primary-light: #FF5A5F;
    
    /* Colors - Secondary (Blue gradient) */
    --tr-secondary: #1D72F1;
    --tr-secondary-dark: #1557B0;
    --tr-secondary-light: #1C92F5;
    
    /* Colors - Neutrals */
    --tr-black: #222222;
    --tr-gray-900: #484848;
    --tr-gray-700: #717171;
    --tr-gray-500: #B0B0B0;
    --tr-gray-300: #DDDDDD;
    --tr-gray-100: #F7F7F7;
    --tr-white: #FFFFFF;
    
    /* Colors - Semantic */
    --tr-success: #00A699;
    --tr-warning: #FFB400;
    --tr-error: #FF385C;
    --tr-info: #1D72F1;
    
    /* Colors - Rating */
    --tr-star: #FFB400;
    --tr-star-empty: #E0E0E0;
    
    /* Typography - Fonts */
    --tr-font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --tr-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --tr-font-weight-normal: 400;
    --tr-font-weight-medium: 500;
    --tr-font-weight-semibold: 600;
    --tr-font-weight-bold: 700;
    --tr-font-weight-extrabold: 800;
    
    /* Spacing */
    --tr-space-xs: 4px;
    --tr-space-sm: 8px;
    --tr-space-md: 16px;
    --tr-space-lg: 24px;
    --tr-space-xl: 32px;
    --tr-space-2xl: 48px;
    --tr-space-3xl: 64px;
    
    /* Border Radius */
    --tr-radius-sm: 8px;
    --tr-radius-md: 12px;
    --tr-radius-btn: 14px; /* Padrão para botões */
    --tr-radius-lg: 16px;
    --tr-radius-xl: 24px;
    --tr-radius-full: 9999px;
    
    /* Shadows */
    --tr-shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
    --tr-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --tr-shadow-lg: 0 8px 28px rgba(0,0,0,0.12);
    --tr-shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
    --tr-shadow-card: 0 6px 20px rgba(0,0,0,0.08);
    --tr-shadow-card-hover: 0 12px 36px rgba(0,0,0,0.15);
    
    /* Transitions */
    --tr-transition-fast: 150ms ease;
    --tr-transition-normal: 250ms ease;
    --tr-transition-slow: 350ms ease;
    
    /* Container */
    --tr-container-max: 1280px;
    --tr-container-padding: 24px;
}

/* =====================================================
   BUTTONS - Sistema Padronizado
   ===================================================== */

/* Base Button */
.tr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--tr-font-heading);
    font-size: 15px;
    font-weight: var(--tr-font-weight-semibold);
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: var(--tr-radius-btn);
    cursor: pointer;
    transition: all var(--tr-transition-fast);
}

.tr-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Primary Button - Azul Gradiente */
.tr-btn-primary {
    background: linear-gradient(135deg, var(--tr-secondary) 0%, var(--tr-secondary-light) 100%);
    color: var(--tr-white);
    border: none;
}

.tr-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29, 114, 241, 0.35);
    color: var(--tr-white);
}

.tr-btn-primary:active {
    transform: translateY(0);
}

/* Secondary Button - Azul Sólido */
.tr-btn-blue {
    background: var(--tr-secondary);
    color: var(--tr-white);
    border: 1px solid var(--tr-secondary);
}

.tr-btn-blue:hover {
    background: var(--tr-white);
    color: var(--tr-secondary);
    border-color: var(--tr-secondary);
}

/* Outline Button */
.tr-btn-outline {
    background: transparent;
    color: var(--tr-black);
    border: 1px solid var(--tr-gray-300);
}

.tr-btn-outline:hover {
    background: var(--tr-gray-100);
    border-color: var(--tr-gray-500);
}

/* Outline Blue Button */
.tr-btn-outline-blue {
    background: transparent;
    color: var(--tr-secondary);
    border: 1px solid var(--tr-secondary);
}

.tr-btn-outline-blue:hover {
    background: var(--tr-secondary);
    color: var(--tr-white);
}

/* White Button */
.tr-btn-white {
    background: var(--tr-white);
    color: var(--tr-black);
    border: none;
    box-shadow: var(--tr-shadow-md);
}

.tr-btn-white:hover {
    box-shadow: var(--tr-shadow-lg);
    transform: translateY(-2px);
}

/* Ghost Button */
.tr-btn-ghost {
    background: transparent;
    color: var(--tr-gray-700);
    border: none;
    padding: 10px 16px;
}

.tr-btn-ghost:hover {
    background: var(--tr-gray-100);
    color: var(--tr-black);
}

/* Button Sizes */
.tr-btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.tr-btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

.tr-btn-xl {
    padding: 20px 48px;
    font-size: 18px;
}

/* Full Width */
.tr-btn-full {
    width: 100%;
}

/* Icon Only */
.tr-btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
}

.tr-btn-icon.tr-btn-sm {
    width: 36px;
    height: 36px;
}

.tr-btn-icon.tr-btn-lg {
    width: 52px;
    height: 52px;
}

/* ===================
   Base Styles
   =================== */
.tr-container {
    max-width: var(--tr-container-max);
    margin: 0 auto;
    padding: 0 var(--tr-container-padding);
}

@media (max-width: 768px) {
    :root {
        --tr-container-padding: 16px;
    }
}

/* ===================
   Typography
   =================== */
.tr-heading-1 {
    font-size: 32px;
    font-weight: var(--tr-font-weight-bold);
    line-height: 1.2;
    color: var(--tr-black);
    letter-spacing: -0.02em;
}

.tr-heading-2 {
    font-size: 26px;
    font-weight: var(--tr-font-weight-semibold);
    line-height: 1.25;
    color: var(--tr-black);
    letter-spacing: -0.01em;
}

.tr-heading-3 {
    font-size: 22px;
    font-weight: var(--tr-font-weight-semibold);
    line-height: 1.3;
    color: var(--tr-black);
}

.tr-heading-4 {
    font-size: 18px;
    font-weight: var(--tr-font-weight-semibold);
    line-height: 1.35;
    color: var(--tr-black);
}

.tr-text-lg {
    font-size: 18px;
    line-height: 1.5;
    color: var(--tr-gray-900);
}

.tr-text-base {
    font-size: 16px;
    line-height: 1.5;
    color: var(--tr-gray-900);
}

.tr-text-sm {
    font-size: 14px;
    line-height: 1.45;
    color: var(--tr-gray-700);
}

.tr-text-xs {
    font-size: 12px;
    line-height: 1.4;
    color: var(--tr-gray-700);
}

.tr-text-muted {
    color: var(--tr-gray-700);
}

@media (max-width: 768px) {
    .tr-heading-1 { font-size: 26px; }
    .tr-heading-2 { font-size: 22px; }
    .tr-heading-3 { font-size: 18px; }
}

/* ===================
   POI Card - Airbnb Style
   =================== */
.tr-poi-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: var(--tr-transition-normal);
}

.tr-poi-card:hover {
    text-decoration: none;
    color: inherit;
}

.tr-poi-card__image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--tr-radius-lg);
    overflow: hidden;
    background: var(--tr-gray-100);
}

.tr-poi-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-transition-slow);
}

.tr-poi-card:hover .tr-poi-card__image {
    transform: scale(1.03);
}

.tr-poi-card__favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: var(--tr-transition-fast);
}

.tr-poi-card__favorite svg {
    width: 24px;
    height: 24px;
    fill: rgba(0,0,0,0.5);
    stroke: white;
    stroke-width: 2;
    transition: var(--tr-transition-fast);
}

.tr-poi-card__favorite:hover svg {
    transform: scale(1.1);
}

.tr-poi-card__favorite.is-active svg {
    fill: var(--tr-primary);
    stroke: var(--tr-primary);
}

.tr-poi-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    background: var(--tr-white);
    border-radius: var(--tr-radius-sm);
    font-size: 12px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    box-shadow: var(--tr-shadow-sm);
}

.tr-poi-card__carousel {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.tr-poi-card__carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transition: var(--tr-transition-fast);
}

.tr-poi-card__carousel-dot.is-active {
    background: var(--tr-white);
    transform: scale(1.2);
}

.tr-poi-card__content {
    padding-top: 12px;
}

.tr-poi-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 2px;
}

.tr-poi-card__title {
    font-size: 15px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    line-height: 1.35;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.tr-poi-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.tr-poi-card__rating-star {
    width: 12px;
    height: 12px;
    fill: var(--tr-black);
}

.tr-poi-card__rating-value {
    font-size: 15px;
    font-weight: var(--tr-font-weight-medium);
    color: var(--tr-black);
}

.tr-poi-card__location {
    font-size: 15px;
    color: var(--tr-gray-700);
    margin: 0;
    line-height: 1.4;
}

.tr-poi-card__category {
    font-size: 15px;
    color: var(--tr-gray-700);
    margin: 0;
    line-height: 1.4;
}

.tr-poi-card__meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.tr-poi-card__reviews {
    font-size: 14px;
    color: var(--tr-gray-700);
}

/* Card Grid */
.tr-poi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .tr-poi-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .tr-poi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 540px) {
    .tr-poi-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===================
   POI Card - Horizontal (for lists)
   =================== */
.tr-poi-card-h {
    display: flex;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    padding: 16px;
    background: var(--tr-white);
    border-radius: var(--tr-radius-md);
    transition: var(--tr-transition-normal);
    border: 1px solid var(--tr-gray-300);
}

.tr-poi-card-h:hover {
    box-shadow: var(--tr-shadow-md);
    border-color: transparent;
}

.tr-poi-card-h__image-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--tr-radius-sm);
    overflow: hidden;
}

.tr-poi-card-h__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tr-poi-card-h__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tr-poi-card-h__title {
    font-size: 16px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    margin: 0 0 4px;
    line-height: 1.3;
}

.tr-poi-card-h__location {
    font-size: 14px;
    color: var(--tr-gray-700);
    margin: 0 0 8px;
}

.tr-poi-card-h__description {
    font-size: 14px;
    color: var(--tr-gray-700);
    line-height: 1.45;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tr-poi-card-h__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
}

.tr-poi-card-h__rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tr-poi-card-h__rating-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 24px;
    padding: 0 6px;
    background: var(--tr-success);
    color: var(--tr-white);
    border-radius: var(--tr-radius-sm);
    font-size: 13px;
    font-weight: var(--tr-font-weight-semibold);
}

/* ===================
   Search Page Styles
   =================== */
.tr-search-layout {
    display: flex;
    gap: 32px;
    padding: 24px 0;
}

.tr-search-filters {
    flex-shrink: 0;
    width: 280px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.tr-search-results {
    flex: 1;
    min-width: 0;
}

@media (max-width: 1024px) {
    .tr-search-layout {
        flex-direction: column;
    }
    
    .tr-search-filters {
        width: 100%;
        position: static;
    }
}

/* Filter Card */
.tr-filter-card {
    background: var(--tr-white);
    border-radius: var(--tr-radius-md);
    border: 1px solid var(--tr-gray-300);
    padding: 20px;
    margin-bottom: 16px;
}

.tr-filter-card__title {
    font-size: 16px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--tr-gray-300);
}

.tr-filter-group {
    margin-bottom: 12px;
}

.tr-filter-group:last-child {
    margin-bottom: 0;
}

.tr-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
}

.tr-filter-checkbox input {
    display: none;
}

.tr-filter-checkbox__box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--tr-gray-500);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr-transition-fast);
}

.tr-filter-checkbox input:checked + .tr-filter-checkbox__box {
    background: var(--tr-black);
    border-color: var(--tr-black);
}

.tr-filter-checkbox__box svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    opacity: 0;
    transition: var(--tr-transition-fast);
}

.tr-filter-checkbox input:checked + .tr-filter-checkbox__box svg {
    opacity: 1;
}

.tr-filter-checkbox__label {
    font-size: 14px;
    color: var(--tr-gray-900);
}

.tr-filter-checkbox__count {
    margin-left: auto;
    font-size: 14px;
    color: var(--tr-gray-700);
}

/* Search Header */
.tr-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.tr-search-header__info {
    font-size: 14px;
    color: var(--tr-gray-700);
}

.tr-search-header__info strong {
    color: var(--tr-black);
    font-weight: var(--tr-font-weight-semibold);
}

.tr-search-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Sort Select */
.tr-select {
    appearance: none;
    padding: 10px 36px 10px 16px;
    background: var(--tr-white);
    border: 1px solid var(--tr-gray-300);
    border-radius: var(--tr-radius-full);
    font-size: 14px;
    font-weight: var(--tr-font-weight-medium);
    color: var(--tr-black);
    cursor: pointer;
    transition: var(--tr-transition-fast);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.tr-select:hover {
    border-color: var(--tr-black);
}

.tr-select:focus {
    outline: none;
    border-color: var(--tr-black);
    box-shadow: 0 0 0 2px rgba(34,34,34,0.1);
}

/* View Toggle */
.tr-view-toggle {
    display: flex;
    border: 1px solid var(--tr-gray-300);
    border-radius: var(--tr-radius-full);
    overflow: hidden;
}

.tr-view-toggle__btn {
    padding: 10px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: var(--tr-font-weight-medium);
    color: var(--tr-gray-700);
    transition: var(--tr-transition-fast);
}

.tr-view-toggle__btn:not(:last-child) {
    border-right: 1px solid var(--tr-gray-300);
}

.tr-view-toggle__btn.is-active {
    background: var(--tr-gray-100);
    color: var(--tr-black);
}

.tr-view-toggle__btn svg {
    width: 16px;
    height: 16px;
}

/* ===================
   POI Detail Page
   =================== */
.tr-poi-detail {
    padding-bottom: 64px;
}

/* Gallery */
.tr-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-radius: var(--tr-radius-lg);
    overflow: hidden;
    height: 460px;
}

.tr-gallery__main {
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tr-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-transition-slow);
}

.tr-gallery__main:hover img {
    transform: scale(1.02);
}

.tr-gallery__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.tr-gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tr-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--tr-transition-slow);
}

.tr-gallery__item:hover img {
    transform: scale(1.05);
}

.tr-gallery__more {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 8px 16px;
    background: var(--tr-white);
    border: 1px solid var(--tr-black);
    border-radius: var(--tr-radius-sm);
    font-size: 14px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    cursor: pointer;
    transition: var(--tr-transition-fast);
}

.tr-gallery__more:hover {
    background: var(--tr-black);
    color: var(--tr-white);
}

@media (max-width: 768px) {
    .tr-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .tr-gallery__main {
        grid-row: auto;
        height: 280px;
    }
    
    .tr-gallery__side {
        display: none;
    }
}

/* Detail Header */
.tr-detail-header {
    padding: 24px 0;
    border-bottom: 1px solid var(--tr-gray-300);
}

.tr-detail-header__title {
    font-size: 28px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    margin: 0 0 8px;
    line-height: 1.25;
}

.tr-detail-header__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
}

.tr-detail-header__rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tr-detail-header__rating svg {
    width: 14px;
    height: 14px;
    fill: var(--tr-black);
}

.tr-detail-header__rating-value {
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
}

.tr-detail-header__reviews {
    text-decoration: underline;
    color: var(--tr-gray-900);
}

.tr-detail-header__location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--tr-gray-900);
}

.tr-detail-header__location svg {
    width: 16px;
    height: 16px;
}

.tr-detail-header__actions {
    margin-left: auto;
    display: flex;
    gap: 12px;
}

.tr-detail-header__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    cursor: pointer;
    text-decoration: underline;
    transition: var(--tr-transition-fast);
}

.tr-detail-header__btn svg {
    width: 16px;
    height: 16px;
}

.tr-detail-header__btn:hover {
    color: var(--tr-gray-700);
}

@media (max-width: 768px) {
    .tr-detail-header__title {
        font-size: 24px;
    }
    
    .tr-detail-header__actions {
        width: 100%;
        margin-left: 0;
        margin-top: 16px;
    }
}

/* Detail Layout */
.tr-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    padding: 32px 0;
}

.tr-detail-main {
    min-width: 0;
}

.tr-detail-sidebar {
    position: relative;
}

@media (max-width: 1024px) {
    .tr-detail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .tr-detail-sidebar {
        order: -1;
    }
}

/* Detail Sections */
.tr-detail-section {
    padding: 32px 0;
    border-bottom: 1px solid var(--tr-gray-300);
}

.tr-detail-section:first-child {
    padding-top: 0;
}

.tr-detail-section__title {
    font-size: 22px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    margin: 0 0 16px;
}

.tr-detail-section__subtitle {
    font-size: 16px;
    font-weight: var(--tr-font-weight-medium);
    color: var(--tr-gray-700);
    margin: 0 0 24px;
}

/* Host/Place Info */
.tr-host-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tr-host-info__content h3 {
    font-size: 22px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    margin: 0 0 4px;
}

.tr-host-info__content p {
    font-size: 16px;
    color: var(--tr-gray-700);
    margin: 0;
}

.tr-host-info__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.tr-host-info__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tr-host-info__icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--tr-primary);
    stroke-width: 1.5;
    fill: none;
}

.tr-host-info__icon .emoji-icon {
    font-size: 48px;
    line-height: 1;
}

/* Features Grid */
.tr-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tr-feature {
    display: flex;
    gap: 16px;
    padding: 16px 0;
}

.tr-feature__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-feature__icon svg {
    width: 24px;
    height: 24px;
    color: var(--tr-black);
}

.tr-feature__content h4 {
    font-size: 16px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    margin: 0 0 4px;
}

.tr-feature__content p {
    font-size: 14px;
    color: var(--tr-gray-700);
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .tr-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Description */
.tr-description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--tr-gray-900);
}

.tr-description p {
    margin: 0 0 16px;
}

.tr-description p:last-child {
    margin-bottom: 0;
}

.tr-show-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    text-decoration: underline;
    cursor: pointer;
}

.tr-show-more svg {
    width: 16px;
    height: 16px;
}

/* Amenities */
.tr-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.tr-amenity {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.tr-amenity svg {
    width: 24px;
    height: 24px;
    color: var(--tr-black);
    flex-shrink: 0;
}

.tr-amenity span {
    font-size: 16px;
    color: var(--tr-gray-900);
}

@media (max-width: 640px) {
    .tr-amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Card */
.tr-booking-card {
    position: sticky;
    top: 100px;
    background: var(--tr-white);
    border: 1px solid var(--tr-gray-300);
    border-radius: var(--tr-radius-lg);
    padding: 24px;
    box-shadow: var(--tr-shadow-lg);
}

.tr-booking-card__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
}

.tr-booking-card__price {
    font-size: 22px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
}

.tr-booking-card__price span {
    font-size: 16px;
    font-weight: var(--tr-font-weight-normal);
    color: var(--tr-gray-700);
}

.tr-booking-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.tr-booking-card__rating svg {
    width: 12px;
    height: 12px;
    fill: var(--tr-black);
}

.tr-booking-card__info {
    margin-bottom: 16px;
}

.tr-booking-card__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--tr-gray-300);
}

.tr-booking-card__info-item:last-child {
    border-bottom: none;
}

.tr-booking-card__info-item svg {
    width: 20px;
    height: 20px;
    color: var(--tr-gray-700);
    flex-shrink: 0;
}

.tr-booking-card__info-item span {
    font-size: 14px;
    color: var(--tr-gray-900);
}

.tr-booking-card__btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, var(--tr-primary), #E31C5F);
    border: none;
    border-radius: var(--tr-radius-sm);
    font-size: 16px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-white);
    cursor: pointer;
    transition: var(--tr-transition-fast);
}

.tr-booking-card__btn:hover {
    background: linear-gradient(to right, #E31C5F, #D11851);
}

.tr-booking-card__secondary-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--tr-black);
    border-radius: var(--tr-radius-sm);
    font-size: 16px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    cursor: pointer;
    transition: var(--tr-transition-fast);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tr-booking-card__secondary-btn:hover {
    background: var(--tr-gray-100);
}

.tr-booking-card__secondary-btn svg {
    width: 16px;
    height: 16px;
}

/* Reviews Section */
.tr-reviews-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.tr-reviews-header svg {
    width: 20px;
    height: 20px;
    fill: var(--tr-black);
}

.tr-reviews-header__score {
    font-size: 22px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
}

.tr-reviews-header__count {
    font-size: 22px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
}

.tr-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .tr-reviews-grid {
        grid-template-columns: 1fr;
    }
}

.tr-review {
    padding: 0;
}

.tr-review__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tr-review__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.tr-review__author h4 {
    font-size: 16px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    margin: 0;
}

.tr-review__author p {
    font-size: 14px;
    color: var(--tr-gray-700);
    margin: 0;
}

.tr-review__rating {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.tr-review__rating svg {
    width: 12px;
    height: 12px;
    fill: var(--tr-black);
}

.tr-review__content {
    font-size: 16px;
    line-height: 1.5;
    color: var(--tr-gray-900);
    margin: 0;
}

.tr-review__date {
    font-size: 14px;
    color: var(--tr-gray-700);
    margin-top: 8px;
}

/* ===================
   Buttons
   =================== */
.tr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: var(--tr-font-weight-semibold);
    border-radius: var(--tr-radius-sm);
    cursor: pointer;
    transition: var(--tr-transition-fast);
    text-decoration: none;
    border: none;
}

.tr-btn--primary {
    background: var(--tr-black);
    color: var(--tr-white);
}

.tr-btn--primary:hover {
    background: var(--tr-gray-900);
}

.tr-btn--secondary {
    background: var(--tr-white);
    color: var(--tr-black);
    border: 1px solid var(--tr-black);
}

.tr-btn--secondary:hover {
    background: var(--tr-gray-100);
}

.tr-btn--accent {
    background: linear-gradient(to right, var(--tr-primary), #E31C5F);
    color: var(--tr-white);
}

.tr-btn--accent:hover {
    background: linear-gradient(to right, #E31C5F, #D11851);
}

.tr-btn--sm {
    padding: 10px 16px;
    font-size: 14px;
}

.tr-btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

.tr-btn--full {
    width: 100%;
}

/* Blue Button - Tooriz Primary */
.tr-btn-blue {
    background-color: #1D72F1;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid #1D72F1;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 600;
}

.tr-btn-blue:hover {
    background-color: #FFFFFF;
    color: #1D72F1;
    border-color: #1D72F1;
}

/* ===================
   Map
   =================== */
.tr-map-container {
    height: 480px;
    border-radius: var(--tr-radius-lg);
    overflow: hidden;
    background: var(--tr-gray-100);
}

.tr-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tr-map-container #poiMap {
    width: 100%;
    height: 100%;
}

/* Leaflet Custom Marker */
.tr-map-marker {
    background: transparent !important;
    border: none !important;
}

.tr-map-marker__pin {
    width: 40px;
    height: 40px;
    color: var(--tr-primary);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.2s ease;
}

.tr-map-marker__pin:hover {
    transform: scale(1.1);
}

.tr-map-marker__pin svg {
    width: 100%;
    height: 100%;
}

/* Leaflet Popup */
.tr-map-popup {
    font-family: var(--tr-font-heading);
    font-size: 14px;
    line-height: 1.5;
}

.tr-map-popup strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--tr-black);
}

.tr-map-popup small {
    color: var(--tr-gray-600);
}

.tr-map-popup a {
    display: inline-block;
    margin-top: 8px;
    color: var(--tr-primary);
    font-weight: 500;
    text-decoration: none;
}

.tr-map-popup a:hover {
    text-decoration: underline;
}

/* Leaflet controls styling */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.leaflet-control-zoom a {
    background: #fff !important;
    color: var(--tr-black) !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 18px !important;
}

.leaflet-control-zoom a:first-child {
    border-radius: 8px 8px 0 0 !important;
}

.leaflet-control-zoom a:last-child {
    border-radius: 0 0 8px 8px !important;
}

.leaflet-control-zoom a:hover {
    background: var(--tr-gray-100) !important;
}

.leaflet-control-attribution {
    font-size: 10px;
    background: rgba(255,255,255,0.8) !important;
    padding: 2px 8px !important;
}

/* ===================
   Breadcrumb
   =================== */
.tr-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 14px;
}

.tr-breadcrumb a {
    color: var(--tr-gray-700);
    text-decoration: none;
}

.tr-breadcrumb a:hover {
    color: var(--tr-black);
    text-decoration: underline;
}

.tr-breadcrumb__separator {
    color: var(--tr-gray-500);
}

.tr-breadcrumb__current {
    color: var(--tr-gray-700);
}

/* ===================
   Pagination
   =================== */
.tr-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.tr-pagination__btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: var(--tr-font-weight-medium);
    color: var(--tr-gray-900);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--tr-transition-fast);
}

.tr-pagination__btn:hover {
    background: var(--tr-gray-100);
}

.tr-pagination__btn.is-active {
    background: var(--tr-black);
    color: var(--tr-white);
}

.tr-pagination__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tr-pagination__btn svg {
    width: 16px;
    height: 16px;
}

/* ===================
   Empty State
   =================== */
.tr-empty-state {
    text-align: center;
    padding: 64px 24px;
}

.tr-empty-state__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--tr-gray-500);
}

.tr-empty-state__title {
    font-size: 22px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-black);
    margin: 0 0 8px;
}

.tr-empty-state__text {
    font-size: 16px;
    color: var(--tr-gray-700);
    margin: 0 0 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================
   Loading States
   =================== */
.tr-skeleton {
    background: linear-gradient(90deg, var(--tr-gray-100) 25%, var(--tr-gray-300) 50%, var(--tr-gray-100) 75%);
    background-size: 200% 100%;
    animation: tr-skeleton-loading 1.5s infinite;
    border-radius: var(--tr-radius-sm);
}

@keyframes tr-skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.tr-skeleton--image {
    aspect-ratio: 1;
    border-radius: var(--tr-radius-lg);
}

.tr-skeleton--text {
    height: 16px;
    width: 80%;
}

.tr-skeleton--title {
    height: 20px;
    width: 60%;
}

/* ===================
   Mobile Bottom Bar
   =================== */
.tr-mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--tr-white);
    border-top: 1px solid var(--tr-gray-300);
    padding: 12px 16px;
    z-index: 100;
}

@media (max-width: 1024px) {
    .tr-mobile-bottom-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .tr-booking-card {
        display: none;
    }
}

.tr-mobile-bottom-bar__info {
    font-size: 16px;
}

.tr-mobile-bottom-bar__info strong {
    font-weight: var(--tr-font-weight-semibold);
}

.tr-mobile-bottom-bar__btn {
    padding: 12px 24px;
    background: linear-gradient(to right, var(--tr-primary), #E31C5F);
    border: none;
    border-radius: var(--tr-radius-sm);
    font-size: 16px;
    font-weight: var(--tr-font-weight-semibold);
    color: var(--tr-white);
    cursor: pointer;
}

/* ===================
   Utilities
   =================== */
.tr-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tr-text-center { text-align: center; }
.tr-text-left { text-align: left; }
.tr-text-right { text-align: right; }

.tr-mt-0 { margin-top: 0; }
.tr-mt-1 { margin-top: var(--tr-space-sm); }
.tr-mt-2 { margin-top: var(--tr-space-md); }
.tr-mt-3 { margin-top: var(--tr-space-lg); }
.tr-mt-4 { margin-top: var(--tr-space-xl); }

.tr-mb-0 { margin-bottom: 0; }
.tr-mb-1 { margin-bottom: var(--tr-space-sm); }
.tr-mb-2 { margin-bottom: var(--tr-space-md); }
.tr-mb-3 { margin-bottom: var(--tr-space-lg); }
.tr-mb-4 { margin-bottom: var(--tr-space-xl); }

.tr-py-1 { padding-top: var(--tr-space-sm); padding-bottom: var(--tr-space-sm); }
.tr-py-2 { padding-top: var(--tr-space-md); padding-bottom: var(--tr-space-md); }
.tr-py-3 { padding-top: var(--tr-space-lg); padding-bottom: var(--tr-space-lg); }
.tr-py-4 { padding-top: var(--tr-space-xl); padding-bottom: var(--tr-space-xl); }

/* =====================================================
   TYPOGRAPHY - Global Font Application
   ===================================================== */

/* Base - DM Sans para corpo de texto */
body {
    font-family: var(--tr-font-body);
    font-weight: var(--tr-font-weight-normal);
    line-height: 1.6;
    color: var(--tr-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings - Plus Jakarta Sans */
h1, h2, h3, h4, h5, h6,
.text-30, .text-24, .text-20, .text-18, .text-16,
.hero__title,
.featureIcon__title,
.featureCard__content h3,
.tourCard__title,
.sectionTitle__title,
.tooriz-hero__title,
.tooriz-search-box__label,
.tr-poi-card__title,
.tr-detail-header__title,
.tr-booking-card__title,
.tr-section-title {
    font-family: var(--tr-font-heading);
    font-weight: var(--tr-font-weight-semibold);
    line-height: 1.2;
}

/* UI Elements - Plus Jakarta Sans */
.button,
.menu__nav > li > a,
.header__menu a,
.headerDropdown__button,
.searchFormItem h5,
.tooriz-category-tab__content,
.tooriz-search-input__button,
.tooriz-autocomplete__item-name,
.tr-btn,
.tr-btn-blue,
.tr-pill,
.tr-filter-card__title,
nav a,
.nav-link,
.btn {
    font-family: var(--tr-font-heading);
}

/* Body Text - DM Sans */
p,
.text-14,
.text-15,
.featureIcon__text,
.tourCard__text,
.tooriz-hero__subtitle,
.tooriz-autocomplete__item-meta,
.tr-poi-card__location,
.tr-poi-card__desc,
.tr-detail-section p,
.tr-review__comment,
article,
.description {
    font-family: var(--tr-font-body);
    line-height: 1.7;
}

/* Input fields */
input,
textarea,
select,
.tooriz-search-input__field {
    font-family: var(--tr-font-body);
}

/* =====================================================
   HEADER - Solid Background
   ===================================================== */

.header.-solid {
    background: #fff !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header.-solid .header__container {
    background: transparent !important;
}

.header.-solid .header__logo img {
    filter: none;
}

.header.-solid .header__menu a,
.header.-solid .menu__nav > li > a,
.header.-solid .text-white {
    color: var(--tr-black) !important;
}

.header.-solid .icon-main-menu,
.header.-solid .header__search i,
.header.-solid .headerDropdown__button i {
    color: var(--tr-black) !important;
}

.header.-solid .header__search input::placeholder {
    color: var(--tr-gray-500);
}

.header.-solid .button.-outline-dark-1 {
    border-color: var(--tr-gray-300);
    color: var(--tr-black);
}

.header.-solid .button.-outline-dark-1:hover {
    background: var(--tr-gray-100);
}

/* =====================================================
   TOORIZ HERO - Modern Search-Focused Hero
   ===================================================== */

.tooriz-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

/* Background Slideshow */
.tooriz-hero__slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.tooriz-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.tooriz-hero__slide.is-active {
    opacity: 1;
}

.tooriz-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tooriz-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

/* Credit Card */
.tooriz-hero__credit {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.tooriz-hero__credit a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tooriz-hero__credit a:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.tooriz-hero__credit svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.tooriz-hero__credit-via {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

@media (max-width: 768px) {
    .tooriz-hero__credit {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
    
    .tooriz-hero__credit a {
        font-size: 11px;
        padding: 6px 10px;
        justify-content: center;
    }
}

/* Fallback gradient background */
.tooriz-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0F4C81 0%, #1D72F1 35%, #1C92F5 65%, #1ABEFB 100%);
    z-index: 0;
}

.tooriz-hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(0,0,0,0.05) 0%, transparent 30%);
}

.tooriz-hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.tooriz-hero__particles .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 20s infinite ease-in-out;
}

.tooriz-hero__particles .particle--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.tooriz-hero__particles .particle--2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.tooriz-hero__particles .particle--3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
    50% { transform: translateY(-30px) scale(1.05); opacity: 0.15; }
}

.tooriz-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.tooriz-hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: rgba(255,255,255,0.95);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.tooriz-hero__title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tooriz-hero__title span {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tooriz-hero__subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 48px;
    font-weight: 400;
}

/* Search Box */
.tooriz-search-box {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 25px 50px -12px rgba(0,0,0,0.25),
        0 0 0 1px rgba(255,255,255,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.tooriz-search-box__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--tr-gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-align: left;
}

/* Category Tabs */
.tooriz-category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tooriz-category-tab {
    cursor: pointer;
}

.tooriz-category-tab input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tooriz-category-tab__content {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--tr-gray-100);
    border: 2px solid transparent;
    border-radius: var(--tr-radius-btn, 14px);
    font-size: 14px;
    font-weight: 500;
    color: var(--tr-gray-700);
    transition: all 0.2s ease;
}

.tooriz-category-tab__content svg {
    stroke: var(--tr-gray-500);
    transition: stroke 0.2s ease;
}

.tooriz-category-tab:hover .tooriz-category-tab__content {
    background: #EBF4FF;
    color: var(--tr-secondary);
}

.tooriz-category-tab:hover .tooriz-category-tab__content svg {
    stroke: var(--tr-secondary);
}

.tooriz-category-tab input:checked + .tooriz-category-tab__content {
    background: linear-gradient(135deg, #1D72F1 0%, #1C92F5 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(29, 114, 241, 0.35);
}

.tooriz-category-tab input:checked + .tooriz-category-tab__content svg {
    stroke: #fff;
}

/* Search Input */
.tooriz-search-box__input-wrapper {
    position: relative;
}

.tooriz-search-input {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--tr-gray-100);
    border-radius: var(--tr-radius-btn, 14px);
    border: 2px solid var(--tr-gray-300);
    transition: all 0.2s ease;
}

.tooriz-search-input:focus-within {
    border-color: var(--tr-secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(29, 114, 241, 0.1);
}

.tooriz-search-input__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: var(--tr-gray-500);
}

.tooriz-search-input:focus-within .tooriz-search-input__icon {
    color: var(--tr-secondary);
}

.tooriz-search-input__field {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 17px;
    padding: 18px 0;
    color: var(--tr-black);
    outline: none;
}

.tooriz-search-input__field::placeholder {
    color: var(--tr-gray-500);
}

.tooriz-search-input__button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    margin: 6px;
    background: linear-gradient(135deg, #1D72F1 0%, #1C92F5 100%);
    border: none;
    border-radius: var(--tr-radius-btn, 14px);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tooriz-search-input__button:hover {
    background: linear-gradient(135deg, #1557B0 0%, #1D72F1 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 114, 241, 0.4);
}

.tooriz-search-input__button svg {
    stroke: #fff;
}

/* Autocomplete */
.tooriz-autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--tr-gray-300);
    z-index: 100;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.tooriz-autocomplete.is-visible {
    display: block;
    animation: autocompleteIn 0.2s ease;
}

@keyframes autocompleteIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tooriz-autocomplete__section {
    padding: 16px 20px;
}

.tooriz-autocomplete__section + .tooriz-autocomplete__section {
    border-top: 1px solid var(--tr-gray-300);
}

.tooriz-autocomplete__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--tr-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.tooriz-autocomplete__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tooriz-autocomplete__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--tr-black);
    transition: background 0.15s ease;
}

.tooriz-autocomplete__item:hover {
    background: var(--tr-gray-100);
}

.tooriz-autocomplete__item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EBF4FF 0%, #D6E8FF 100%);
    border-radius: 10px;
    color: var(--tr-secondary);
}

.tooriz-autocomplete__item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tooriz-autocomplete__item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--tr-black);
}

.tooriz-autocomplete__item-meta {
    font-size: 13px;
    color: var(--tr-gray-700);
}

/* Quick Tags */
.tooriz-search-box__tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--tr-gray-300);
}

.tooriz-search-box__tags > span {
    font-size: 13px;
    color: var(--tr-gray-700);
    font-weight: 500;
}

.tooriz-search-box__tags a {
    padding: 6px 14px;
    background: var(--tr-gray-100);
    border-radius: 100px;
    font-size: 13px;
    color: var(--tr-gray-700);
    text-decoration: none;
    transition: all 0.15s ease;
}

.tooriz-search-box__tags a:hover {
    background: #EBF4FF;
    color: var(--tr-secondary);
}

/* Stats */
.tooriz-hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
}

.tooriz-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tooriz-hero__stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.tooriz-hero__stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.tooriz-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 992px) {
    .tooriz-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .tooriz-hero__title {
        font-size: 40px;
    }

    .tooriz-hero__subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .tooriz-search-box {
        padding: 24px;
    }

    .tooriz-category-tabs {
        justify-content: center;
    }

    .tooriz-category-tab__content {
        padding: 10px 16px;
        font-size: 13px;
    }

    .tooriz-category-tab__content span {
        display: none;
    }

    .tooriz-category-tab__content svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .tooriz-hero {
        padding: 90px 16px 50px;
    }

    .tooriz-hero__badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .tooriz-hero__title {
        font-size: 32px;
    }

    .tooriz-hero__subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .tooriz-search-box {
        padding: 20px;
        border-radius: 20px;
    }

    .tooriz-search-box__label {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .tooriz-category-tabs {
        gap: 6px;
    }

    .tooriz-category-tab__content {
        padding: 10px 14px;
    }

    .tooriz-search-input {
        flex-direction: column;
        padding: 8px;
    }

    .tooriz-search-input__icon {
        display: none;
    }

    .tooriz-search-input__field {
        width: 100%;
        padding: 14px 16px;
        text-align: center;
    }

    .tooriz-search-input__button {
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 16px;
        border-radius: 10px;
    }

    .tooriz-search-box__tags {
        justify-content: center;
    }

    .tooriz-hero__stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .tooriz-hero__stat-number {
        font-size: 24px;
    }

    .tooriz-hero__stat-label {
        font-size: 12px;
    }

    .tooriz-hero__stat-divider {
        display: none;
    }
}

/* =====================================================
   SVG Icon Styles for Categories
   ===================================================== */

.tr-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.tr-pill-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.tr-pill-icon .emoji-icon {
    font-size: 14px;
    line-height: 1;
}

/* Category Card Icons */
.tr-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tr-category-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.tr-category-icon .emoji-icon {
    font-size: inherit;
    line-height: 1;
}

/* Filter Checkbox Icons */
.tr-filter-checkbox .tr-pill-icon {
    width: 16px;
    height: 16px;
}

/* Active State for Pills with Icons */
.tr-pill.is-active .tr-pill-icon svg {
    stroke: #fff;
}

/* Card with SVG Icon */
.category-icon-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-card svg {
    width: 100%;
    height: 100%;
}

/* Megamenu Category Icons */
.megamenu-category-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.megamenu-category-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.megamenu-category-icon .emoji-icon {
    font-size: 16px;
}

/* =====================================================
   POR QUE ESCOLHER O TOORIZ - Seção Redesenhada
   ===================================================== */

.tr-why-tooriz {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.tr-why-tooriz__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.tr-why-tooriz__badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(29, 114, 241, 0.1) 0%, rgba(26, 190, 251, 0.1) 100%);
    color: var(--tr-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 20px;
}

.tr-why-tooriz__title {
    font-family: var(--tr-font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--tr-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.tr-why-tooriz__subtitle {
    font-family: var(--tr-font-body);
    font-size: 18px;
    color: var(--tr-gray-600);
    line-height: 1.7;
}

/* Bloco de Fontes de Dados */
.tr-why-tooriz__block {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tr-why-tooriz__block-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.tr-why-tooriz__block-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1D72F1 0%, #1ABEFB 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tr-why-tooriz__block-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.tr-why-tooriz__block-title {
    font-family: var(--tr-font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--tr-black);
    margin-bottom: 8px;
}

.tr-why-tooriz__block-desc {
    font-size: 16px;
    color: var(--tr-gray-600);
    line-height: 1.6;
}

/* Grid de Fontes */
.tr-why-tooriz__sources {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.tr-why-tooriz__source {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tr-why-tooriz__source:hover {
    background: #f1f5f9;
    transform: translateY(-4px);
}

.tr-why-tooriz__source-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.tr-why-tooriz__source-logo svg {
    width: 32px;
    height: 32px;
    fill: var(--tr-primary);
}

.tr-why-tooriz__source-name {
    font-family: var(--tr-font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--tr-black);
    margin-bottom: 4px;
}

.tr-why-tooriz__source-desc {
    font-size: 12px;
    color: var(--tr-gray-500);
}

/* Grid de Cards */
.tr-why-tooriz__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.tr-why-tooriz__card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tr-why-tooriz__card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(29, 114, 241, 0.1) 0%, rgba(26, 190, 251, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.tr-why-tooriz__card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--tr-primary);
}

.tr-why-tooriz__card-title {
    font-family: var(--tr-font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--tr-black);
    margin-bottom: 12px;
}

.tr-why-tooriz__card-desc {
    font-size: 16px;
    color: var(--tr-gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tr-why-tooriz__card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tr-why-tooriz__card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--tr-gray-700);
    border-bottom: 1px solid #f1f5f9;
}

.tr-why-tooriz__card-list li:last-child {
    border-bottom: none;
}

.tr-why-tooriz__card-list svg {
    width: 20px;
    height: 20px;
    stroke: var(--tr-primary);
    flex-shrink: 0;
}

/* Stats */
.tr-why-tooriz__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 48px;
    background: linear-gradient(135deg, #1D72F1 0%, #1C92F5 50%, #1ABEFB 100%);
    border-radius: 24px;
    margin-bottom: 48px;
}

.tr-why-tooriz__stat {
    text-align: center;
}

.tr-why-tooriz__stat-number {
    display: block;
    font-family: var(--tr-font-heading);
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.tr-why-tooriz__stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

/* CTA */
.tr-why-tooriz__cta {
    text-align: center;
}

.tr-why-tooriz__cta .tr-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .tr-why-tooriz {
        padding: 80px 0;
    }

    .tr-why-tooriz__title {
        font-size: 32px;
    }

    .tr-why-tooriz__sources {
        grid-template-columns: repeat(3, 1fr);
    }

    .tr-why-tooriz__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tr-why-tooriz__stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px;
    }

    .tr-why-tooriz__stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .tr-why-tooriz {
        padding: 60px 0;
    }

    .tr-why-tooriz__header {
        margin-bottom: 40px;
    }

    .tr-why-tooriz__title {
        font-size: 28px;
    }

    .tr-why-tooriz__subtitle {
        font-size: 16px;
    }

    .tr-why-tooriz__block {
        padding: 24px;
    }

    .tr-why-tooriz__block-header {
        flex-direction: column;
        gap: 16px;
    }

    .tr-why-tooriz__sources {
        grid-template-columns: repeat(2, 1fr);
    }

    .tr-why-tooriz__card {
        padding: 24px;
    }

    .tr-why-tooriz__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px;
    }

    .tr-why-tooriz__stat-number {
        font-size: 28px;
    }

    .tr-why-tooriz__stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tr-why-tooriz__sources {
        grid-template-columns: 1fr 1fr;
    }

    .tr-why-tooriz__source:nth-child(5) {
        grid-column: span 2;
    }
}

