/* Special Offer Header Styles */
.special-offer{
    --primary: #70c232;       /* verde de marca usado en contactus.css */
    --primary-700: #4cec60;
    --text-dark: #111827;
    --muted: #6b7280;
    --white: #ffffff;
  }
  
  .special-offer{
    position: relative;
    padding: 52px 0 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgb(205 255 180) 100%);
    /* background: var(--gradient-bg); */
    overflow: hidden;
  }
  
  .special-offer .container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
  }
  
  /* Textura sutil opcional */
  .offer-noise{
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: .25;
  }
  
  /* Badge superior */
  .offer-badge{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    letter-spacing: .2px;
    margin-bottom: 12px;
    box-shadow: 0 10px 18px rgba(112, 194, 50, .25);
  }
  
  .badge-icon{
    width: 16px;
    height: 16px;
    color: #fff;
  }
  
  /* Título y subtítulo */
  .offer-title{
    font-family: "Bebas Neue", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
    font-size: clamp(28px, 6.2vw, 56px);
    color: var(--text-dark);
    letter-spacing: .6px;
    margin: 6px 0 6px;
    text-shadow: 0 6px 24px rgba(0,0,0,0.08);
  }
  
  .offer-subtitle{
    color: var(--muted);
    font-size: clamp(13px, 2.2vw, 15.5px);
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
  }
  
  /* Responsivo */
  @media (max-width: 640px){
    .offer-badge{
      padding: 5px 10px;
    }
    .badge-icon{
      width: 14px;
      height: 14px;
    }
  }