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

:root {
    --bg-color: #C8B4AD;
    --text-color: #271a45;
  }

body {
    background-color: var(--bg-color);
    place-content: center;
    display: grid;
    height: 100vh;
  }

  body * {
    color: var(--text-color);
    font-family: "Lato", sans-serif;
    line-height: 100%;
  }

  #btn-close,
  #animated {
    display: none;
  }
  
  #app {
    display: flex;
    align-items: center;
    gap: 60px;
  }

  #product-image {
    position: relative;
  }
  
  #product-image button {
    position: absolute;
    right: 0;
  
    background-color: transparent;
    border: 0;
  
    cursor: pointer;
  }

  html.animated button#btn-360,
  html.animated img#static {
    display: none;
  }
  
  html.animated button#btn-close,
  html.animated img#animated {
    display: initial;
  }

  #product-image > img {
    width: 400px;
    height: 300px;
    object-fit: cover;
  }
  
  h4 {
    font-weight: 300;
    font-size: 10px;
  }
  
  h1 {
    font-family: "Crimson Pro", serif;
    font-weight: 600;
    font-size: 32px;
  
    margin-top: 12px;
  }
  
  p {
    margin-top: 12px;
    opacity: 0.67;
  }
  
  #product-details button {
    font-size: 12px;
    line-height: 16px;
  
    padding: 8px 16px;
    border: 0.5px solid var(--text-color);
    border-radius: 999px;
  
    background-color: transparent;
  
    margin-top: 20px;
  }

button {
  transition: transform 0.5s ease;
  cursor: pointer;
}

button:hover {
  transform: rotate(-5deg); /* Rotaciona o botão */
}