body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .section-image {
    width: 100%;
    display: block;
  }
  
  .final-section {
    position: relative;
    width: 100%;
    height: auto;
  }
  
  .final-section .section-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .button-group {
    position: absolute;
    top: 25%;
    right: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
  }
  
  .custom-button {
    width: 300px;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    background-color: #a26f58;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
  }
  
  .custom-button:hover {
    background-color: #8c5946;
  }
  
  /* === Responsivo para tablets === */
  @media (max-width: 900px) {
    .button-group {
      margin-top: 10px;
      margin-left: 40px;
      align-items: flex-start;
    }
  
    .custom-button {
      padding: 5px;
      width: 200px;
      font-size: 10px;
    }
  }
  
  /* === Responsivo para celulares pequenos === */
  @media (max-width: 480px) {
    .button-group {
      margin-top: -30px;
      margin-left: 60px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
    }
  
    .custom-button {
      width: 80px;
      font-size:5px;
      margin-bottom: -100px;
    }
  }
  