﻿/* =========================================================
   PROJETO ENCANTADO
   Layout premium inspirado em portal turístico/parques
   Sem uso de marca, personagens ou identidade proprietária
========================================================= */

.magic-page {
    --magic-blue: #063b82;
    --magic-blue-dark: #03295e;
    --magic-blue-soft: #eaf4ff;
    --magic-sky: #2d8cff;
    --magic-gold: #f5b942;
    --magic-orange: #ff9f43;
    --magic-text: #172033;
    --magic-muted: #65758b;
    --magic-border: rgba(15, 23, 42, 0.12);
    --magic-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
    --magic-radius: 24px;
    min-height: 100vh;
    color: var(--magic-text);
    background: #ffffff;
    font-family: inherit;
}

.magic-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.weather-chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.weather-icon {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 0.9em;
}

/* =========================================================
   HEADER
========================================================= */

.magic-header {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.10);
}

.magic-topbar {
    position: relative;
    z-index: 4002;
    background: #ffffff;
    border-bottom: 1px solid var(--magic-border);
}

.magic-topbar-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.magic-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    min-width: 0;
}

.magic-brand-logo {
    min-width: 0;
}

.magic-brand-image {
    display: block;
    width: auto;
    max-width: 360px;
    height: 58px;
    object-fit: contain;
}

.magic-brand-symbol {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    font-size: 1.65rem;
    background: linear-gradient(145deg, var(--magic-blue), var(--magic-sky));
    box-shadow: 0 12px 26px rgba(6, 59, 130, 0.24);
}

.magic-brand-text strong {
    display: block;
    font-size: 1.34rem;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.magic-brand-text span {
    display: block;
    margin-top: 4px;
    color: var(--magic-muted);
    font-size: 0.86rem;
}

.magic-quick-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .magic-quick-actions a {
        color: var(--magic-muted);
        text-decoration: none;
        font-size: 0.92rem;
        font-weight: 600;
    }

        .magic-quick-actions a:hover {
            color: var(--magic-blue);
        }

.magic-account-link {
    padding: 10px 18px;
    color: #ffffff !important;
    border-radius: 999px;
    background: var(--magic-blue);
    box-shadow: 0 10px 22px rgba(6, 59, 130, 0.22);
}

.magic-mobile-toggle {
    width: 46px;
    height: 46px;
    display: none;
    border: none;
    border-radius: 14px;
    background: var(--magic-blue-soft);
    cursor: pointer;
}

    .magic-mobile-toggle span {
        display: block;
        width: 23px;
        height: 2px;
        margin: 5px auto;
        border-radius: 999px;
        background: var(--magic-blue);
        transition: transform .2s ease, opacity .2s ease;
    }

    .magic-mobile-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .magic-mobile-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .magic-mobile-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* =========================================================
   NAVEGAÇÃO PRINCIPAL / MEGAMENU
========================================================= */

.magic-main-nav {
    position: relative;
    z-index: 3001;
    background: var(--magic-blue);
}

.magic-main-nav-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.magic-nav-item {
    position: static;
}

    .magic-nav-item > button,
    .magic-simple-link {
        position: relative;
        border: none;
        background: transparent;
        color: #ffffff;
        font: inherit;
        font-weight: 800;
        font-size: 0.94rem;
        text-decoration: none;
        cursor: pointer;
        padding: 18px 0;
    }

        .magic-nav-item > button::after,
        .magic-simple-link::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 6px;
            height: 3px;
            border-radius: 999px;
            background: var(--magic-gold);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .22s ease;
        }

        .magic-nav-item > button:hover::after,
        .magic-simple-link:hover::after {
            transform: scaleX(1);
        }

.magic-mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 54px;
    display: none;
    background: #ffffff;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
    border-bottom: 1px solid var(--magic-border);
}

    .magic-mega-menu.is-open {
        display: block;
    }

.magic-mega-grid {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

    .magic-mega-grid h4 {
        margin: 0 0 16px;
        color: var(--magic-blue);
        font-size: 1.05rem;
        letter-spacing: -0.02em;
    }

    .magic-mega-grid a {
        display: block;
        padding: 8px 0;
        color: var(--magic-text);
        text-decoration: none;
        font-weight: 600;
    }

        .magic-mega-grid a:hover {
            color: var(--magic-blue);
        }


/* =========================================================
   HERO
========================================================= */

.magic-hero {
    position: relative;
    min-height: 620px;
    height: 620px;
    overflow: hidden;
    background: var(--magic-blue-dark);
    isolation: isolate;
}

.magic-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity .45s ease, visibility .45s ease;
}

    .magic-hero-slide.is-active {
        opacity: 1;
        visibility: visible;
    }

.magic-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.magic-hero-img,
.magic-hero-video,
.magic-hero-image,
video.magic-hero-media,
img.magic-hero-media {
    object-fit: cover;
    object-position: center;
}

.magic-hero-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.magic-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 37, 90, .90) 0%, rgba(0, 37, 90, .58) 45%, rgba(0, 37, 90, .18) 100%);
}

.magic-hero-slide::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    height: 110px;
    pointer-events: none;
    background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0));
}

.magic-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.magic-hero-text {
    width: min(650px, 100%);
    color: #ffffff;
    position: relative;
    z-index: 4;
}

    .magic-hero-text span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
        color: var(--magic-gold);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .05em;
        font-size: .84rem;
    }

        .magic-hero-text span::before {
            content: "✦";
        }

    .magic-hero-text h1 {
        margin: 0;
        font-size: clamp(2.9rem, 6vw, 5.7rem);
        line-height: .94;
        letter-spacing: -0.075em;
        text-wrap: balance;
        color: #ffffff;
    }

    .magic-hero-text p {
        width: min(560px, 100%);
        margin: 24px 0 0;
        color: rgba(255, 255, 255, .92);
        font-size: 1.15rem;
        line-height: 1.72;
    }

.magic-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.magic-hero-controls {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .magic-hero-controls button {
        width: 42px;
        height: 5px;
        border: none;
        border-radius: 999px;
        background: rgba(255, 255, 255, .55);
        cursor: pointer;
    }

        .magic-hero-controls button.is-active {
            background: var(--magic-gold);
        }


/* =========================================================
   BOTÕES
========================================================= */

.magic-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

    .magic-btn:hover {
        transform: translateY(-2px);
    }

.magic-btn-primary {
    color: #10213a;
    background: var(--magic-gold);
    box-shadow: 0 14px 28px rgba(245, 185, 66, .30);
}

.magic-btn-light {
    color: var(--magic-blue);
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(255, 255, 255, .18);
}

.magic-btn-outline {
    color: var(--magic-blue);
    background: #ffffff;
    border: 2px solid rgba(6, 59, 130, .22);
}

/* =========================================================
   HORÁRIOS
========================================================= */

.magic-hours-strip {
    position: relative;
    z-index: 10;
    margin-top: -42px;
    padding-bottom: 64px;
}

    .magic-hours-strip .magic-container {
        padding: 26px;
        border-radius: var(--magic-radius);
        background: #ffffff;
        box-shadow: var(--magic-shadow);
        border: 1px solid var(--magic-border);
    }

.magic-hours-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

    .magic-hours-header span {
        display: block;
        color: var(--magic-blue);
        font-weight: 900;
        text-transform: uppercase;
        font-size: .78rem;
        letter-spacing: .05em;
    }

    .magic-hours-header h2 {
        margin: 4px 0 0;
        color: var(--magic-text);
        font-size: clamp(1.45rem, 3vw, 2.1rem);
        letter-spacing: -0.045em;
    }

    .magic-hours-header a {
        color: var(--magic-blue);
        font-weight: 900;
        text-decoration: none;
        white-space: nowrap;
    }

.magic-hours-scroll {
    display: grid;
    grid-template-columns: repeat(6, minmax(150px, 1fr));
    gap: 14px;
}

.magic-hour-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 86px;
    padding: 16px;
    border-radius: 20px;
    background: var(--magic-blue-soft);
    color: var(--magic-text);
    text-decoration: none;
    border: 1px solid rgba(6, 59, 130, .08);
}

.magic-hour-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #ffffff;
    font-size: 1.2rem;
}

.magic-hour-item strong {
    display: block;
    font-size: .93rem;
    line-height: 1.2;
}

.magic-hour-item span {
    display: block;
    margin-top: 4px;
    color: var(--magic-muted);
    font-size: .82rem;
}

/* =========================================================
   SEÇÕES GERAIS
========================================================= */

.magic-section {
    padding: 76px 0;
}

.magic-section-header {
    width: min(760px, 100%);
    margin: 0 auto 38px;
    text-align: center;
}

    .magic-section-header > span {
        display: inline-block;
        margin-bottom: 8px;
        color: var(--magic-blue);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .05em;
        font-size: .78rem;
    }

    .magic-section-header h2 {
        margin: 0;
        color: var(--magic-text);
        font-size: clamp(2rem, 4vw, 3.15rem);
        letter-spacing: -0.06em;
    }

    .magic-section-header p {
        margin: 12px auto 0;
        color: var(--magic-muted);
        line-height: 1.7;
    }

.magic-section-blue {
    background: radial-gradient(circle at top left, rgba(245, 185, 66, .16), transparent 28%), linear-gradient(135deg, var(--magic-blue-dark), var(--magic-blue));
}

.magic-section-header-light > span,
.magic-section-header-light h2 {
    color: #ffffff;
}

.magic-section-header-light p {
    color: rgba(255, 255, 255, .82);
}

/* =========================================================
   OFERTAS
========================================================= */

.magic-offers-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
}

.magic-feature-offer,
.magic-small-offer {
    overflow: hidden;
    border-radius: var(--magic-radius);
    background: #ffffff;
    border: 1px solid var(--magic-border);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .10);
}

.magic-feature-image {
    min-height: 330px;
    background: linear-gradient(145deg, #dbeafe, #f1f7ff);
    background-size: cover;
    background-position: center;
}

.magic-feature-content {
    padding: 30px;
}

    .magic-feature-content span,
    .magic-small-offer-content span {
        display: inline-flex;
        margin-bottom: 10px;
        padding: 7px 12px;
        border-radius: 999px;
        color: var(--magic-blue);
        background: var(--magic-blue-soft);
        font-size: .78rem;
        font-weight: 900;
    }

    .magic-feature-content h3,
    .magic-small-offer-content h3 {
        margin: 0;
        color: var(--magic-text);
        letter-spacing: -0.035em;
    }

    .magic-feature-content h3 {
        font-size: 1.8rem;
    }

    .magic-feature-content p,
    .magic-small-offer-content p {
        margin: 12px 0 0;
        color: var(--magic-muted);
        line-height: 1.65;
    }

.magic-link-button,
.magic-small-offer-content a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--magic-blue);
    text-decoration: none;
    font-weight: 900;
}

    .magic-link-button::after,
    .magic-small-offer-content a::after {
        content: " →";
    }

.magic-offer-list {
    display: grid;
    gap: 22px;
}

.magic-small-offer {
    display: grid;
    grid-template-columns: 190px 1fr;
}

.magic-small-offer-image {
    min-height: 190px;
    background: linear-gradient(145deg, #dbeafe, #f1f7ff);
    background-size: cover;
    background-position: center;
}

.magic-small-offer-content {
    padding: 22px;
}

/* =========================================================
   EXPERIÊNCIAS
========================================================= */

.magic-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.magic-experience-card {
    overflow: hidden;
    border-radius: var(--magic-radius);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
    transition: transform .22s ease, box-shadow .22s ease;
}

    .magic-experience-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 48px rgba(0, 0, 0, .22);
    }

.magic-experience-image {
    height: 210px;
    background: linear-gradient(145deg, #dbeafe, #f1f7ff);
    background-size: cover;
    background-position: center;
}

.magic-experience-body {
    padding: 20px;
}

    .magic-experience-body span {
        color: var(--magic-blue);
        font-weight: 900;
        font-size: .82rem;
    }

    .magic-experience-body h3 {
        margin: 8px 0 0;
        font-size: 1.18rem;
        letter-spacing: -0.035em;
    }

    .magic-experience-body p {
        margin: 10px 0 0;
        color: var(--magic-muted);
        line-height: 1.55;
        font-size: .94rem;
    }

/* =========================================================
   PLANEJAMENTO
========================================================= */

.magic-planning-section {
    padding: 88px 0;
    background: linear-gradient(90deg, rgba(3, 41, 94, .94), rgba(6, 59, 130, .80)), url('/images/projeto-disney/planejamento.jpg') center/cover no-repeat;
    color: #ffffff;
}

.magic-planning-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.magic-planning-text > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--magic-gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .82rem;
}

.magic-planning-text h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.magic-planning-text p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .86);
    line-height: 1.72;
    font-size: 1.06rem;
}

.magic-planning-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.magic-planning-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

    .magic-planning-cards a {
        min-height: 170px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        color: #ffffff;
        text-decoration: none;
        border-radius: var(--magic-radius);
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
        backdrop-filter: blur(8px);
        transition: transform .2s ease, background .2s ease;
    }

        .magic-planning-cards a:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, .20);
        }

    .magic-planning-cards strong {
        font-size: 1.25rem;
        letter-spacing: -0.035em;
    }

    .magic-planning-cards span {
        margin-top: 8px;
        color: rgba(255, 255, 255, .82);
        line-height: 1.5;
    }

/* =========================================================
   TEMPORADAS
========================================================= */

.magic-season-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.magic-season-card {
    overflow: hidden;
    border-radius: var(--magic-radius);
    background: #ffffff;
    border: 1px solid var(--magic-border);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .10);
}

.magic-season-image {
    height: 230px;
    background: linear-gradient(145deg, #dbeafe, #f1f7ff);
    background-size: cover;
    background-position: center;
}

.magic-season-content {
    padding: 24px;
}

    .magic-season-content h3 {
        margin: 0;
        font-size: 1.35rem;
        letter-spacing: -0.035em;
    }

    .magic-season-content p {
        margin: 12px 0 0;
        color: var(--magic-muted);
        line-height: 1.65;
    }

    .magic-season-content a {
        display: inline-flex;
        margin-top: 16px;
        color: var(--magic-blue);
        font-weight: 900;
        text-decoration: none;
    }

        .magic-season-content a::after {
            content: " →";
        }

/* =========================================================
   AJUDA
========================================================= */

.magic-help-section {
    padding: 70px 0;
    background: #f5f9ff;
}

.magic-help-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 38px;
    align-items: start;
}

.magic-help-title span {
    color: var(--magic-blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .78rem;
}

.magic-help-title h2 {
    margin: 8px 0 0;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    letter-spacing: -0.055em;
}

.magic-help-title p {
    margin: 12px 0 0;
    color: var(--magic-muted);
    line-height: 1.65;
}

.magic-help-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

    .magic-help-links a {
        padding: 18px;
        min-height: 76px;
        display: flex;
        align-items: center;
        border-radius: 18px;
        background: #ffffff;
        color: var(--magic-text);
        text-decoration: none;
        font-weight: 800;
        border: 1px solid var(--magic-border);
        box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
    }

        .magic-help-links a:hover {
            color: var(--magic-blue);
        }

/* =========================================================
   RODAPÉ
========================================================= */

.magic-footer {
    padding: 60px 0 28px;
    color: #ffffff;
    background: #021f49;
}

.magic-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, .7fr);
    gap: 36px;
}

.magic-footer h3,
.magic-footer h4 {
    margin: 0 0 14px;
}

.magic-footer p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.magic-footer a {
    display: block;
    padding: 5px 0;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

    .magic-footer a:hover {
        color: #ffffff;
    }

.magic-footer-bottom {
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, .62);
    font-size: .88rem;
}

/* =========================================================
   ESTADO GLOBAL DO MENU MOBILE
========================================================= */

body.magic-menu-open {
    overflow: hidden;
}

.magic-mobile-menu-logo {
    display: none !important;
}

.magic-mobile-menu-logo-img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 180px !important;
    max-height: 42px !important;
    object-fit: contain !important;
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1120px) {
    .magic-hours-scroll {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
    }

    .magic-hour-item {
        min-width: 220px;
        scroll-snap-align: start;
    }

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

    .magic-offers-layout {
        grid-template-columns: 1fr;
    }

    .magic-small-offer {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 900px) {
    .magic-quick-actions {
        display: none;
    }

    .magic-mobile-toggle {
        display: block;
        position: relative;
        z-index: 6001;
        flex: 0 0 auto;
    }

    .magic-mobile-menu-logo {
        height: 96px;
        padding: 18px 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--magic-blue);
        border-bottom: 4px solid #ffed00;
    }

    .magic-mobile-menu-logo-img {
        display: block;
        width: 100%;
        max-width: 245px;
        height: auto;
        object-fit: contain;
    }

    /*
       MENU MOBILE LATERAL
       Abre como drawer pela esquerda
    */
    .magic-main-nav {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: min(82vw, 320px);
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        background: var(--magic-blue);
        z-index: 6000;
        box-shadow: 18px 0 38px rgba(15, 23, 42, 0.28);
        transform: translateX(-105%);
        visibility: hidden;
        opacity: 0;
        transition: transform .28s ease, opacity .22s ease, visibility .22s ease;
    }

        .magic-main-nav.is-open {
            transform: translateX(0);
            visibility: visible;
            opacity: 1;
        }

        .magic-main-nav::before {
            display: none;
        }

    .magic-main-nav-inner {
        width: 100%;
        min-height: auto;
        padding: 0;
        display: block;
    }

    .magic-nav-item {
        width: 100%;
    }

        .magic-nav-item > button,
        .magic-simple-link {
            width: 100%;
            min-height: 54px;
            display: flex;
            align-items: center;
            text-align: left;
            padding: 14px 22px;
            color: #ffffff;
            font-size: 0.94rem;
            font-weight: 800;
            border-bottom: 1px solid rgba(255, 255, 255, .16);
        }

            .magic-nav-item > button::before {
                content: "›";
                margin-right: 12px;
                color: rgba(255, 255, 255, 0.68);
                font-size: 1.2rem;
                line-height: 1;
            }

            .magic-simple-link::before {
                content: "›";
                margin-right: 12px;
                color: rgba(255, 255, 255, 0.68);
                font-size: 1.2rem;
                line-height: 1;
            }

            .magic-nav-item > button::after,
            .magic-simple-link::after {
                display: none;
            }

    /*
       MEGAMENU DENTRO DA LATERAL
    */
    .magic-mega-menu {
        position: static;
        display: none;
        width: 100%;
        background: #ffffff;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

        .magic-mega-menu.is-open {
            display: block;
        }

    .magic-mega-grid {
        width: 100%;
        padding: 18px 22px 22px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

        .magic-mega-grid h4 {
            margin: 0 0 10px;
            color: var(--magic-blue);
            font-size: 0.96rem;
        }

        .magic-mega-grid a {
            color: var(--magic-text);
            padding: 7px 0;
            font-size: 0.92rem;
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        }

    /*
       HERO E LAYOUT MOBILE
    */
    .magic-hero {
        min-height: 590px;
    }

    .magic-hero-slide {
        background-position: center;
    }

    .magic-planning-grid,
    .magic-help-grid {
        grid-template-columns: 1fr;
    }

    .magic-season-grid {
        grid-template-columns: 1fr;
    }

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

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

    .magic-footer-bottom {
        flex-direction: column;
    }
}



@media (max-width: 640px) {
    .magic-container {
        width: min(100% - 24px, 1200px);
    }

    .magic-topbar-inner {
        min-height: 72px;
    }

    .magic-brand-image {
        max-width: 230px;
        height: 44px;
    }

    .magic-brand-symbol {
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .magic-brand-text strong {
        font-size: 1.08rem;
    }

    .magic-brand-text span {
        display: none;
    }

    .magic-hero {
        min-height: 560px;
        height: 560px;
    }

    .magic-hero-content {
        min-height: 560px;
        align-items: center;
    }

    .magic-hero-overlay {
        background: linear-gradient(180deg, rgba(0, 37, 90, .88) 0%, rgba(0, 37, 90, .50) 100%);
    }

    .magic-hero-img,
    .magic-hero-video,
    .magic-hero-image,
    video.magic-hero-media,
    img.magic-hero-media {
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .magic-hero-text h1 {
        font-size: clamp(2.35rem, 13vw, 3.3rem);
    }

    .magic-hero-text p {
        font-size: 1rem;
    }

    .magic-hero-actions,
    .magic-planning-actions {
        flex-direction: column;
    }

    .magic-btn {
        width: 100%;
    }

    .magic-hours-strip {
        margin-top: 0;
        padding: 22px 0 44px;
    }

        .magic-hours-strip .magic-container {
            padding: 18px;
        }

    .magic-hours-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .magic-section {
        padding: 56px 0;
    }

    .magic-feature-image,
    .magic-season-image {
        min-height: 230px;
        height: 230px;
    }

    .magic-small-offer {
        grid-template-columns: 1fr;
    }

    .magic-small-offer-image {
        min-height: 210px;
    }

    .magic-experience-grid,
    .magic-planning-cards,
    .magic-help-links,
    .magic-footer-grid {
        grid-template-columns: 1fr;
    }



    body.magic-menu-open {
        overflow: hidden;
    }

    .magic-mobile-toggle span {
        transition: transform .2s ease, opacity .2s ease;
    }

    .magic-mobile-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .magic-mobile-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .magic-mobile-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


/* =========================================================
   CORREÇÃO FINAL CONSOLIDADA
   Topbar: um logo por modo + clima + menu mobile
========================================================= */

/* Topbar: por padrão, desktop ligado e mobile desligado */
.magic-topbar .magic-brand-logo > .magic-brand-image-desktop {
    display: block !important;
    width: auto !important;
    height: 58px !important;
    max-width: 360px !important;
    object-fit: contain !important;
}

.magic-topbar .magic-brand-logo > .magic-brand-image-mobile {
    display: none !important;
    width: auto !important;
    height: 58px !important;
    max-width: 230px !important;
    object-fit: contain !important;
}

.magic-mobile-weather-top {
    display: none !important;
}

/* Logo interno do menu lateral: oculto até o menu abrir */
.magic-mobile-menu-logo {
    display: none !important;
}

    .magic-mobile-menu-logo-img,
    .magic-mobile-menu-logo img {
        display: block !important;
        width: auto !important;
        height: auto !important;
        max-width: 150px !important;
        max-height: 34px !important;
        object-fit: contain !important;
    }

.magic-main-nav.is-open > .magic-mobile-menu-logo {
    display: flex !important;
    width: 100% !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    padding: 8px 14px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: var(--magic-blue) !important;
    border-bottom: 3px solid #ffffff !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.magic-main-nav.is-open::before {
    display: none !important;
    content: none !important;
}

/* Mobile por largura */
@media (max-width: 900px) {
    .magic-topbar-inner {
        min-height: 82px !important;
        gap: 8px !important;
    }

    .magic-brand-logo {
        flex: 0 0 auto !important;
        min-width: 0 !important;
    }

    .magic-topbar .magic-brand-logo > .magic-brand-image-desktop {
        display: none !important;
    }

    .magic-topbar .magic-brand-logo > .magic-brand-image-mobile {
        display: block !important;
        width: auto !important;
        height: 58px !important;
        max-width: 220px !important;
        object-fit: contain !important;
    }

    .magic-mobile-weather-top {
        display: flex !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }

        .magic-mobile-weather-top a {
            display: inline-flex !important;
            align-items: center !important;
            max-width: 100% !important;
            color: var(--magic-blue) !important;
            text-decoration: none !important;
            font-size: 0.72rem !important;
            font-weight: 900 !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
        }

        .magic-mobile-weather-top .weather-chip {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 4px !important;
            min-height: 22px !important;
            padding: 2px 8px !important;
            color: #ffffff !important;
            background: var(--magic-blue) !important;
            border-radius: 999px !important;
            font-size: 0.70rem !important;
            font-weight: 900 !important;
            white-space: nowrap !important;
        }

    .magic-mobile-toggle {
        display: block !important;
        position: relative !important;
        z-index: 6001 !important;
        flex: 0 0 46px !important;
    }

    .magic-main-nav {
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        scrollbar-width: auto;
        scrollbar-color: #d8d8d8 #f4f4f4;
    }

        .magic-main-nav::-webkit-scrollbar {
            width: 14px;
        }

        .magic-main-nav::-webkit-scrollbar-track {
            background: #f4f4f4;
        }

        .magic-main-nav::-webkit-scrollbar-thumb {
            background: #cfcfcf;
            border-radius: 0;
            border: 2px solid #f4f4f4;
        }

            .magic-main-nav::-webkit-scrollbar-thumb:hover {
                background: #b8b8b8;
            }

        .magic-main-nav::-webkit-scrollbar-button {
            background: #eeeeee;
            height: 14px;
        }
}

@media (max-width: 480px) {
    .magic-topbar .magic-brand-logo > .magic-brand-image-mobile {
        height: 52px !important;
        max-width: 190px !important;
    }

    .magic-mobile-weather-top a {
        font-size: 0.68rem !important;
    }

    .magic-mobile-weather-top .weather-chip {
        min-height: 20px !important;
        padding: 2px 6px !important;
        font-size: 0.66rem !important;
    }
}

@media (max-width: 390px) {
    .magic-topbar .magic-brand-logo > .magic-brand-image-mobile {
        height: 46px !important;
        max-width: 165px !important;
    }

    .magic-mobile-weather-top a {
        font-size: 0.64rem !important;
    }

    .magic-mobile-weather-top .weather-chip {
        font-size: 0.62rem !important;
    }
}

/* Celular/tablet touch em paisagem, mesmo quando a largura passa de 900px */
@media (hover: none) and (pointer: coarse) and (orientation: landscape) {
    .magic-topbar-inner {
        min-height: 72px !important;
        gap: 8px !important;
    }

    .magic-topbar .magic-brand-logo > .magic-brand-image-desktop {
        display: none !important;
    }

    .magic-topbar .magic-brand-logo > .magic-brand-image-mobile {
        display: block !important;
        width: auto !important;
        height: 48px !important;
        max-width: 170px !important;
        object-fit: contain !important;
    }

    .magic-mobile-weather-top {
        display: flex !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }

        .magic-mobile-weather-top a {
            font-size: 0.66rem !important;
        }

        .magic-mobile-weather-top .weather-chip {
            min-height: 20px !important;
            padding: 2px 6px !important;
            font-size: 0.62rem !important;
        }

    .magic-mobile-toggle {
        display: block !important;
        flex: 0 0 46px !important;
    }

    .magic-main-nav {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: min(78vw, 300px) !important;
        height: 100vh !important;
        max-height: 100vh !important;
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        background: var(--magic-blue) !important;
        z-index: 6000 !important;
        box-shadow: 18px 0 38px rgba(15, 23, 42, 0.28) !important;
    }

        .magic-main-nav:not(.is-open) {
            transform: translateX(-105%) !important;
            visibility: hidden !important;
            opacity: 0 !important;
        }

        .magic-main-nav.is-open {
            transform: translateX(0) !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

            .magic-main-nav.is-open > .magic-mobile-menu-logo {
                height: 52px !important;
                min-height: 52px !important;
                max-height: 52px !important;
                padding: 7px 14px !important;
            }

                .magic-main-nav.is-open > .magic-mobile-menu-logo img,
                .magic-main-nav.is-open > .magic-mobile-menu-logo .magic-mobile-menu-logo-img {
                    max-width: 128px !important;
                    max-height: 28px !important;
                }

    .magic-nav-item > button,
    .magic-simple-link {
        min-height: 44px !important;
        padding: 10px 18px !important;
        font-size: 0.86rem !important;
    }
}

/* Desktop real */
@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
    .magic-topbar .magic-brand-logo > .magic-brand-image-desktop {
        display: block !important;
    }

    .magic-topbar .magic-brand-logo > .magic-brand-image-mobile,
    .magic-mobile-weather-top,
    .magic-mobile-menu-logo {
        display: none !important;
        visibility: hidden !important;
    }
}
