/*========Fonte Text========*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ── Wallop Display Font ──────────────────────────── */
@font-face {
  font-family: 'Wallop';
  src: url('../wallop-font-family/Wallop TRIAL/Web Fonts/3928aa3ede37e9c92c3cfadd0c60218c.woff2') format('woff2'),
       url('../wallop-font-family/Wallop TRIAL/Web Fonts/3928aa3ede37e9c92c3cfadd0c60218c.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*===================*/

/*========Body========*/
* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*===================*/

/*========Body========*/
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    padding-top: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Wallop', "Helvetica Neue", Helvetica, sans-serif;
}

/*===================*/

/*========Nav========*/
@media (min-width: 461px) {
    #navMv {
        display: none;
    }

    #navPc {
        padding: 0px;
        margin: 0px;
        width: 100%;
        height: 58px;
        background-color: #260041;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }

    nav h2 {
        color: white;
        font-size: 2.5rem;
        font-weight: bold;
    }

    .hrefs {
        width: 30rem;
        /* margin-top: 1.5em; <-- REMOVIDO PARA CENTRALIZAR VERTICALMENTE */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .hrefs p {
        color: #FFF;
        font-family: "Montserrat", sans-serif;
        font-size: 1rem;
        font-weight: 300;
    }

    .watts {
        width: 8em;
        height: 1em;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-around;
    }

    .svgNav {
        display: flex;
        align-items: center;
    }

    .svgNav svg{
        width: 21px;
        height: 21px;
    }

    .querConversar {
        width: 6em;
        height: 0.8em;
        background-color: white;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .TextNav {
        color: black;
        font-family: "Montserrat", sans-serif;
        font-size: 0.6rem;
        font-style: normal;
        font-weight: 600;
        line-height: 1;
    }
}

@media (max-width: 460px) {
    #navPc {
        display: none;
    }

    #navMv {
        width: 100%;
        max-width: 100vw;
        height: 58px;
        background-color: #260041;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    #navMv h2 { font-size: 2.2rem; }

    .menu-container {
        margin: 0px;
        padding: 0px;
        position: relative;
        display: inline-block;
    }

    .menu-btn {
        margin: 0px;
        padding: 0px;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: white;
    }

    .menu-dropdown {
        display: none;
        position: absolute;
        background-color: #12001f;
        min-width: 150px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border-radius: 13px;
    }

    .menu-dropdown a {
        color: white;
        font-size: 20px;
        font-family: "Montserrat", sans-serif;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .menu-dropdown a:hover {
        background-color: #390061;
        border-radius: 10px;
    }

    .show {
        display: block;
    }

    .watts {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        width: auto;
        height: auto;
    }
    .svgNav svg {
        width: 21px;
        height: 21px;
    }
    .querConversar {
        background-color: transparent;
        width: auto;
        height: auto;
    }
    .TextNav {
        color: white;
        font-size: 0.6rem;
        font-weight: 500;
        line-height: 1;
    }
}

/*===================*/

/*========a========*/
a {
    text-decoration: none;
}
/* Overlay e hamburger ocultos por padrão (mostrados só no mobile via media query) */
#navMobileOverlay { display: none; }
.tl-hamburger { display: none; }

/* =====================================================
   NAV — Eventos dropdown (desktop #navPc)
===================================================== */
.nav-eventos-pc {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-eventos-link p {
    color: #D4AF37 !important;
}
.nav-eventos-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #1A0A2E;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 1001;
}
.nav-eventos-pc:hover .nav-eventos-dropdown,
.nav-eventos-pc:focus-within .nav-eventos-dropdown {
    display: block;
}
.nav-eventos-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: #F0EBF8;
    transition: background 0.15s;
}
.nav-eventos-dropdown a:hover {
    background: rgba(255,255,255,0.06);
}

/* =====================================================
   TUBELIGHT NAV — Desktop (#navTubelight)
===================================================== */
@media (min-width: 461px) {
  #navTubelight {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(20, 0, 36, 0.78);
    border: 1px solid rgba(212,175,55,0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 4px;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    white-space: nowrap;
  }

  .tl-logo {
    display: flex;
    align-items: center;
    padding: 6px 16px 6px 12px;
    margin-right: 4px;
    border-right: 1px solid rgba(212,175,55,0.15);
    flex-shrink: 0;
  }

  .tl-item {
    position: relative;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(240,235,248,0.62);
    text-decoration: none;
    transition: color 0.2s;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  .tl-item:hover { color: #F0EBF8; }

  .tl-item.active {
    color: #D4AF37;
    background: rgba(212,175,55,0.08);
  }
  .tl-item.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #D4AF37;
    border-radius: 0 0 4px 4px;
  }
  .tl-item.active::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 22px;
    background: radial-gradient(ellipse at center top, rgba(212,175,55,0.32) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .tl-item.tl-gold,
  .tl-item.tl-gold:hover { color: #D4AF37; }

  .tl-eventos-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .tl-eventos-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #1A0A2E;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 185px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    z-index: 1001;
  }
  .tl-eventos-wrap:hover .tl-eventos-dropdown,
  .tl-eventos-wrap:focus-within .tl-eventos-dropdown { display: block; }
  .tl-eventos-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.88rem;
    color: #F0EBF8;
    text-decoration: none;
    transition: background 0.15s;
  }
  .tl-eventos-dropdown a:hover { background: rgba(255,255,255,0.06); }

  .tl-wa-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding: 7px 16px 7px 12px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 100px;
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .tl-wa-btn:hover { background: rgba(212,175,55,0.18); }

  /* Hide old nav on desktop */
  #navMv { display: none !important; }
}

/* TUBELIGHT NAV — Mobile (≤460px): logo + hamburger button */
@media (max-width: 460px) {
  #navTubelight {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 0, 36, 0.9);
    border: 1px solid rgba(212,175,55,0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 6px 6px 14px;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  }
  .tl-logo { display: flex; align-items: center; }
  /* Hide all nav items in the pill on mobile */
  .tl-item, .tl-eventos-wrap, .tl-wa-btn { display: none; }

  .tl-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 50%;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
  }

  /* Mobile full-screen overlay */
  #navMobileOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(8,0,15,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }
  #navMobileOverlay.tl-open { display: flex; }

  .overlay-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 42px; height: 42px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50%;
    color: #D4AF37;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
  }

  .overlay-item {
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(240,235,248,0.65);
    text-decoration: none;
    font-family: 'Wallop', 'Helvetica Neue', sans-serif;
    padding: 0.6rem 2rem;
    transition: color 0.2s;
    letter-spacing: -0.5px;
  }
  .overlay-item:hover, .overlay-item.active { color: #D4AF37; }
  .overlay-gold { color: #D4AF37; }

  .overlay-wa {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 100px;
    padding: 0.7rem 1.5rem;
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    font-family: "Helvetica Neue", sans-serif;
  }

  #navMv { display: none !important; }
  #navPc { display: none !important; }
  body { padding-bottom: 5.5rem; }
}
