* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  background-color: #e62031;
  color: #fff;
  padding: 20px;
}

.header h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.header form {
  margin-top: 10px;
}

.header select {
  padding: 8px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  background-color: #fff;
  color: #1f2040;
  margin-right: 10px;
}

.canal {
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 20px;
  display: inline-block;
  width: 22%;
  margin-right: 2%;
}

.canal:last-of-type {
  margin-right: 0;
}

.canal .imagem {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
}

.canal .imagem img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.canal .informacoes {
  margin-top: 10px;
}

.canal h2 {
  font-size: 18px;
  margin-bottom: 5px;
}

.canal p {
  font-size: 14px;
  margin-bottom: 10px;
}

.canal a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #e62031;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
}

.footer {
  background-color: #e62031;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

html,
body {
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .canal {
    width: 100%;
    margin-right: 0;
  }

  .canal:last-of-type {
    margin-bottom: 0;
  }
}

.floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #0088cc;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 999;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.floating-button:hover {
  background-color: #005f99;
}

@media (max-width: 767px) {
  .floating-button {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

form {
  visibility: hidden;
}

.footer-links {
  visibility: hidden;
}

.informacoes input {
  visibility: hidden;
}

.informacoes p {
  visibility: hidden;
}

hr {
  visibility: hidden;
}

/* Estilos do Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 1000;
}

/* Estilos do Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-content {
  text-align: center;
}

.modal input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

.modal button {
  padding: 10px 20px;
  background-color: #e62031;
  color: #fff;
  border: none;
  cursor: pointer;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
