body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f9f6f7;
    color: #333;
}

/* TOPO */
.topo {
    background: linear-gradient(135deg, #f3c1d9, #e89bb5);
    text-align: center;
    padding: 40px 20px;
}

.topo h1 span {
    color: #7a2c52;
}

/* MENU */
.menu {
    background: #7a2c52;
    text-align: center;
    padding: 12px;
}

.menu a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    padding: 8px 14px;
    border-radius: 20px;
}

.menu a:hover {
    background: #a84c77;
}

/* CONTEÚDO */
.conteudo {
    padding: 40px;
    background: white;
}

/* CATÁLOGOS */
.catalogo-lista {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.catalogo-item {
    width: 160px;
    text-align: center;
    cursor: pointer;
}

.catalogo-item img {
    width: 80px;
    transition: transform 0.3s;
}

.catalogo-item:hover img {
    transform: scale(1.1);
}

.catalogo-item span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #7a2c52;
}

/* FRAME PDF */
.catalogo-frame {
    width: 100%;
    height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.catalogo-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* RODAPÉ */
.rodape {
    background: #7a2c52;
    color: white;
    text-align: center;
    padding: 15px;
}
