body {
    background: #1e1e1e;
    color: #fff;
}

/* Topo fixo – desktop: top 100px, mobile: top 60px (animado por JS) */
.topo-fixo {
    position: fixed;
    top: 90px; /* desktop: valor fixo */
    left: 0;
    width: 100%;
    background: #1e1e1e;
    padding: 15px;
    z-index: 98;
    text-align: center;
    border-bottom: 1px solid #444;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: top 0.3s cubic-bezier(.5,1.5,.7,1);
}

.topo-fixo h1 {
    font-size: 28px;
    color: #f06292;
    margin: 0;
}

.topo-fixo .icone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: #f06292;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #f06292;
    text-decoration: none;
    font-size: 18px;
    margin: 0 5px;
    transition: background 0.3s, color 0.3s;
}

.topo-fixo .icone-btn:hover {
    background: #f06292;
    color: #fff;
}

/* Espaço para header + topo-fixo */
.anuncio-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
    margin-top: 125px; /* ajusta conforme header+topo-fixo no desktop */
}

.anuncio-foto {
    flex: 1 1 40%;
    text-align: center;
}

.anuncio-foto img {
    max-width: 100%;
    border-radius: 12px;
}

.anuncio-info {
    flex: 1 1 55%;
}

.anuncio-info .campo {
    margin-bottom: 15px;
}

.anuncio-info .campo strong {
    display: block;
    margin-bottom: 5px;
    color: #f06292;
}

.servicos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.servico-pill {
    background: #2a2a2a;
    border: 1px solid #383838;
    color: #ddd;
    font-size: 0.8em;
    padding: 4px 11px;
    border-radius: 20px;
    line-height: 1.4;
}

.galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px auto;
    max-width: 1200px;
}

.galeria a {
    margin: 10px;
}

.galeria img {
    width: 280px;
    height: auto;
    border-radius: 12px;
}

/* Mobile: topo-fixo começa a top: 60px e pode ser animado pelo JS */
@media (max-width: 768px) {
    .anuncio-container {
        flex-direction: column;
        padding: 10px;
        margin-top: 115px; /* ajusta conforme header+topo-fixo no mobile */
    }

    .anuncio-foto,
    .anuncio-info {
        flex: 1 1 100%;
    }

    .topo-fixo {
        top: 60px;   /* valor inicial, depois JS pode animar */
        padding: 10px;
    }

    .topo-fixo h1 {
        font-size: 22px;
    }

    /* Garante que nav-main cobre tudo */
    .nav-main {
        z-index: 200 !important;
    }
}
