/* ===== TOP BAR ===== */
.top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

/* ===== NAVBAR ===== */
.main-navbar {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 199;
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px;
}


.hero-divider hr {
    width: 100px;
}

.hero-subtitle {
    font-weight: 400;
    max-width: 700px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    margin: 14px auto 0;
}

/* Social sidebar */
.social-sidebar {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.social-sidebar a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s;
}

.social-sidebar a:hover {
    color: #FFBB00;
}

/* ===== TABS NAV ===== */
.tabs-nav {
    background: #fff;
    padding: 20px 60px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 100;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid #111;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-poppins);
    color: #111;
}

.tab-btn:hover {
    background: #FFBB00;
    border-color: #FFBB00;
    color: #fff;
}

.tab-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* ===== TAB CONTENT ===== */
.tab-content-area {
    display: none;
    padding: 50px 60px;
}

.tab-content-area.active {
    display: block;
}

/* --- SOBRE --- */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.sobre-text h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.sobre-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
    text-align: justify;
}

.info-gerais h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.info-item {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.info-item strong {
    color: #111;
}

.mapa-section h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.mapa-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    height: 420px;
}

.mapa-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- EXPERIÊNCIAS --- */
.section-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tab-content-area .section-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

.restaurante-details .resutante-image {}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.exp-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.exp-card:hover {
    transform: translateY(-6px);
}

.exp-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.exp-card-body {
    padding: 16px;
}

.exp-card-body h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.exp-card-body p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.exp-tag {
    display: inline-block;
    background: #FFBB00;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- EVENTOS --- */
.eventos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.evento-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
}

.evento-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.evento-date {
    min-width: 70px;
    text-align: center;
    background: #111;
    color: #fff;
    border-radius: 12px;
    padding: 12px 8px;
}

.evento-date .day {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.evento-date .month {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFBB00;
}

.evento-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.evento-info p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.evento-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.evento-meta span {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.evento-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-cultural {
    background: #e8f4fd;
    color: #1a73e8;
}

.badge-gastronomia {
    background: #fef3e2;
    color: #FFBB00;
}

.badge-desporto {
    background: #e8f8e8;
    color: #2e7d32;
}

.badge-musica {
    background: #f3e8fd;
    color: #7b1fa2;
}

/* --- HOTÉIS --- */
.hoteis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hotel-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.hotel-card:hover {
    transform: translateY(-6px);
}

.hotel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hotel-card-body {
    padding: 16px;
}

.hotel-card-body h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hotel-stars {
    color: #FFBB00;
    font-size: 13px;
    margin-bottom: 6px;
}

.hotel-card-body p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.hotel-price {
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.hotel-price span {
    font-size: 11px;
    font-weight: 400;
    color: #888;
}

.hotel-amenities {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.amenity {
    font-size: 11px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-reservar {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 9px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    font-family: var(--font-poppins);
}

.btn-reservar:hover {
    background: #FFBB00;
    color: #fff;
}

/* --- RESTAURANTES --- */
.rest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rest-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.rest-card:hover {
    transform: translateY(-6px);
}

.rest-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.rest-card-body {
    padding: 16px;
}

.rest-card-body h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.rest-cuisine {
    font-size: 11px;
    color: #FFBB00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.rest-card-body p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.rest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rest-rating {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.rest-rating i {
    color: #FFBB00;
}

.rest-price-range {
    font-size: 12px;
    color: #888;
}

/* --- SERVIÇOS --- */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.servico-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s;
    cursor: pointer;
}

.servico-card:hover {
    border-color: #FFBB00;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.15);
    transform: translateY(-4px);
}

.servico-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    transition: background 0.3s;
}

.servico-card:hover .servico-icon {
    background: #FFBB00;
    color: #fff;
}

.servico-card h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.servico-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .exp-grid,
    .hoteis-grid,
    .rest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-content-area {
        padding: 30px 20px;
    }

    .tabs-nav {
        padding: 16px 20px;
    }
}

@media (max-width: 768px) {
    .main-navbar {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 52px;
    }

    .exp-grid,
    .hoteis-grid,
    .rest-grid {
        grid-template-columns: 1fr;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        padding: 40px 20px 20px;
    }

    .social-sidebar {
        display: none;
    }

    .evento-card {
        flex-direction: column;
    }
}

.exp-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    /* Bordas arredondadas como na imagem */
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 35px;
    transition: transform 0.3s ease;
}

.exp-card:hover {
    transform: translateY(-5px);
}

.exp-card-content {
    color: white;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exp-card-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.exp-card-content p {
    font-size: 0.9rem;
    max-width: 80%;
    opacity: 0.9;
}

.btn-circle-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-circle-arrow:hover {
    background: white;
    color: black;
}

/* Responsividade para telas pequenas */
@media (max-width: 768px) {
    .exp-card {
        height: 350px !important;
        margin-bottom: 20px;
    }
}

/* Imagem do restaurante */
.rest-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

/* Nome do restaurante */
.rest-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

/* Descrição */
.rest-desc {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 6px;
}

/* Localização */
.rest-location {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

/* Estrelas */
.rest-stars i {
    color: #F5A623;
    font-size: 1.3rem;
}

/* Divisor entre restaurantes */
.rest-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 10px 0;
}

/* Imagem gastronomia */
.gastro-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 20px;
}

/* Label gastronomia */
.gastro-label {
    font-size: 0.95rem;
    color: #333;
    text-align: center;
    margin-top: 6px;
}

/* Responsividade mobile */
@media (max-width: 576px) {
    .rest-name {
        font-size: 1.3rem;
    }

    .rest-img {
        height: 180px;
    }

    .gastro-img {
        height: 140px;
    }
}

/* Imagem do hotel */
.hotel-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

/* Nome do hotel */
.hotel-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

/* Descrição */
.hotel-desc {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 6px;
}

/* Localização */
.hotel-location {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}

/* Estrelas */
.hotel-stars i {
    color: #F5A623;
    font-size: 1.4rem;
}

/* Divisor */
.hotel-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 10px 0;
}

/* Checkboxes de filtro */
.hotel-filter-check .form-check-input {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #aaa;
    cursor: pointer;
    margin-top: 2px;
}

.hotel-filter-check .form-check-input:checked {
    background-color: #111;
    border-color: #111;
}

.hotel-filter-check .form-check-label {
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    padding-left: 6px;
}

/* Animação ao filtrar */
.hotel-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hotel-item.hidden {
    display: none !important;
}

/* Responsividade mobile */
@media (max-width: 576px) {
    .hotel-name {
        font-size: 1.3rem;
    }

    .hotel-img {
        height: 190px;
    }
}

.evento-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

/* Nome do evento */
.evento-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
}

/* Badge de categoria */
.evento-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #F5A623;
    color: #F5A623;
    background: transparent;
    white-space: nowrap;
}

/* Variantes de badge por categoria */
.badge-cultura {
    border-color: #F5A623;
    color: #F5A623;
}

.badge-festas {
    border-color: #F5A623;
    color: #F5A623;
}

.badge-feiras {
    border-color: #4CAF50;
    color: #4CAF50;
}

.badge-empresariais {
    border-color: #2196F3;
    color: #2196F3;
}

.badge-religiosos {
    border-color: #9C27B0;
    color: #9C27B0;
}

.badge-desportivos {
    border-color: #F44336;
    color: #F44336;
}

/* Descrição */
.evento-desc {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 6px;
}

/* Meta (localização e data) */
.evento-meta {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 4px;
}

/* Divisor */
.evento-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 0 10px 0;
}

/* Checkboxes de filtro */
.evento-filter-check .form-check-input {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #aaa;
    cursor: pointer;
    margin-top: 2px;
}

.evento-filter-check .form-check-input:checked {
    background-color: #111;
    border-color: #111;
}

.evento-filter-check .form-check-label {
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    padding-left: 6px;
}

/* Animação ao filtrar */
.evento-item.hidden {
    display: none !important;
}

/* Responsividade mobile */
@media (max-width: 576px) {
    .evento-name {
        font-size: 1.3rem;
    }

    .evento-img {
        height: 190px;
    }
}
