.elementor .card-airbnb-style{/* Container da Imagem */
selector {
  position: relative;
  display: inline-block;
}

/* 1. O Texto (Preferido dos hóspedes) */
selector::before {
  content: "Preferido dos hóspedes"; /* Edite o texto aqui */
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* 2. O Badge do Coração (Fundo Branco) */
selector::after {
  content: "❤️ 15"; /* Edite o emoji e o número aqui */
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #222;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* 3. Efeito Interativo (Ao passar o mouse ou clicar segurando) */
/* Como é só CSS, a mudança ocorre no :hover ou :active */
selector:hover::after {
  content: "❤️ 16"; /* Simula o aumento ao passar o mouse */
  transform: scale(1.05);
}

/* Ajuste da Imagem para arredondar as bordas */
selector img {
  border-radius: 20px !important;
  display: block;
}\n}