@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inconsolata:wght@200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7e952;
    color: #333;
    background: linear-gradient(to bottom, #fff170 0%, #ffeb8f 30%, rgb(255, 225, 91) 60%, #ffdd45 100%);
    background-repeat: no-repeat;
    background-size: cover; /* opcional: faz a imagem cobrir toda a tela */
    background-position: center; /* opcional: centraliza a imagem */
}

footer {
    position: bottom;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000; /* cor de fundo */
    color: white; /* cor do texto */
    text-align: center;
    padding: 0px;
    z-index: 1000; /* garante que fique acima de outros elementos */
}


#inspiracao{
    text-align: center;
}

#texto-evento {
    margin-bottom: 60px;
    display: flex;
    justify-content: center; /* centraliza horizontal */
    align-items: center;     /* centraliza vertical */

}

#texto-evento,
#setembro-amarelo {
  background-color: #fffbe6; /* tom claro de amarelo */
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  padding: 3em 2em;
  border-radius: 10px;
  line-height: 1.7;
  max-width: 900px;
  margin: 2em auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

/* Títulos */
#setembro-amarelo h1,
#texto-evento h1 {
  font-size: 2.2em;
  color: #d4af37; /* dourado/amarelo forte */
  margin-bottom: 0.5em;
  text-align: center;
}

#setembro-amarelo h2,
#texto-evento h2 {
  font-size: 1.5em;
  color: #cc9e2f;
  margin-top: 2em;
  margin-bottom: 0.6em;
}

/* Parágrafos */
#setembro-amarelo p,
#texto-evento p {
  margin-bottom: 1em;
  text-align: justify;
}

/* Listas */
#setembro-amarelo ul,
#texto-evento ul {
  padding-left: 1.2em;
  margin-bottom: 1.5em;
}

#setembro-amarelo ul li,
#texto-evento ul li {
  margin-bottom: 0.5em;
  list-style: "💛 ";
}

/* Links */
#setembro-amarelo a,
#texto-evento a {
  color: #b88c1d;
  text-decoration: none;
  font-weight: bold;
}

#setembro-amarelo a:hover,
#texto-evento a:hover {
  text-decoration: underline;
}

/* Responsivo */
@media (max-width: 600px) {
  #setembro-amarelo,
  #texto-evento {
    padding: 2em 1em;
  }

  #setembro-amarelo h1,
  #texto-evento h1 {
    font-size: 1.6em;
  }

  #setembro-amarelo h2,
  #texto-evento h2 {
    font-size: 1.3em;
  }
}

#banner-setembro-css {
  margin: 60px 0 2em 0;          /* margin-top:60px; margem direita e esquerda 0; margin-bottom: 2em */
  background: #fbeec2;
  border-radius: 8px;
  padding: 3em 1em;
  text-align: center;
  width: 100%;                   /* largura total da tela */
  box-sizing: border-box;        /* inclui padding dentro da largura */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#banner-setembro-css h1 {
  font-size: 2.2em;
  color: #d4af37;
  margin-bottom: 0.5em;
}

#banner-setembro-css p {
  font-size: 1.1em;
  color: #444;
}

/* ======= VÍDEO FIXO ======= */
.video-cantinho {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    height: 230px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    z-index: 1000;
    background: #000;
}

.fechar-video {
    position: absolute;
    top: 4px;
    right: 6px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 960px) {
    .video-cantinho {
        width: 100%;
        height: auto;
        bottom: 0;
        right: 0;
    }

    iframe {
        width: 100% !important;
        height: auto !important;
    }
}
