@font-face {
  font-family: 'Sicoob Sans';
  src: url('sicoob_sans/SicoobSansRegular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Sicoob Sans Light';
  src: url('sicoob_sans/SicoobSansLight.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Sicoob Sans Black';
  src: url('sicoob_sans/SicoobSansBlack.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Sicoob Sans Extra Bold';
  src: url('sicoob_sans/SicoobSansExtraBold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Sicoob Sans', sans-serif;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.topo img {
  height: 50px;
}

.login {
  font-size: 14px;
}

.login a {
  color: #555;
  text-decoration: none;
  transition: 0.2s;
}

.login a:hover {
  color: #000;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  background-image: url(../img/background-top.webp);
  padding: 20px;
  color: #fff;
  background-size: 100% 80%;
  background-repeat: no-repeat;
}

.info {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
}

.info h1 {
  font-family: 'Sicoob Sans Extra Bold', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.datas {
  font-family: 'Sicoob Sans Extra Bold', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  background: #fff;
  color: #78C800;
  padding: 5px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 800;
}

.mes {
  font-family: 'Sicoob Sans light', sans-serif;
  display: inline-block;
  font-size: 1.5rem;
  background: #fff;
  color: #78C800;
  font-weight: 800;
  margin-bottom: 10px;
  padding: 5px;
}

.horario {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.icones {
  padding: 0 5%;
  margin-top: -50px;
}

.icones img {
  max-width: 60px;
  margin-left: 10px;
}

.video {
  max-width: 800px;
  padding: 20px;
}

.video video {
  width: 100%;
}

.galeria {
  padding: 30px 20px;
  text-align: center;
}

.galeria h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.galeria .imagens {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.galeria .imagens .img-galeria {
  width: 30%;
  height: 300px;
}

.galeria .imagens img {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.foto-personalizada {
    padding: 40px 10% 20px 10%;
    text-align: center;
}
.foto-personalizada div {
    padding: 10px;
}
.button-foto {
    padding: 15px 15px;
    border: none;
    background: #00ae9d;
    border-radius: 5px;
    cursor: pointer;
    color: #FFF;
    font-size: 15px;
    transition: 0.2s;
}
.button-foto:hover {
    background: #037b6f;
}
.foto-personalizada h1 {
    font-family: 'Sicoob Sans Extra Bold', sans-serif !important;
    color: #003641;
}
.foto-personalizada h2 {
    color: #333333;
    margin-bottom: 10px;
}
#imageLoader {
    display: none;
}
#imageCanvas {
    width: 500px;
    height: 500px;
}

.sorteio img {
    width: 100%;
}

.sorteio .regulamentos {
    padding: 30px 10px;
    padding-bottom: 50px;
    text-align: center;
    background: #00ae9d;
}

.regulamentos h1 {
    margin-bottom: 25px;
    color: #fff;
}

.regulamentos a {
    padding: 15px 15px;
    border: none;
    background: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    color: #00ae9d;
    font-size: 15px;
    font-weight: bold;
    transition: 0.2s;
    text-decoration: none;
}
.regulamentos a:hover {
    background: #dddddd;
}


@media screen and (max-width: 800px ) {
  .icones {
    margin-top: 0px;
    text-align: center;
  }
    .galeria .imagens .img-galeria {
      width:130%;
      height: 200px;
    }
    #imageCanvas {
        max-width: 300px;
        max-height: 300px;
}
}