/* ============================================
   HABBISCO - Style CSS
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('assets/img/cursor.png'), auto !important;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Ubuntu', sans-serif;
  background: linear-gradient(
    180deg,
    #00A3D9 0px,
    #00A3D9 100px,
    #E8E8E8 100px,
    #E8E8E8 100%
);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
        margin-top: -20px;

}

a,
button,
.nav-item,
.nav-logo,
.nav-membro,
.registro-avatar,
.fama-avatar,
.dot,
.noticias-nav button,
input[type="range"],
.volume-slider,
.main-nav a,
.noticia-destaque,
.noticia-item {
    cursor: url('assets/img/cursor-pointer.png'), pointer !important;
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}
.clouds-container {
    opacity: 1;
    transition: opacity 0.3s ease;
}
/* ============================================
   NUVENS DECORATIVAS
   ============================================ */
.clouds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* não bloquear menu */
    z-index: 6;
}
.clouds { position: relative; width: 100%; height: 100%; }
.cloud {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}
.cloud-1 { width: 90px;  animation-delay: 0s;  }
.cloud-2 { width: 36px; animation-delay: 5s;  }
.cloud-3 { width: 86px;  animation-delay: 12s; }
.cloud-4 { width: 68px;  animation-delay: 18s; }

/* ============================================
   HEADER
   Quarto Habbo à esquerda | Player à direita
   ============================================ */
.header {
    position: relative;
    padding-top: 0px;
    z-index: auto;
    margin-top: -100px;
}

.header-content {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    z-index: auto;
    overflow: visible;
}

.banner-fundo {
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100vw;
    max-width: none;
    transform: translateX(-50%) translateY(80px);
    z-index: 1;
    pointer-events: none;
}

.banner-quarto {
    flex: 1;
    max-width: 580px;
    position: relative;
    align-self: flex-end;
    transform: translateY(80px);
    z-index: 60;
    pointer-events: none;
}
.quarto-img {
    width: 100%;
    height: auto;
    display: block;
}
.fundo-img { 
    width: 100vw;
    height: 458px;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}

/* ============================================
   RÁDIO PLAYER
   ============================================ */
.radio-player {
    z-index: 70;
    border-radius: 12px;
    padding: 15px 15px 55px 15px; /* padding-bottom extra p/ o personagem */
    width: 290px;
    flex-shrink: 0;
    position: relative;
    margin-bottom: 0;
}

.radio-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    background: #c4e4fb;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    width: 260px;
}

.radio-label {
    background: #3BB5E8;
    color: white;
    padding: 13px 19px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.radio-label-programa {
    background: #3BB5E8;
    color: white;
    padding: 13px 14px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}
.radio-arrow {
    width: 5px;
    height: 7px;
    background: #3BB5E8;

    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.radio-value {
    padding: 6px 12px;
    font-weight: 700;
    font-size: 11px;
    color: #008bb9;
    flex: 1;
}

/* Contador de ouvintes — canto superior direito do player */
.radio-ouvintes {
    position: absolute;
    top: 11px;
    right: -53px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    padding: 6px 10px;
}
.banner-fundo,
.banner-quarto {
    pointer-events: none !important;
        user-select: none;
}

.headphone-icon {
    width: 58px;
    height: 28px;
}
.ouvintes-count  { font-size: 16px; font-weight: 700; color: #333; margin-left: -27px; }

/* Linha de controles: volume + visual DJ ON AIR */
.radio-controls-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.volume-icon {
    width: 35px;
    height: 35px;

    background-color: #008bb9; /* cor do fundo */
    border-radius: 100%;     /* deixa circular */

    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-slider {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 3px;
    outline: none;
    background: linear-gradient(
        to right,
        #3BB5E8 0%, #3BB5E8 50%,
        #E0E0E0 50%, #E0E0E0 100%
    );
}
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px; height: 16px;
    background: #3BB5E8;
    border-radius: 50%;
    cursor: url('assets/img/cursor-pointer.png'), pointer !important;
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.volume-slider::-moz-range-thumb {
    width: 16px; height: 16px;
    background: #3BB5E8;
    border-radius: 50%;
    cursor: url('assets/img/cursor-pointer.png'), pointer !important;
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.volume-slider::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: #E0E0E0;
}

/* Visual DJ ON AIR */
.radio-dj-visual { width: 80px; height: 55px; flex-shrink: 0; }
.radio-dj-visual img {
    /* width: 100%; */
    margin-top: -16%;
    margin-left: -68%;
    /* height: 100%; */
    object-fit: contain;
}

/* Visual DJ ON AIR */
.radio-dj-pedidos { width: 49px; height: 49px; flex-shrink: 0; }
.radio-dj-pedidos img {
    margin-top: -70%;
    margin-left: 71%;
    object-fit: contain;
}

/* ============================================
   STATUS: "Depois" + "AutoDJ" na mesma linha
   ============================================ */
.radio-status-row {
    position: relative;
     width: 161px;
    height: 58px; 
    left: -2px;
    background: url('assets/img/player.png') no-repeat center;
    background-size: cover;
        top: 10px;
}

/* AVATAR */
.avatar-proximo {
    position: absolute;
   top: -29px;
    left: -11px;
    width: 60px;
    height: 60px;
    object-fit: cover;
    z-index: 2;
}

/* BOTÃO LARANJA */
.status-depois {
    position: absolute;
    bottom: 1px;
    left: 4px;

    border-radius: 20px;

    padding: 6px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;

    color: #fff;
    font-weight: bold;

    z-index: 2;
}


/* TEXTO "Depois" */
.status-depois span {
    font-size: 14px;
}

/* NOME DO LOCUTOR */
.status-depois small {
    font-size: 11px;
    font-weight: normal;
}

.status-depois-locutor {
    position: absolute;
    bottom: 27px;
    left: 59px;
    font-size: 18px;
    font-weight: normal;
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #008bb9;
    z-index: 2;
}
/* Personagem DJ (canto inferior direito do player, sobressai) */
.radio-character {
    position: absolute;
    right: -494px;
    bottom: -12%;
    z-index: 9997;
    pointer-events: none;
}
.radio-character img {
    width: 100%; /* define tamanho real */
    height: 100%;
}

.som-dj {
    position: absolute;
    right: -39px;
    bottom: -9%;     /* cola embaixo */
    z-index: 9999;  /* fica por cima */
    pointer-events: none;
}
.som-dj img {
    width: 156px; /* define tamanho real */
    height: 125px;
}


.locutor-dj {
    position: absolute;
    right: -69px;       /* cola na direita */
    bottom: 2%;      /* cola embaixo */
    z-index: 9998;  /* fica por cima */
    pointer-events: none;
}
.locutor-dj img {
    width: 128px; /* define tamanho real */
    height: 173px; /* menor altura */
    object-fit: cover;
    object-position: top; /* corta de baixo */
}

/* ============================================
   NAVEGAÇÃO PRINCIPAL
   ============================================ */
.main-nav {
    position: relative;
    z-index: 50;
    margin-top: 15px;
    padding-bottom: 5px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, #e9e7e7, #ffffff);
    border-radius: 30px;
    padding: 8px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
        overflow: visible;

    width: 760px;
}

.nav-wrapper::after {
        pointer-events: none;
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px; /* espessura da borda */
    
    background: linear-gradient(to top, #aaa, transparent);
    
    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.nav-item {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    position: relative;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -21px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background-color: #d7d7d7;
}

.nav-item:hover:not(.active) { color: #3BB5E8 }
.nav-item.active              { color: #3BB5E8; }
.nav-item img                 { width: 24px; height: 24px; }

.nav-membro { border-radius: 20px; position: relative; z-index: 29;}
.banner-quarto,
.quarto-img {
    pointer-events: none;
}
/* Centro da nav: logo + links */
.nav-center {
    display: flex;
    align-items: center;
    gap: 49px;
    flex: 1;
    justify-content: end;
}

.nav-logo { padding: 5px; display:flex; align-items:center; justify-content:center; }
.nav-logo img { width: 31px; height: 34px; }
.nav-user-inline { margin-left: 4px; }
.nav-user-widget { margin-left: 4px; }
/* Mãozinha decorativa */
.nav-hand {
    position: absolute;
    right: -60px;
    bottom: -20px;
    width: 80px;
    pointer-events: none;
}
.nav-hand img { width: 100%; }

/* ============================================
   CONTEÚDO PRINCIPAL
   ============================================ */
.main-content {
    padding: 20px 0;
    position: relative;
    z-index: 5;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* ============================================
   SEÇÕES — HEADERS
   ============================================ */
.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.section-icon { width: 30px; height: 30px; }
.section-header h2 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-header .highlight { color: #3BB5E8; }
.section-line {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        #ccc 0px, #ccc 2px,
        transparent 2px, transparent 6px
    );
}

/* ============================================
   NOTÍCIAS
   ============================================ */
.noticia-destaque {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}
.noticia-imagem {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.noticia-imagem > img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.noticia-destaque:hover .noticia-imagem > img { transform: scale(1.05); }

.noticia-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    pointer-events: none;
}
.noticia-logo   { max-width: 150px; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3)); }
.noticia-pencil { position: absolute; top: 10px; right: 10px; width: 40px; }

.noticia-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 15px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.88) 100%);
    z-index: 5;
    opacity: 1;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.noticia-destaque:hover .noticia-content { opacity: 1; transform: translateY(0); }

.noticia-autor {
    position: absolute;
    left: 15px; top: -30px;
    width: 60px; height: 60px;
    background: #E8E8E8;
    border-radius: 5px;
    overflow: hidden;
    border: 3px solid white;
}
.noticia-autor img { width: 100%; height: 100%; object-fit: cover; }

.noticia-content h3 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-left: 70px;
}
.noticia-content p { color: rgba(255,255,255,0.85); font-size: 12px; line-height: 1.5; }

.noticias-lista { display: flex; flex-direction: column; gap: 10px; }

.noticia-item {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.noticia-item:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

.noticia-thumb { width: 100px; height: 90px; flex-shrink: 0; overflow: hidden; }
.noticia-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.noticia-item:hover .noticia-thumb img { transform: scale(1.1); }

.noticia-info  { display: flex; padding: 10px; flex: 1; position: relative; }
.noticia-autor-small {
    width: 40px; height: 70px;
    background: #E8E8E8;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 10px;
}
.noticia-autor-small img { width: 100%; height: 100%; object-fit: cover; }

.noticia-texto h4 { font-size: 13px; font-weight: 700; color: #333; margin-bottom: 5px; }
.noticia-texto p  { font-size: 11px; color: #666; line-height: 1.4; }

.noticias-nav { display: flex; justify-content: center; gap: 10px; margin-top: 15px; }
.noticias-nav button {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #3BB5E8;
    padding: 5px 15px;
    transition: transform 0.3s ease;
}
.noticias-nav button:hover { transform: scale(1.2); }

/* ============================================
   ÚLTIMOS REGISTROS
   ============================================ */
.registros-section { margin-bottom: 20px; }
.registros-box {
    background-image: url('assets/img/tapete-registros.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    min-height: 200px;
    overflow: visible;
}
.registros-avatars {
    position: relative;
    z-index: 10;
    padding: 15px;
    min-height: 160px;
}
.registro-avatar {
    width: 65px; height: 85px;
    position: absolute;
    transition: transform 0.2s ease;
}
.registro-avatar1 { left: 5%;  bottom: 90px; }
.registro-avatar2 { left: 16%; bottom: 65px; }
.registro-avatar3 { left: 27%; bottom: 43px; }
.registro-avatar4 { left: 38%; bottom: 28px; }
.registro-avatar5 { left: 49%; bottom: 47px; }
.registro-avatar6 { left: 57%; bottom: 72px; }
.registro-avatar7 {     display: flex;
    left: 67%;
    bottom: 147px;
}
.registro-avatar:hover { transform: translateY(-5px); z-index: 30;}
.registro-avatar img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}
.registro-avatar .registro-nome {
    display: none;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 20;
}
.registro-avatar:hover .registro-nome { display: block !important; }

.registros-dj {
    position: absolute;
    right: 46px;
    bottom: 88px;
    width: 100px;
    z-index: 10;
}
.registros-dj img { width: 148px; height: 164px; filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.4)); }

/* ============================================
   PRÓXIMO EVENTO
   ============================================ */
.evento-section { margin-bottom: 20px; }
.evento-slider {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 180px;
}
.evento-slide         { display: none; }
.evento-slide.active  { display: block; }
.evento-slide img     { width: 100%; height: 180px; object-fit: cover; }
.evento-dots {
    position: absolute;
    bottom: 10px;
    right: 15px;
    display: flex;
    gap: 5px;
}
.dot {
    width: 10px; height: 10px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: background 0.3s ease;
}
.dot.active, .dot:hover { background: #3BB5E8; }

/* ============================================
   HALL DA FAMA
   ============================================ */
.fama-section { margin-bottom: 20px; }
.fama-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.fama-item {
    background-image: url('assets/img/rank.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
}
.fama-titulo {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-left: 16px;
    color: #8B7355;
    text-transform: uppercase;
    margin-bottom: 100px;
    letter-spacing: 1px;
}
.fama-avatar { position: relative; height: 100px; margin-bottom: 10px; }
.fama-avatar .trofeu {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 122px; height: 180px;
}
.fama-avatar .avatar {
    position: absolute;
    bottom: 54px;
    left: 57%;
    transform: translateX(-50%);
    height: 110px;
    width: 64px;
    z-index: 2;
}
.fama-avatar .fama-nome {
    position: absolute;
    bottom: 6px;
    left: 57%;
    transform: translateX(-50%);
    background: rgb(221 221 221);
    color: #666666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}
.fama-avatar:hover .fama-nome { display: inline-block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #F5F5F5;
    border-top: 1px solid #E0E0E0;
    padding: 30px 0;
    margin-top: 30px;
}
.footer-content { display: flex; gap: 30px; align-items: flex-start; }
.footer-logo { flex-shrink: 0; }
.footer-logo img { width: 60px; }
.footer-text { flex: 1; }
.footer-text p { font-size: 11px; color: #666; line-height: 1.6; margin-bottom: 5px; }
.footer-text p:first-child { font-weight: 700; color: #333; }

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 992px) {
    .header-content  { flex-direction: column; align-items: center; }
    .banner-quarto   { max-width: 100%; }
    .radio-player    { width: 100%; max-width: 400px; }
    .radio-character { display: none; }
    .content-grid    { grid-template-columns: 1fr; }
    .nav-hand        { display: none; }
}

@media (max-width: 768px) {
    .nav-wrapper     { flex-wrap: wrap; padding: 15px; }
    .nav-item        { padding: 8px 15px; font-size: 12px; }
    .fama-grid       { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .fama-item       { padding: 10px 5px; }
    .fama-titulo     { font-size: 9px; }
    .radio-status-row { flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding: 0 10px; }
    .noticia-imagem  { height: 200px; }
    .footer-content  { flex-direction: column; text-align: center; }
    .footer-logo     { margin: 0 auto; }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.noticia-item               { animation: fadeIn 0.5s ease forwards; }
.noticia-item:nth-child(1)  { animation-delay: 0.1s; }
.noticia-item:nth-child(2)  { animation-delay: 0.2s; }
.noticia-item:nth-child(3)  { animation-delay: 0.3s; }

@keyframes moveCloudLeft {
    0%   { transform: translateX(0);                    opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.8; }
    100% { transform: translateX(calc(-100vw - 300px)); opacity: 0; }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.text-center { text-align: center; }
.mt-10       { margin-top: 10px; }
.mb-10       { margin-bottom: 10px; }
.hidden      { display: none; }

/* Scrollbar */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #3BB5E8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2A9BD6; }

/* ============================================
   MODAL LOGIN / REGISTRO
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}
.modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    animation: fadeIn 0.25s ease;
}
.modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    line-height: 1;
}
.modal-close:hover { color: #333; }
.modal-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 12px;
}
.modal-tab {
    flex: 1;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    padding: 9px 0;
    font-size: 13px;
    font-weight: 700;
    color: #888;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.modal-tab.active,
.modal-tab:hover { background: #3BB5E8; color: #fff; }
.modal-title { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 18px; }
.modal-msg {
    padding: 8px 12px;
    border-radius: 8px;
    background: #f9f9f9;
    margin-bottom: 12px;
    font-size: 13px;
}
.modal-field { margin-bottom: 14px; }
.modal-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}
.modal-field input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}
.modal-field input:focus { border-color: #3BB5E8; }
.modal-btn {
    width: 100%;
    background: #3BB5E8;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 0;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 6px;
    transition: background 0.2s, transform 0.1s;
}
.modal-btn:hover  { background: #2A9BD6; }
.modal-btn:active { transform: scale(0.98); }

/* ============================================
   HEADER MINI (páginas internas)
   ============================================ */
.header-mini { min-height: 90px; padding-top: 10px; }

/* ============================================
   NOTICIA PAGE
   ============================================ */
.noticia-page { background:#fff; border-radius:14px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.09); margin-bottom:30px; }
.noticia-page-img { display: none; position:relative; height:340px; overflow:hidden; }
.noticia-page-img img { width:100%; height:100%; object-fit:cover; display:none; }
.noticia-page-overlay { position:absolute; top:0; left:0; right:0; bottom:0; background:linear-gradient(180deg,rgba(0,0,0,.1) 0%,rgba(0,0,0,.6) 100%); display:none; align-items:flex-start; justify-content:center; padding-top:20px; }
.noticia-page-overlay .noticia-logo { max-width:130px; filter:drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.noticia-page-meta { padding:24px 28px 10px; border-bottom:2px solid #f0f0f0; }
.noticia-page-autor { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.noticia-page-autor img { width:52px; height:64px; border-radius:6px; background:#eee; object-fit:cover; border:3px solid #3BB5E8; }
.noticia-page-autor strong { display:block; font-size:14px; color:#333; }
.noticia-page-autor span { font-size:11px; color:#999; }
.noticia-page-titulo { font-size:22px; font-weight:700; color:#222; margin-bottom:8px; line-height:1.3; }
.noticia-page-desc { font-size:14px; color:#666; line-height:1.6; margin-bottom:10px; }
.noticia-page-texto { padding:24px 28px 28px; font-size:14px; color:#444; line-height:1.8; }
.noticia-page-texto img { max-width:100%; border-radius:8px; margin:10px 0; }
.noticia-page-texto h1,.noticia-page-texto h2,.noticia-page-texto h3 { color:#222; margin:16px 0 8px; font-weight:700; }
.noticia-page-texto p { margin-bottom:12px; }
.noticia-page-texto a { color:#3BB5E8; }
.noticia-voltar { display:inline-block; margin:0 28px 28px; color:#3BB5E8; font-size:13px; font-weight:600; text-decoration:none; padding:8px 18px; border:2px solid #3BB5E8; border-radius:20px; transition:all .2s; }
.noticia-voltar:hover { background:#3BB5E8; color:#fff; }

/* ============================================
   EQUIPE PAGE
   ============================================ */
.equipe-tabs { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:22px; }
.equipe-tab { background:#fff; border:2px solid #e0e0e0; border-radius:20px; padding:9px 20px; font-family:'Ubuntu',sans-serif; font-size:13px; font-weight:700; color:#888; text-transform:uppercase; letter-spacing:.5px; transition:all .2s; display:flex; align-items:center; gap:8px; }
.equipe-tab:hover { border-color:#3BB5E8; color:#3BB5E8; }
.equipe-tab.active { background:#3BB5E8; border-color:#3BB5E8; color:#fff; }
.equipe-tab-count { background:rgba(0,0,0,.12); border-radius:12px; padding:2px 8px; font-size:11px; }
.equipe-tab.active .equipe-tab-count { background:rgba(255,255,255,.3); }
.equipe-painel { display:none; }
.equipe-painel.active { display:block; animation:fadeIn .3s ease; }
.equipe-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:16px; }
.equipe-card { background:#fff; border-radius:12px; padding:20px 12px 16px; text-align:center; box-shadow:0 2px 12px rgba(0,0,0,.07); transition:transform .2s,box-shadow .2s; }
.equipe-card:hover { transform:translateY(-4px); box-shadow:0 6px 20px rgba(0,0,0,.12); }
.equipe-avatar { width:80px; height:100px; margin:0 auto 12px; overflow:hidden; }
.equipe-avatar img { width:100%; height:100%; object-fit:contain; filter:drop-shadow(2px 3px 5px rgba(0,0,0,.25)); }
.equipe-info { display:flex; flex-direction:column; gap:5px; }
.equipe-nome { font-size:14px; font-weight:700; color:#333; }
.equipe-cargo-tag { display:inline-block; background:#e8f6fd; color:#3BB5E8; font-size:11px; font-weight:600; padding:3px 10px; border-radius:12px; text-transform:uppercase; letter-spacing:.3px; }

/* ============================================
   SEJA MEMBRO PAGE
   ============================================ */
.membro-content { display:grid; grid-template-columns:1fr 1.3fr; gap:30px; align-items:center; background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.08); }
.membro-banner { background:#3BB5E8; }
.membro-banner-img { width:100%; display:block; object-fit:cover; min-height:100%; }
.membro-texto { padding:35px 30px 35px 10px; }
.membro-texto h2 { font-size:22px; font-weight:700; color:#333; margin-bottom:14px; line-height:1.3; }
.membro-texto>p { font-size:14px; color:#666; line-height:1.7; margin-bottom:24px; }
.membro-beneficios { display:flex; flex-direction:column; gap:16px; margin-bottom:28px; }
.beneficio-item { display:flex; align-items:flex-start; gap:14px; }
.beneficio-item img { width:30px; height:30px; flex-shrink:0; margin-top:2px; }
.beneficio-item strong { display:block; font-size:14px; color:#333; margin-bottom:3px; }
.beneficio-item p { font-size:12px; color:#777; line-height:1.5; margin:0; }
.membro-cta { display:inline-block; background:#3BB5E8; color:#fff; text-decoration:none; font-size:14px; font-weight:700; padding:13px 28px; border-radius:25px; letter-spacing:.5px; transition:background .2s,transform .1s; margin-bottom:14px; }
.membro-cta:hover { background:#2A9BD6; }
.membro-login-link { font-size:13px; color:#888; }
.membro-login-link a { color:#3BB5E8; font-weight:600; text-decoration:none; }

@media(max-width:700px){
    .membro-content{grid-template-columns:1fr;}
    .membro-banner{max-height:220px;overflow:hidden;}
    .membro-texto{padding:24px;}
    .equipe-grid{grid-template-columns:repeat(2,1fr);}
    .noticia-page-img{height:200px;}
    .noticia-page-titulo{font-size:17px;}
    .noticia-page-meta,.noticia-page-texto{padding:16px;}
}

/* ============================================
   PÁGINAS INTERNAS — Header mini sem azul
   ============================================ */
body.pagina-interna {
    background: #f0f0f0;
}

.header-interno {
    background: #fff;
    border-bottom: 2px solid #e8e8e8;
    padding: 12px 0;
    position: relative;
    z-index: 30;
}
.header-interno-content {
    display: flex;
    align-items: center;
}
.header-interno-logo img {
    height: 34px;
    width: auto;
}

/* Botão voltar */
.btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3BB5E8;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid #3BB5E8;
    border-radius: 20px;
    margin-bottom: 18px;
    transition: all 0.2s;
}
.btn-voltar:hover { background: #3BB5E8; color: #fff; }

/* ============================================
   NAV USER WIDGET (avatar logado)
   ============================================ */
.nav-user-area {
    display: none;
    align-items: center;
    justify-content: flex-end;
    min-width: 90px;
    position: relative;
}

.nav-user {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-user-avatar {
    width: 44px;
    height: 42px;
    margin-right: 0;
    border-radius: 100%;
    object-fit: cover;
    cursor: url(assets/img/cursor-pointer.png), pointer !important;
    transition: transform 0.2s;
}

.nav-user:hover .nav-user-avatar { transform: scale(1.1); }

.nav-user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + -10px);
        right: -60px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
    padding: 12px 16px;
    min-width: 150px;
    z-index: 1000;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.nav-user:hover .nav-user-dropdown { display: flex; }

.nav-user-nome {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.nav-user-sair {
    background: #c62828;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 14px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.nav-user-sair:hover { background: #b71c1c; }

/* ============================================
   PAGINAÇÃO — indicador de página
   ============================================ */
.nav-pagina {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 12px;
    user-select: none;
}
.noticias-nav button:disabled {
    opacity: 0.35;
    cursor: default !important;
}

/* ============================================
   COMENTÁRIOS
   ============================================ */
.comentarios-section {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

.coment-login-aviso {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}
.coment-login-aviso a { color: #3BB5E8; font-weight: 700; }

.coment-form {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.coment-form-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #3BB5E8;
    background: #e8f6fd;
    object-fit: cover;
    flex-shrink: 0;
}
.coment-form-body { flex: 1; }
.coment-form-body textarea {
    width: 100%;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    color: #333;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
}
.coment-form-body textarea:focus { border-color: #3BB5E8; }
.coment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 11px;
    color: #aaa;
}
.btn-coment {
    background: #3BB5E8;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.btn-coment:hover { background: #2A9BD6; }
.btn-coment:disabled { opacity: 0.5; }

.coment-msg {
    margin-top: 8px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f9f9f9;
}

.comentarios-lista { display: flex; flex-direction: column; gap: 14px; }

.coment-item {
    display: flex;
    gap: 12px;
    background: #fafafa;
    border-radius: 10px;
    padding: 14px;
    border: 1px solid #f0f0f0;
    transition: border-color 0.2s;
}
.coment-item:hover { border-color: #3BB5E8; }
.coment-novo { animation: fadeIn 0.4s ease; }

.coment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #e8f6fd;
    object-fit: cover;
    flex-shrink: 0;
}
.coment-body { flex: 1; }
.coment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.coment-autor { font-size: 13px; font-weight: 700; color: #333; }
.coment-tempo { font-size: 11px; color: #aaa; }
.coment-texto { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }
.coment-vazio { text-align: center; color: #aaa; font-size: 13px; padding: 20px 0; }

/* ============================================
   MEMBRO JÁ LOGADO
   ============================================ */
.membro-ja-logado p { font-size: 15px; color: #333; margin-bottom: 16px; }

/* ============================================
   RESPONSIVO INTERNO
   ============================================ */
@media (max-width: 600px) {
    .coment-form { flex-direction: column; }
    .coment-form-avatar img { display: none; }
}


/* ============================================
   MODAL PEDIDO
   ============================================ */
.modal-box-pedido select,
.modal-box-pedido textarea {
    width: 100%;
    border: 2px solid #d7edf9;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    background: #fff;
}

.modal-box-pedido textarea {
    resize: vertical;
    min-height: 110px;
}

.modal-box-pedido select:focus,
.modal-box-pedido textarea:focus {
    border-color: #3BB5E8;
}

.radio-dj-pedidos.is-hidden {
    visibility: hidden;
    pointer-events: none;
}

@media screen and (min-width: 1920px) {
    body {
        zoom: 1.20;
    }
}

/* Validação Habbo no modal */
.habbo-code-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.habbo-code-row input {
    flex: 1;
}
.habbo-code-row button {
    border: 0;
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    font-weight: 700;
}
.modal-help-link {
    margin: 10px 0 0;
    text-align: center;
    font-size: 13px;
}
.modal-help-link a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}
.modal-hint {
    display: block;
    margin-top: 6px;
    opacity: .75;
    font-size: 12px;
}

/* Player flutuante nas páginas internas */
.floating-radio-player {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.floating-radio-btn {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floating-radio-text {
    font-weight: 700;
    font-size: 13px;
    color: #333;
}
