/* Barra superior */
.topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: rgb(255, 210, 90);
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo img {
    height: 45px;
    margin-left: 10px;
}

.barra-pesquisa {
    margin: 0 auto;
}

.barra-pesquisa input {
    width: 260px;
    padding: 5px;
}

.barra-pesquisa button {
    padding: 6px 12px;
}

/* Coluna lateral */
.lateral {
    position: fixed;
    top: 60px;
    left: 0;
    width: 280px;
}

.lateral iframe {
    width: 260px;
    height: 180px;
    margin: 10px;
    border: 1px solid #333;
}

/* Corpo */
.conteudo {
    margin-left: 320px;
    padding-top: 70px;
    width: 65%;
}

/* Caixa absoluta */
.absoluta {
    position: absolute;
    top: 120px;
    right: 150px;
    width: 120px;
    height: 60px;
    background: rgb(60, 120, 255);
    border: 3px solid black;
    text-align: center;
    color: white;
    font-weight: bold;
}

/* Sticky */
.sticky-box {
    width: 90px;
    height: 45px;
    position: sticky;
    top: 80px;
    border: 1px solid black;
}

.icone {
    width: 90px;
    height: 45px;
}

/* Estático */
.estatica {
    width: 220px;
    height: 180px;
    background: rgb(255, 255, 120);
    border: 1px solid #000;
}

.estatica p {
    padding-top: 65px;
    text-align: center;
    font-family: cursive;
}

/* Relativa */
.relativa {
    width: 220px;
    height: 180px;
    background: rgb(255, 140, 140);
    border: 1px solid #000;
    position: relative;
    left: 260px;
    top: -180px;
}

.relativa p {
    padding-top: 65px;
    text-align: center;
    color: white;
    font-family: serif;
}

/* Caixa com bolinha */
.container {
    width: 220px;
    height: 200px;
    background: rgb(180, 180, 180);
    position: relative;
}

.bolinha {
    width: 130px;
    height: 130px;
    background: rgb(255, 160, 40);
    border-radius: 100%;
    position: absolute;
    top: 25px;
    right: -60px;
}

/* Fixo lateral */
.fixo {
    position: fixed;
    top: 120px;
    right: 40px;
    width: 130px;
    height: 150px;
    border: 2px solid black;
    text-align: center;
    background: white;     /* garante que a imagem apareça */
    z-index: 999;          /* deixa por cima de tudo */
}


.imgfixa {
    width: 130px;
    height: 150px;
}

/* Rodapé fixo */
.rodape {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgb(200, 40, 40);
    color: white;
    text-align: center;
    padding: 6px;
    border-top: 2px solid black;
}

.criador{
  border: 2px solid black;
  position: fixed;
  bottom: 0;
  z-index: 1;
  background: blue;
  width: 100%;
  color: white;
  text-align: center;
  height: 20px;
  text: center
}
