body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f3f5f7;
    color: #222;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
  }
  
  header {
    text-align: center;
    background: #fffbe6;
    padding: 30px 10px 10px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  
  .contador {
    font-size: 1.5em;
    font-weight: bold;
    margin: 15px 0;
    color: #d2691e;
    letter-spacing: 2px;
  }
  
  h1 {
    margin-top: 15px;
    color: #2b2b2b;
  }
  
  .menu-guia {
    display: flex;
    justify-content: center;
    gap: 18px;
    background: #fff;
    padding: 15px 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .menu-guia a {
    color: #3f51b5;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s;
  }
  
  .menu-guia a:hover {
    color: #fff;
    background: #d2691e;
    text-decoration: none;
  }
  
  main {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
  }
  
  section {
    margin-bottom: 35px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 25px 20px;
  }
  
  h2 {
    color: #3f51b5;
    margin-bottom: 12px;
  }
  
  ul {
    padding-left: 20px;
  }
  
  .imagens {
    max-width: 100%;
    height: 100px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease-in-out;
  }
  
  .imagens:hover {
    transform: scale(1.02);
  }
  
  .legenda {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    margin-top: 10px;
  }
  
  .carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    margin: 20px 0;
  }
  
  .carousel-btn {
    background: #3f51b5;
    color: #fff;
    border: none;
    font-size: 2rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel-btn:hover {
    background: #d2691e;
    transform: scale(1.1);
  }
  
  .carousel-btn:active {
    transform: scale(0.95);
  }
  
  #carousel-img {
    max-width: 90%;
    max-height: 400px;
    object-fit: cover;
  }
  
  footer {
    text-align: center;
    padding: 18px 0;
    background: #ececec;
    color: #555;
    font-size: 1em;
    margin-top: 35px;
  }
  
  @media (max-width: 768px) {
    .menu-guia {
      flex-wrap: wrap;
      gap: 10px;
      padding: 10px 5px;
    }
    
    .menu-guia a {
      font-size: 0.9em;
      padding: 6px 12px;
    }
    
    main {
      padding: 0 5px;
    }
    
    section {
      padding: 15px 8px;
    }
    
    .carousel-btn {
      width: 40px;
      height: 40px;
      font-size: 1.5rem;
    }
    
    #carousel-img {
      max-width: 85%;
    }
  }
  
  @media (max-width: 480px) {
    .contador {
      font-size: 1.2em;
    }
    
    h1 {
      font-size: 1.3em;
    }
    
    .carousel {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        position: relative;
        margin: 20px 0;
      }
      
      .carousel-container {
        width: 100%;
        max-width: 500px;
        text-align: center;
      }
      
      .carousel-btn {
        background: #3f51b5;
        color: #fff;
        border: none;
        font-size: 2rem;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .carousel-btn:hover {
        background: #d2691e;
        transform: scale(1.1);
      }
      
      #carousel-img {
        max-width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      }
      
  }
  