.topo-radio-wrapper {
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ==== BARRA SUPERIOR ==== */
.topo-radio-topbar {
    width: 100%;
    padding: 4px 40px;
    box-sizing: border-box;
}

.topo-radio-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto auto auto auto; /* tel | wa | email | cidade | redes */
    align-items: center;
    column-gap: 40px;
    font-size: 13px;
}

.topo-radio-topbar-left {
    display: contents;
}

.topo-radio-contact-block {
    display: inline-flex;
    align-items: center;
}

.topo-radio-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    font-size: 14px;
}

.topo-radio-contact-icon.dashicons:before {
    position: relative;
    top: 0;
}

.topo-radio-item {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    font-weight: 500;
}

.topo-radio-text {
    white-space: nowrap;
}

.topo-radio-topbar-right {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.topo-radio-social {
    text-decoration: none;
    font-size: 16px;
    padding: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: inherit;
}

/* ==== FAIXA PRINCIPAL ==== */
.topo-radio-main {
    width: 100%;
    padding: 18px 20px;
    box-sizing: border-box;
}

.topo-radio-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.topo-radio-logo img {
    max-height: 90px;
    height: auto;
    width: auto;
    display: block;
}

.topo-radio-logo-placeholder {
    font-weight: 600;
    font-size: 14px;
}

.topo-radio-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.topo-radio-nav {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.topo-radio-nav li {
    margin: 0;
    padding: 0;
}

.topo-radio-nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 14px;
}

.topo-radio-nav a span {
    display: inline-block;
}

/* ==== BOTÕES OUÇA / VEJA ==== */
.topo-radio-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topo-radio-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 0.08em;
    background: transparent;
    box-shadow: none;
    transition: transform 0.12s ease, opacity 0.12s ease;
}

.topo-radio-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.topo-radio-icon {
    font-size: 30px;
    line-height: 1;
}

.topo-radio-veja .topo-radio-icon {
    font-size: 30px;
}

/* Responsivo */
@media (max-width: 991px) {
    .topo-radio-topbar-inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 4px;
    }

    .topo-radio-topbar-right {
        justify-content: flex-start;
    }

    .topo-radio-inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .topo-radio-menu {
        order: 3;
    }

    .topo-radio-actions {
        order: 2;
    }

    .topo-radio-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .topo-radio-main {
        padding: 14px 12px;
    }

    .topo-radio-logo img {
        max-height: 70px;
    }

    .topo-radio-btn {
        font-size: 20px;
    }

    .topo-radio-actions {
        gap: 16px;
    }
}


/* ===== Mobile (somente logo + menu simples) ===== */
.topo-radio-mobile-menu{
    display:none;
}

@media (max-width: 768px){
    /* Esconde a faixa superior (contatos/redes) e os botões OUÇA/VEJA */
    .topo-radio-topbar{
        display:none !important;
    }
    .topo-radio-actions{
        display:none !important;
    }

    /* Esconde o menu desktop */
    .topo-radio-desktop-menu{
        display:none !important;
    }

    /* Mostra o menu mobile */
    .topo-radio-mobile-menu{
        display:block;
    }

    /* Ajustes gerais do topo */
    .topo-radio-main{
        padding: 10px 16px;
    }
    .topo-radio-main-inner{
        display:flex;
        align-items:center;
        justify-content: space-between;
        gap: 12px;
    }
    .topo-radio-logo img{
        max-height: 44px;
        width:auto;
    }

    /* Details/summary (hamburger) */
    .topo-radio-mobile-details{
        position: relative;
    }
    .topo-radio-mobile-summary{
        list-style: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255,255,255,.18);
        color: inherit;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    .topo-radio-mobile-details[open] .topo-radio-mobile-summary{
        background: rgba(255,255,255,.28);
    }
    .topo-radio-mobile-summary::-webkit-details-marker{
        display:none;
    }
    .topo-radio-mobile-summary .dashicons{
        font-size: 20px;
        width: 20px;
        height: 20px;
        line-height: 20px;
    }

    /* Dropdown */
    .topo-radio-mobile-nav{
        position: absolute;
        right: 0;
        margin-top: 10px;
        min-width: 220px;
        background: #fff;
        border-radius: 12px;
        padding: 8px;
        box-shadow: 0 10px 24px rgba(0,0,0,.18);
        z-index: 9999;
    }
    .topo-radio-nav-mobile{
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .topo-radio-nav-mobile li{
        margin: 0;
        padding: 0;
    }
    .topo-radio-nav-mobile a{
        display: block;
        padding: 10px 12px;
        border-radius: 10px;
        text-decoration: none;
        color: #111;
    }
    .topo-radio-nav-mobile a:hover{
        background: rgba(0,0,0,.06);
    }
}
