/* Fundo do site */
body {
  font-family: "Brush Script MT", cursive;
  padding: 20px;
  background: rgba(80, 216, 240, 0.85);
  background-attachment: fixed;
  margin: 0;
}

/* Header */
.header {
  background: white;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Menu */
.menu {
  background: white;
  padding: 12px;
  margin-bottom: 25px;
  text-align: center;
  border-radius: 12px;
}

.menu a {
  margin: 0 18px;
  text-decoration: none;
  color: #4a4a4a;
  font-size: 20px;
}

/* Cada bloco branco das seções */
.favorite-section {
  background: #ffffffdd;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.favorite-section h3 {
  margin-bottom: 15px;
  text-transform: lowercase;
}

/* Galeria horizontal */
.scroll-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.scroll-gallery img {
  height: 140px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
  background: #eee;
}

/* Divider estilo myspace */
.divider {
  width: 100%;
  height: 40px;
  background: url("http://www.fillster.com/images/dividers/55t.gif") center no-repeat;
  margin-top: 15px;
}

/* Scrollbar custom pastel */
::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #7FC8F8, #F5A6E6);
  border-radius: 20px;
}
