:root {
  --logo-size: clamp(90px, 24vw, 115px);
  --card-radius: 24px;
  --primary-green: #25D366;
  --soft-green: #e8f5e9;
  --verified-blue: #0095f6;
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-light: #94a3b8;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #f1f3f4;
  color: var(--text-main);
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  animation: fadeIn 0.8s ease-out;
  flex-shrink: 0;
  transform: translateY(-5%);
}

/* NOVO HEADER: Fino e com efeito de sumir */
.header-banner {
  width: 100%;
  height: clamp(130px, 22vw, 165px);
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../img/banner-lp.jpg'); /* Use sua imagem retangular aqui */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: none;
}

.content {
  padding: 15px clamp(20px, 5vw, 30px) 25px;
}

.title {
  font-size: clamp(1.2rem, 5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 10px;
  margin-bottom: 8px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.verified-icon {
  width: 18px;
  height: 18px;
  fill: var(--verified-blue);
  flex-shrink: 0;
}

.description {
  font-size: clamp(0.85rem, 3vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 500;
  padding: 0 10px;
}

/* STATUS MELHORADO: Vaga Disponível Pulsante */
.status-minimal {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.status-line.open {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #059669; /* Verde para disponibilidade */
}

.dot.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: #10b981;
  position: relative;
}

.dot.pulse::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #10b981;
  border-radius: 50%;
  z-index: 1;
  animation: ripple 1.5s infinite ease-out;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

/* BOTÃO WHATSAPP COM ANIMAÇÃO */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-green);
  color: #FFFFFF;
  text-decoration: none;
  padding: 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  width: 100%;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
  line-height: 1;
  animation: btn-pulse 2s infinite;
}

/* Efeito ao passar o mouse (opcional, mas recomendado) */
.btn-whatsapp:hover {
  transform: scale(1.02);
  background-color: #20bd5a; /* Um verde levemente mais escuro */
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Clique real (feedback tátil) */
.btn-whatsapp:active {
  transform: scale(0.98);
  animation: none; /* Para a animação ao clicar */
}

/* ANIMAÇÃO DE PULSO */
@keyframes btn-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  }
  50% {
    /* O botão cresce levemente e a sombra expande */
    transform: scale(1.02);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
  }
}

.btn-whatsapp img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  flex-shrink: 0; /* Impede que o ícone diminua se o texto for grande */
  display: inline-block;
  vertical-align: middle;
  /* Ajuste fino: se o ícone parecer "alto", aumente para 1px ou 2px */
  transform: translateY(0px);
}

.btn-whatsapp:active {
  transform: scale(0.97);
}

.footer-trust {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  padding: 0 15px;
  opacity: 0.85;
}

.trust-icon {
  width: 14px;
  height: 14px;
  fill: #10b981;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.7;
}

.badge {
  display: inline-block;
  background: var(--soft-green);
  color: #2e7d32;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-height: 550px) {
  body { overflow: auto; align-items: flex-start; padding-top: 40px; }
  .container { transform: none; }
}
