/* Estilos gerais do bloco */
.spell-sides {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  
  /* Cada seção */
  .spell-sides__section {
    position: relative;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
  }
  
  /* Conteúdo interno das seções */
  .spell-sides__content {
    width: 100%;
    z-index: 2;
  }
  
  /* Imagem flutuante */
  .spell-sides__float {
    position: absolute;
    top: 1rem;
    z-index: 1;
    pointer-events: none;
  }
  
  /* Lados possíveis para imagem flutuante */
  .spell-sides__float--left {
    left: 1rem;
  }
  
  .spell-sides__float--right {
    right: 1rem;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .spell-sides {
      flex-direction: column;
    }
  
    .spell-sides__section {
      width: 100% !important;
    }
  }
  