body{
    margin:0;
    background:#111;
    color:#fff;
    font-family:Arial;
}

/* MENU */
.topo{
    width:100%;
    background:#000;
    display:flex;
    padding:15px;
    align-items:center;
    justify-content:space-between;
}

.topo .logo img{
    height:60px;
}

.menu a{
    color:#fff;
    margin:0 15px;
    font-size:18px;
    text-decoration:none;
}

.acoes{
    display:flex;
    align-items:center;
}

.busca input{
    padding:10px;
    border-radius:5px 0 0 5px;
    border:none;
}

.busca button{
    padding:10px;
    border:none;
    background:#ffc400;
    border-radius:0 5px 5px 0;
}

.btn, .btn2{
    padding:10px 20px;
    margin-left:10px;
    background:#ffc400;
    color:#000;
    font-weight:bold;
    border-radius:5px;
    text-decoration:none;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:20px;
}

.radio-card{
    background:#222;
    padding:15px;
    border-radius:10px;
    text-align:center;
}

.radio-card img{
    width:100%;
    height:120px;
    object-fit:contain;
}

.radio-card a{
    padding:8px 12px;
    display:block;
    background:#ffc400;
    color:#000;
    margin-top:10px;
    border-radius:5px;
    text-decoration:none;
}

.banner img{
    width:100%;
}

/* Rodapé */
.rodape{
    text-align:center;
    padding:20px;
    background:#000;
}
/* CONTAINER DO SLIDER */
.slider {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

/* FAIXA QUE CARREGA OS SLIDES LADO A LADO */
.slides {
    display: flex;
    width: 100%;
    height: 100%;
    animation: slide 12s infinite;
}

/* CADA SLIDE */
.slide {
    width: 100%;
    flex: 1 0 100%;
}

.slide img {
    width: 200%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
}

/* ANIMAÇÃO */
@keyframes slide {
    0% { margin-left: 0; }
    30% { margin-left: 0; }

    33% { margin-left: -100%; }
    63% { margin-left: -100%; }

    66% { margin-left: -200%; }
    96% { margin-left: -200%; }
}
.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu ul li {
    position: relative;
}

.menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
}

/* SUBMENU */
.submenu .dropdown {
    display: none;
    position: absolute;
    background: #222;
    top: 45px;
    left: 0;
    min-width: 160px;
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
}

.submenu:hover .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid #333;
}

.dropdown li a:hover {
    background: #444;
}
/* ===== MENU PRINCIPAL ===== */
.menu {
    display: flex;
    align-items: center;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 12px 5px;
    display: block;
}

/* ===== SUBMENU ===== */
.submenu:hover .dropdown {
    display: block;
}

.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;

    position: absolute;
    top: 40px;
    left: 0;
    background: #111;
    min-width: 160px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 999;
}

.dropdown li a {
    padding: 10px 15px;
    border-bottom: 1px solid #333;
}

.dropdown li a:hover {
    background: #222;
}

/* Remover bullets também no submenu */
.dropdown li {
    list-style: none;
}
/* ===== HEADER ===== */
.topo {
    background: #000;
    padding: 12px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

/* LOGO */
.logo img {
    height: 60px;
}

/* ===== MENU ===== */
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    gap: 35px;
}

.menu ul li {
    position: relative;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}

/* ===== SUBMENU ===== */
.submenu:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    background: #111;

    top: 30px;
    left: 0;

    padding: 0;
    min-width: 160px;

    border-radius: 5px;
    overflow: hidden;
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    display: block;
    padding: 12px;
    border-bottom: 1px solid #333;
}

.dropdown li a:hover {
    background: #222;
}

/* ===== CAMPO DE BUSCA ===== */
.busca {
    display: flex;
    align-items: center;
}

.busca input {
    height: 38px;
    padding: 0 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    width: 220px;
}

.busca button {
    height: 38px;
    padding: 0 12px;
    border: none;
    background: #ffcc00;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.busca button i {
    color: #000;
}

/* ===== BOTÕES À DIREITA ===== */
.acoes {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn, .btn2 {
    background: #ffcc00;
    padding: 10px 18px;
    color: black;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
}

.btn2 {
    background: #ffcc00;
}
/* SUBMENU ESTILO */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
}

.dropdown-menu > li > a {
    padding: 8px 15px;
}

/* Setas do submenu */
.dropdown-submenu > a:after {
    content: "▶";
    float: right;
    margin-top: 5px;
    font-size: 12px;
    opacity: 0.6;
}
/* MENU FIXO SUPERIOR */
.menu-topo-fixo {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 12px 0;
    z-index: 9999;
}

.menu-topo-fixo .menu-conteudo {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 16px;
}

.menu-topo-fixo .menu-conteudo a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* CONTAINER DO FORMULÁRIO */
.container-form {
    max-width: 600px;
    margin: 120px auto 40px auto; /* espaço por causa do menu fixo */
    padding: 30px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 0 10px #ddd;
}

.container-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* CAMPOS DO FORMULÁRIO */
.container-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.container-form input,
.container-form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    background: #fff;
}

/* BOTÃO */
.botao-enviar {
    width: 100%;
    margin-top: 25px;
    padding: 12px;
    background: #ffbe00;
    color: #000;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.botao-enviar:hover {
    background: #e0aa00;
}

/* RODAPÉ FIXO */
.rodape-fixo {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 17px;
}
.notificacao-topo {
    background: #ffcc00;
    padding: 6px;
    text-align: center;
    font-size: 4px;
    border-bottom: 2px solid #000;
}
.btn {
    background: green;
    color: white;
    padding: 8px;
    text-decoration: none;
}

.btn-nao {
    background: red;
    color: white;
    padding: 8px;
    text-decoration: none;
}
.section-title {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}
.topo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    padding: 10px 20px;
}

/* AGRUPA LOGO + MENU */
.topo-left {
    display: flex;
    align-items: center;
    gap: 10px; /* espaço entre logo e menu */
}

/* LOGO */
.logo img {
    height: 90px;
}

/* MENU */
.menu ul {
    display: flex;
    list-style: none;
    gap: 65px;
    margin: 0;
    padding: 0;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}
/* HEADER ORGANIZADO */
.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
}

/* LOGO AO LADO DO MENU */
.topo-left {
    display: flex;
    align-items: center;
    gap: 20px; /* Ajuste aqui a distância entre logo e menu */
}

/* TAMANHO DA LOGO */
.logo-img {
    height: 60px;   /* ajuste como quiser */
    width: auto;
}

/* MENU */
.menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

/* AÇÕES DIREITA */
.acoes {
    display: flex;
    align-items: center;
    gap: 15px;
}
/* ====== CORREÇÃO DO TOPO (FUNDO PRETO + TEXTO BRANCO) ====== */
.topo {
    width: 100%;
    background: #000 !important;  /* 🔥 deixa o topo preto */
    color: #fff !important;       /* 🔥 texto branco */
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    position: relative; /* antes estava bugado no seu layout */
    z-index: 9999;
}

/* Logo */
.topo-left .logo img,
.topo .logo img {
    height: 55px;
    width: auto;
}

/* MENU */
.menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu ul li a {
    color: #fff !important;   /* 🔥 deixa links brancos */
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.menu ul li a:hover {
    color: #00ff80 !important;
}

/* Campo de busca */
.busca input {
    background: #fff;
    border-radius: 5px 0 0 5px;
}

/* Botão de busca */
.busca button {
    background: #ffc400;
}

/* Botão "MINHA CONTA" */
.btn {
    background: #00b327;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.tag-ao-vivo {
    background: #ff0000;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 10px;
    animation: pulse 1s infinite;
}

/* efeito pulsando */
@keyframes pulse {
    0% { box-shadow: 0 0 0px rgba(255,0,0,0.8); }
    50% { box-shadow: 0 0 10px rgba(255,0,0,1); }
    100% { box-shadow: 0 0 0px rgba(255,0,0,0.8); }
}
/* ============================
   TOPO
============================ */
.topo {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.topo-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px; /* AFASTA DA BORDA */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================
   LOGO CENTRALIZADA VERTICAL
============================ */
.logo img {
    height: 65px;     /* Ajuste aqui se quiser maior/menor */
    object-fit: contain;
    display: block;
}

/* ============================
   MENU 
============================ */
.menu ul {
    list-style: none;
    display: flex;
    gap: 25px;  /* espaço entre os menus */
    margin: 0;
    padding: 0;
}

.menu ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.menu ul li a:hover {
    color: #007bff;
}

/* ============================
   ÁREA DE AÇÕES (busca + conta)
============================ */
.acoes {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ============================
   BUSCA
============================ */
.busca input {
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.busca button {
    border: none;
    background: #007bff;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
}

/* ============================
   BOTÃO MINHA CONTA
============================ */
.btn {
    padding: 10px 18px;
    background: #ff6600;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #e85c00;
}
/* Remove espaço dos lados do menu */
.topo {
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px !important; /* antes estava muito grande */
    box-sizing: border-box;
}

/* Deixa logo centralizada no bloco menu */
.topo-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Ajusta o menu */
.menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
    padding: 0;
    margin: 0;
}

/* Botão Minha Conta mais afastado da borda */
.acoes {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 10px;
}
.topo {
    padding: 10px 15px !important;
}

.topo-left {
    display: flex;
    align-items: center;
    gap: 25px;
}
/* Remove espaço exagerado do menu */
.menu ul {
    display: flex;
    gap: 20px; /* antes provavelmente estava 40px ou mais */
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Remove qualquer margem escondida */
.menu {
    margin: 0 !important;
    padding: 0 !important;
}
/* MENU GERAL */
.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* LISTA DE LINKS */
.menu ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ÁREA DOS CAMPOS DE BUSCA */
.menu-busca {
    display: flex;
    gap: 10px;
    margin-left: 30px;
}

.menu-busca input,
.menu-busca select {
    padding: 8px 12px;
    border-radius: 6px;
    border: none;
    background: #fff;
    color: #000;
    font-size: 14px;
}

/* RESULTADOS */
#listaRadios {
    width: 90%;
    margin: 15px auto;
    background: #222;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    display: none;
}

.radio-item {
    padding: 6px 0;
    border-bottom: 1px solid #444;
}
/* HEADER */
.topo {
    width: 90%;           /* ajuste aqui: 100%, 90%, 80%, 70% */
    max-width: 1400px;    /* impede ficar gigantesco em telas grandes */
    background: #000;
    padding: 15px 0;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin: 0 auto;       /* CENTRALIZA A BARRA PRETA */
    position: relative;   /* necessário para o botão direita */
    
    border-radius: 8px;   /* opcional: deixa mais bonito */
}
.menu a {
    margin: 0 10px; 
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.menu {
    display: flex;
    align-items: center;
}
/* ============================
   AJUSTE GERAL PARA CELULAR
============================ */
@media (max-width: 768px) {

    body {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

    /* TOPO / MENU */
    .topo {
        flex-direction: column;
        padding: 10px;
        text-align: center;
    }

    .topo .logo {
        position: relative !important;
        left: 0 !important;
        margin-bottom: 10px;
    }

    .topo .logo img {
        height: 55px;
    }

    .menu ul {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px !important;
    }

    .menu ul li a {
        font-size: 18px;
        padding: 12px;
        display: block;
    }

    /* CAMPO DE BUSCA NO MENU */
    .menu-busca {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .menu-busca input,
    .menu-busca select {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border-radius: 8px;
        border: none;
    }

    /* PLAYER */
    .radio-box {
        width: 90%;
        margin: 20px auto;
        padding: 20px;
    }

    /* TOP 5 */
    .rank-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .rank-logo img {
        width: 80px;
        height: 80px;
    }

    .rank-num {
        font-size: 26px;
        width: auto;
    }

    /* CARDS DE RÁDIO */
    .card-radio {
        width: 100% !important;
        margin-bottom: 15px;
    }

    /* FOOTER */
    footer {
        text-align: center;
        padding: 15px;
        font-size: 15px;
    }
}
/* TOPO */
.topo {
    width: 100%;
    background: #000;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo img {
    height: 60px;
}

/* MENU */
.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* BUSCA */
.menu-busca {
    display: flex;
    gap: 10px;
}

.menu-busca input,
.menu-busca select {
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

/* MINHA CONTA */
.topo-right {
    position: absolute;
    right: 10px;
    top: 15px;
}

.topo-right .btn {
    background: #ffcc00;
    padding: 10px 15px;
    border-radius: 20px;
    color: #000;
    font-weight: bold;
}

/* =========================
   100% AJUSTE PARA CELULAR
========================= */
@media (max-width: 768px) {

    .topo {
        padding: 20px 10px;
        align-items: center;
        text-align: center;
    }

    .logo img {
        height: 50px;
    }

    .menu ul {
        flex-direction: column;
        gap: 10px;
    }

    .menu ul li a {
        font-size: 20px;
    }

    .menu-busca {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
    }

    .menu-busca input,
    .menu-busca select {
        width: 100%;
    }

    .topo-right {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 10px;
    }

    .topo-right .btn {
        width: 100%;
        display: block;
        text-align: center;
    }
}
.container {
	width: 100%
	max -width: 1200px;
	marg: auto;
}
.cards {
	display: flex;
	flex -wrap: wrap:
	gap: 10px;
}
.card {
	flex: 1 1 calc(50% - 10px);
}








@media (max-width: 768px) {

    /* Centraliza todo o topo */
    .topo {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 15px 0 !important;
    }

    /* Centraliza a logo */
    .logo,
    .logo img {
        display: block !important;
        margin: 0 auto !important;
    }

    /* MENU vira coluna e CENTRALIZADO */
    .menu ul {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 10px 0 !important;
    }

    .menu ul li {
        width: 100% !important;
        text-align: center !important;
    }

    /* Campos de busca 100% largura */
    .menu-busca {
        width: 90% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin: 0 auto !important;
    }

    .menu-busca input,
    .menu-busca select {
        width: 100% !important;
        text-align: center !important;
    }

    /* Botão direita */
    .topo-right {
        position: relative !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 10px !important;
        right: 0 !important;
        top: 0 !important;
    }

    .topo-right .btn {
        width: 80% !important;
        margin: 0 auto !important;
        display: block !important;
    }
}
/* SLIDE RESPONSIVO – NÃO ESTOURA NO CELULAR */
@media (max-width: 768px) {

    .slide, 
    .slider, 
    .carousel, 
    #slide, 
    .banner, 
    .slide-item,
    .carousel-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin: 0 auto !important;
    }

    /* As imagens do slide */
    .slide img,
    .slider img,
    .banner img,
    .carousel img,
    .slide-item img,
    .carousel-item img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}
/* =========================
   RESPONSIVO MOBILE WEB RÁDIO
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    width:100%;
    overflow-x:hidden;
    font-family:Arial, sans-serif;
    background:#000;
}

/* CONTAINER PRINCIPAL */
.container,
.content,
.main,
.wrapper{
    width:100%;
    max-width:100%;
    padding:10px;
}

/* IMAGENS */
img{
    max-width:100%;
    height:auto;
    display:block;
}

/* BANNERS / SLIDES */
.slide,
.slider,
.banner{
    width:100%;
    overflow:hidden;
}

.slide img,
.slider img,
.banner img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:10px;
}

/* PLAYER */
.player{
    width:100%;
    padding:15px;
    border-radius:15px;
}

/* BOTÕES */
button,
.btn,
a.btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    font-size:16px;
    cursor:pointer;
    margin-top:10px;
}

/* MENU */
.menu{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.menu a{
    padding:10px;
    text-decoration:none;
}

/* TEXTO */
h1,h2,h3,h4{
    word-break:break-word;
}

/* IFRAME */
iframe{
    width:100%;
    border:none;
}

/* TABELAS */
table{
    width:100%;
    display:block;
    overflow-x:auto;
}

/* INPUTS */
input,
select,
textarea{
    width:100%;
    padding:12px;
    margin-top:5px;
    border-radius:8px;
}

/* CELULAR */
@media(max-width:768px){

    body{
        padding:0;
    }

    .container,
    .content,
    .main{
        padding:8px;
    }

    h1{
        font-size:22px;
    }

    h2{
        font-size:20px;
    }

    h3{
        font-size:18px;
    }

    
    .player{
        padding:10px;
    }

    button,
    .btn{
        font-size:15px;
    }

    /* REMOVE ESTOURO LATERAL */
    .row,
    .col,
    .box,
    .card{
        width:100% !important;
        margin:0 !important;
    }

    /* SLIDE RESPONSIVO */
    .slide img,
    .banner img{
        height:auto !important;
    }

}

/* TELAS MUITO PEQUENAS */
@media(max-width:480px){

    h1{
        font-size:20px;
    }

    h2{
        font-size:18px;
    }

    .player{
        border-radius:10px;
    }

}
.swiper,
.slide,
.slider{
    width:100% !important;
    overflow:hidden !important;
}

.swiper-slide img,
.slide img{
    width:100% !important;
    height:auto !important;
    object-fit:cover;
}
/* TOPO */
.topo{
    width:100%;
    background:#000;
    padding:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
    position:relative;
    flex-wrap:wrap;
}

/* LOGO */
.logo img{
    height:50px;
}

/* MENU */
.menu ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    gap:25px;
}

.menu ul li a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:bold;
}

.menu ul li a:hover{
    color:#ffcc00;
}

/* BOTÃO */
.topo-right .btn{
    background:#ffcc00;
    padding:10px 15px;
    color:#000;
    border-radius:20px;
    text-decoration:none;
    font-weight:bold;
}

/* BOTÃO MOBILE */
.menu-mobile{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){

    .topo{
        justify-content:space-between;
    }

    .menu-mobile{
        display:block;
    }

    .menu{
        width:100%;
        display:none;
    }

    .menu.active{
        display:block;
    }

    .menu ul{
        flex-direction:column;
        margin-top:15px;
        gap:10px;
    }

    .menu ul li{
        text-align:center;
    }

    .menu ul li a{
        display:block;
        background:#111;
        padding:12px;
        border-radius:10px;
    }

    .topo-right{
        width:100%;
        text-align:center;
        margin-top:10px;
    }

}
/* CORREÇÃO MENU MOBILE */

@media(max-width:768px){

    .topo{
        align-items:flex-start;
    }

    .topo-left{
        width:100%;
    }

    .menu{
        width:100%;
        display:none;
        margin-top:15px;
    }

    .menu.active{
        display:block;
    }

    .menu ul{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:10px;
    }

    .menu ul li{
        width:100%;
    }

    .menu ul li a{
        display:block;
        width:100%;
        box-sizing:border-box;
    }

    /* EMPURRA O SLIDE PARA BAIXO */
    .topo{
        padding-bottom:20px;
    }

}
/* No seu style.css ou na <style> da página */

/* SLIDER - limitar altura no mobile */
@media (max-width: 768px) {
    .swiper-slide,
    .slide,
    .slider,
    .banner {
        height: auto !important;
        min-height: unset !important;
        max-height: 220px; /* ajuste conforme precisar */
    }

    .swiper-slide img,
    .slide img,
    .banner img {
        width: 100% !important;
        height: auto !important;
        max-height: 220px;
        object-fit: cover;
        display: block;
    }

    /* Remove espaço extra abaixo do slider */
    .swiper-container,
    .slider-wrapper,
    .banner-wrapper {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}
/* ===== Ajuste de tamanho dos banners ===== */

/* SOMENTE CELULAR (telas até 600px) */
@media (max-width: 600px) {
    .rodape {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .rodape a {
        display: block !important;
        margin: 5px 0 !important;
        font-size: 18px !important;
    }
}
.radio-slogan{
    font-size:12px;
    color:#9aa5b1;
    margin:3px 0;
    font-style:italic;
}




