@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --font-poppins: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-poppins);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: rgba(0, 0, 0, 0.01);
    padding: 6px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    position: relative;
    z-index: 100;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.top-bar a:hover {
    color: #FFBB00;
}

.lang-flag {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 12px;
    color: #FFF;
}

.lang-flag select {
    background: transparent;
    border: unset;
    color: #FFF;
    font-size: .75rem;
}

.lang-flag .flag {
    font-size: 18px;
}

.flag-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(180deg, #cc0000 33%, #000 33%, #000 66%, #ffcc00 66%);
    display: inline-block;
}


/* ===== NAVBAR ===== */
.main-navbar {
    background: rgba(0, 0, 0, 0.01);
    /* backdrop-filter: blur(4px); */
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
}

.navbar-brand-text {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.navbar-brand-text span {
    color: #FFBB00;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #FFBB00;
}

.nav-search {
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.nav-search:hover {
    color: #FFBB00;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    /* min-height: 100vh; */
    /* background: url('https://cdn.abacus.ai/images/12acd520-34da-4373-b13a-c8b8db9eb6cd.png') center top / cover no-repeat; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    overflow: hidden;
}



.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.01);
}

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

.hero-title {
    font-size: clamp(52px, 8vw, 90px);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .explore {
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-content .searcher {
    border: 2px solid #FFF;
    border-radius: 50px;
    padding: .5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 53px;
}

.hero-content .searcher input,
.hero-content .searcher button {
    background: transparent;
    border: unset;
    color: #FFF;
}

.hero-content .searcher input {
    width: 80%;
}

.hero-content .searcher input:focus,
.hero-content .searcher input:focus-visible {
    border: unset;
    outline: unset;
}


.hero-content .searcher input::placeholder {
    color: #FFF;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 10px 0;
    position: absolute;
    top: 43%;
    width: 100%;
}

.hero-divider hr {
    width: 60px;
    border: 1.5px solid #fff;
    opacity: 1;
}

.hero-divider .second {
    margin-right: 40px;
}

.destination-slides .dest-card {
    border-radius: 50px;
    position: relative;
}

.destination-slides .dest-card img{
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 400px;
}

.destination-slides .dest-card-overlay {
    position: absolute;
    bottom: 0;
    margin: 1rem 2rem;
    color: #FFF;
}

.destination-slides .dest-card-overlay h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.destination-slides .dest-card-overlay p {
    font-size: .875rem;
    font-weight: 400;
}

.destination-slides .btn{
    border: 2px solid #FFF;
    border-radius: 50px;
    color: #FFF;
    font-size: 1rem;
    font-weight: 500;
    padding: .75rem 1.25rem;
}

/* Social sidebar */
.social-sidebar {
    position: absolute;
    left: 30px;
    top: 10%;
    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;
}


/* ===== FOOTER ===== */
footer {
    background: #0a0a0a;
    padding: 60px 60px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-brand span {
    color: #FFBB00;
}

.footer-desc {
    font-size: 14px;
    font-weight: 300;
    color: #FFF;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logos img {
    height: 36px;
}

.footer-gov {
    color: #e63946;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
}

.footer-col h6 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    font-weight: 300;
}

.footer-col ul li a:hover {
    color: #FFBB00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: #aaa;
    font-size: 16px;
    text-decoration: none;
}

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

.footer-copy {
    font-size: 11px;
    color: #FFF;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: #FFF;
    font-size: 11px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #FFBB00;
}

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

    .nav-links {
        display: none;
    }

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

    .indicadores-grid {
        gap: 30px;
    }

    .parceiros-grid {
        gap: 24px;
    }

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

    .social-sidebar {
        display: none;
    }
}


/* ===== DROPDOWN DESTINOS ===== */
.nav-item-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-chevron {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100%);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(-6px);
    z-index: 999;
    border: 1px solid #f0f0f0;
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.nav-dropdown-inner a {
    display: block;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.nav-dropdown-inner a:hover {
    background: #FFBB00;
    color: #111;
}


/* Mega menu */
.mega-menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: none;
    z-index: 1200;
    background: transparent;
    transition: opacity .18s ease;
    pointer-events: none;
}

.mega-menu.open {
    display: block;
    pointer-events: auto;
    opacity: 1;
}

/* inner panel */
.mega-menu .mega-inner {
    background: #fff;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    position: relative;
}

.mega-menu .mega-inner .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 2.3rem 1.5rem;
    border: unset;
}

/* flag column */
.mega-menu .mega-flag {
    width: 260px;
    /* largura do bloco da bandeira */
    min-width: 160px;
    min-height: 400px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-menu .mega-flag img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* content column */
.mega-menu .mega-content {
    padding: 28px 32px;
    flex: 1;
}

/* row of pills */
.mega-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

/* pill links */
.mega-pill {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    background: #fff;
    border: 1.6px solid #e6e6e6;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.1px;
    transition: background .12s, border-color .12s, color .12s, transform .08s;
}

.mega-pill:hover,
.mega-pill:focus {
    background: #f9f9f9;
    border-color: #d6d6d6;
    transform: translateY(-2px);
    outline: none;
}

/* optional sub content area */
.mega-sub {
    margin-top: 8px;
    color: #555;
    font-size: 0.95rem;
}

/* responsive */
@media (max-width: 900px) {
    .mega-menu .mega-inner {
        flex-direction: column;
    }

    .mega-menu .mega-flag {
        width: 100%;
        padding: 12px;
    }

    .mega-row {
        justify-content: stretch;
        gap: 12px;
    }

    .mega-pill {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
}

/* body no-scroll while open (opcional) */
body.mega-open {
    overflow: hidden;
}


/* ===== FILTROS CALENDAR ===== */
.cal-filtros-bar {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 18px 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.cal-filter-btn {
    border: 1.5px solid #ccc;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #111;
    background: #fff;
    transition: all 0.2s ease;
}

.cal-filter-btn:hover,
.cal-filter-btn.active-filter {
    background: #111;
    color: #fff;
    border-color: #111;
}

.cal-download-btn {
    border: 1.5px solid #111;
    border-radius: 50px;
    padding: 8px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #111;
    background: #fff;
    transition: all 0.2s ease;
}

.cal-download-btn:hover {
    background: #111;
    color: #fff;
}
