/* =====================================================
   6ª FPSS 2027 • CONVERSAO MASTER LIMPO
   Apenas ajustes globais temporários
===================================================== */

/* =====================================================
   BARRA SUPERIOR
===================================================== */

.barra-urgencia{
    position:relative;
    z-index:1000;
    background:#facc15;
    color:#111111;
    text-align:center;
    padding:11px 14px;
    font-weight:800;
    font-size:14px;
    line-height:1.4;
}

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

.topbar-master{
    position:sticky;
    top:0;
    z-index:9999;
    width:100%;
    background:linear-gradient(180deg,#8b0000,#b30000);
    box-shadow:0 4px 14px rgba(0,0,0,.25);
}

.header-main{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    min-height:72px;
    padding:10px 18px;

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

.brand-area{
    display:flex;
    align-items:center;
}

.brand-text h1{
    margin:0;
    color:#ffffff;
    font-size:20px;
    font-weight:900;
}

.brand-text p{
    margin:0;
    color:#fecaca;
    font-size:11px;
}

.menu-master{
    display:flex;
    align-items:center;
    gap:18px;
}

.menu-master a{
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.2s;
}

.menu-master a:hover{
    color:#facc15;
}

.menu-toggle{
    display:none;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px){

body{
    overflow-x:hidden;
}

/* HEADER */

.topbar-master{
    padding:0;
}

.header-main{
    min-height:64px;
    padding:10px 12px;
    gap:10px;
}

.brand-area{
    max-width:150px;
}

.brand-text h1{
    font-size:15px;
    line-height:1;
}

.brand-text p{
    font-size:10px;
    line-height:1.1;
}

.brand-area img,
.logo img{
    width:38px;
    height:38px;
}

/* MENU */

.menu-master{
    display:none;
}

/* BOTÕES */

.header-ctas{
    display:flex;
    align-items:center;
    gap:6px;
}

.btn-header-whatsapp,
.btn-header-buy{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:40px;

    padding:8px 10px;

    border-radius:10px;

    font-size:10px;
    font-weight:800;

    line-height:1.1;

    white-space:nowrap;
}

/* WHATSAPP FLOAT */

.whatsapp-float,
.atendimento-float{
    transform:scale(.82);
    right:6px;
    bottom:8px;
}

}