
body {
    background-image: url("fuscacapa.jpg"), url("fuscatraz.jpg");
    background-position: center top, center bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, 600px, 600px;
    margin: 0;
    min-height: 100vh;
  }

#contador {
    font-size: 3em;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(500deg, #000000 0%, #30db0d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 8px rgba(59, 155, 47, 0.533);
    padding: 20px 40px;
    border-radius: 16px;
    box-shadow: 0 6px 24px #0003;
    letter-spacing: .08em;
    margin-bottom: 20px;
    
    display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.caixa-texto {
    background: rgba(255,255,255,0.8);
    padding: 20px 32px;
    border-radius: 16px;
    max-width: 900px;
    margin: 30px auto;
    font-size: 1.2em;
    color: #222;
    box-shadow: 0 2px 16px #0002;
    line-height: 1.6;
  }
  h2 {
    color: #7c3aed;
    text-align: center;
    margin-bottom: 12px;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
  }
  .carrossel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
  }
  .carrossel-fotos {
    width: 320px;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0002;
    background: #fff8;
    display: flex;
  }
  .carrossel-fotos img {
    min-width: 100%;
    transition: transform 0.5s;
    object-fit: cover;
    display: none;
  }
  .carrossel-fotos img.ativa {
    display: block;
  }
  .carrossel-btn {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    cursor: pointer;
    box-shadow: 0 1px 6px #0002;
    transition: background 0.2s;
  }
  .carrossel-btn:hover {
    background: #e2e2ff;
  }
  