/* card-style.css - estilos do card personalizado */
.shortcode-botao4 {
  display: block;
  margin: 25px 0;
  border: none;
  border-radius: 14px;
  padding: 10px;
  background: #fff;
}

.shortcode-botao4 .btn-base {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #f7f7f7;
  border: 2px solid #0e1b4d;
  border-radius: 14px;
  padding: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.shortcode-botao4 .btn-base:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.shortcode-botao4 .img-area {
  flex-shrink: 0;
  width: 160px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #c2c2c2;
  margin-right: 20px;
}

.shortcode-botao4 .img-area img {
  width: 100%;
  height: auto;
}

.shortcode-botao4 .infos-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shortcode-botao4 .infos-area .titulo {
  font-size: 1.3em;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.shortcode-botao4 .infos-area .descricao {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.4;
}

.shortcode-botao4 .btn-acao {
  align-self: center;
  background-color: #e9b6b6;
  color: #fff;
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9em;
  border: none;
  cursor: pointer;
}

.shortcode-botao4 .btn-acao:hover {
  background-color: #d28f8f;
}

.shortcode-botao4 .disclaimer {
  font-size: 0.85em;
  color: #777;
  margin-top: 8px;
  margin-left: 8px;
}

@media (max-width: 640px) {
  .shortcode-botao4 .btn-base {
    flex-direction: column;
    text-align: center;
  }
  .shortcode-botao4 .img-area {
    margin: 0 0 10px 0;
    width: 100%;
    height: auto;
  }
  .shortcode-botao4 .infos-area .btn-acao {
    align-self: center;
  }
}


@keyframes pulseBtn {
  0% {
    background-color: #9a0e0e;
    color: #ffffff;
  }
  50% {
    background-color: #ffffff;
    color: #9a0e0e;
  }
  100% {
    background-color: #9a0e0e;
    color: #ffffff;
  }
}

.shortcode-botao4 .btn-acao {
  animation: pulseBtn 2s infinite ease-in-out;
}


/* Tamanhos dinâmicos para as imagens */
.shortcode-botao4.tamanho-thumbnail .img-area {
  width: 120px;
  height: 90px;
}

.shortcode-botao4.tamanho-medium .img-area {
  width: 180px;
  height: 135px;
}

.shortcode-botao4.tamanho-large .img-area {
  width: 260px;
  height: 180px;
}

.shortcode-botao4.tamanho-full .img-area {
  width: 100%;
  height: auto;
}
