/* Unified High Season hero buttons */
.hero-actions-unified{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin-top:24px;
}
.hero-actions-unified .hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:138px;
  min-height:54px;
  padding:14px 24px;
  border-radius:999px;
  border:1.5px solid rgba(255,255,255,.9);
  font:inherit;
  font-weight:700;
  line-height:1;
  text-decoration:none;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
  box-sizing:border-box;
}
.hero-actions-unified .hero-btn:hover{transform:translateY(-2px)}
.hero-actions-unified .hero-btn-call{
  background:#b8734b;
  color:#fff;
  border-color:#b8734b;
}
.hero-actions-unified .hero-btn-whatsapp{
  background:transparent;
  color:#fff;
  border-color:#2fa765;
}
.hero-actions-unified .hero-btn-menu{
  background:#fff;
  color:#25343a;
  border-color:#fff;
}
@media(max-width:640px){
  .hero-actions-unified{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    width:100%;
  }
  .hero-actions-unified .hero-btn{
    width:100%;
    min-width:0;
    min-height:58px;
    padding:16px 20px;
  }
}
