/* BOTON CTA - PIDE PRESUPUESTO */

/* DESKTOP: En HOME, el boton sticky "Pide presupuesto" siempre visible */
@media (min-width: 1024px) {
  .home .header-button .header-sticky-button.alt {
    display: inline-block !important;
  }
}

/* Ocultar el boton extra sm-cta-ontop (ya no se usa) */
.sm-cta-ontop {
  display: none !important;
}

/* MOBILE: Boton flotante fijo oculto por defecto */
.sm-mobile-cta {
  display: none;
}

/* MOBILE: Boton flotante visible en home y artistas */
@media (max-width: 1023px) {
  .home .sm-mobile-cta,
  .single-portfolio .sm-mobile-cta,
  .page-id-3662 .sm-mobile-cta {
    display: block !important;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    background-color: #e8491d;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
  }
  /* ARTISTAS: boton mas compacto pero legible */
  .single-portfolio .sm-mobile-cta {
    font-size: 13px;
    font-weight: 700;
    padding: 13px 24px;
    text-transform: none;
    letter-spacing: 0.3px;
  }
  .home .sm-mobile-cta:hover,
  .home .sm-mobile-cta:active,
  .single-portfolio .sm-mobile-cta:hover,
  .single-portfolio .sm-mobile-cta:active,
  .page-id-3662 .sm-mobile-cta:hover,
  .page-id-3662 .sm-mobile-cta:active {
    background-color: #d43d14;
    color: #fff !important;
    transform: translateX(-50%) scale(1.03);
  }
}