.area-atendimento {
  padding: 90px 20px;
  background:
    radial-gradient(circle at top right, rgba(47, 108, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #f8f9ff 0%, #eef1ff 100%);
    margin-top: 50px;
}

.area-atendimento__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID PRINCIPAL */
.area-atendimento__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* IMAGEM */
.area-atendimento__visual img {
  width: 150%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/* TEXTO */
.area-atendimento__tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #2f6cff;
  text-transform: uppercase;
}

.area-atendimento__titulo {
  font-size: 2.6rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 16px;
}

.area-atendimento__titulo span {
  color: #2f6cff;
}

.area-atendimento__descricao {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 26px;
}

/* LISTA DE CIDADES */
.area-atendimento__cidades {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-atendimento__cidades li {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .area-atendimento__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .area-atendimento__visual img {

    max-width: 320px;
  }

  .area-atendimento__titulo {
    font-size: 2rem;
  }

  .area-atendimento__cidades li {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .area-atendimento {
    padding: 60px 16px;
  }

  .area-atendimento__titulo {
    font-size: 1.7rem;
  }

  .area-atendimento__descricao {
    font-size: 1rem;
  }

.area-atendimento__visual img {
  width: 120%;
  max-width: 340px;
  
}
}

.whatsapp-premium {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  z-index: 999;
}

/* MENSAGEM */
.whatsapp-premium__mensagem {
  position: relative;
  max-width: 240px;
  background: #fff;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
color: #1a1a2e;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s ease;
}

.whatsapp-premium.show .whatsapp-premium__mensagem {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* SETINHA */
.whatsapp-premium__mensagem::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: -6px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}

/* TEXTO */
.whatsapp-premium__texto {
  display: flex;
  gap: 8px;
}

.whatsapp-premium__emoji {
  font-size: 18px;
}

/* FECHAR */
.whatsapp-premium__fechar {
  position: absolute;
  top: 6px;
  right: 8px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: #999;
}

/* BOTÃO */
.whatsapp-premium__botao {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-premium__botao:hover {
  transform: scale(1.1);
}

.whatsapp-premium__botao svg {
  width: 28px;
}

/* RESPONSIVO */
@media (max-width: 480px) {
  .whatsapp-premium__botao {
    width: 54px;
    height: 54px;
  }

  .whatsapp-premium__mensagem {
    max-width: 180px;
  }
}