.apps-promo-grid {
          display: grid;
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

        @media (min-width: 992px) {
          .apps-promo-grid {
            grid-template-columns: 1fr 1fr;
          }
        }

        .promo-banner-card {
          position: relative;
          border-radius: 1.5rem;
          overflow: hidden;
          background-color: #0f172a;
          color: white;
          display: flex;
          flex-direction: column;
          box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }

        /* Banner 1: App Brevemente */
        .promo-app1 {
          background-color: #192752;
          position: relative;
          z-index: 1;
        }

        .promo-app1::before {
          content: '';
          position: absolute;
          top: -10%;
          right: -10%;
          width: 60%;
          height: 60%;
          background: #ea580c;
          border-radius: 50%;
          z-index: -1;
        }

        .promo-app1::after {
          content: '';
          position: absolute;
          bottom: -20%;
          left: -10%;
          width: 50%;
          height: 50%;
          background: #ea580c;
          border-radius: 50%;
          z-index: -1;
        }

        .promo-content-wrapper {
          display: flex;
          flex-direction: column;
          padding: 2rem 1.5rem;
          flex: 1;
        }

        @media (min-width: 768px) {
          .promo-content-wrapper {
            padding: 2.5rem 2rem;
          }
        }

        @media (min-width: 1200px) {
          .promo-content-wrapper {
            padding: 3rem;
          }
        }

        .promo-text-col {
          flex: 1;
          z-index: 2;
        }

        .promo-img-col {
          flex: 0 0 35%;
          display: flex;
          align-items: flex-end;
          justify-content: center;
          position: relative;
          z-index: 2;
        }

        .promo-img-col img {
          max-width: 100%;
          height: auto;
          object-fit: contain;
          margin-bottom: -2rem;
          /* Pull image slightly down */
        }

        .promo-title {
          font-size: 2.5rem;
          font-weight: 800;
          color: white;
          line-height: 1.1;
          margin-bottom: 1rem;
          text-transform: uppercase;
        }

        .promo-title span {
          color: #ea580c;
        }

        .promo-subtitle {
          font-size: 1.1rem;
          color: #cbd5e1;
          margin-bottom: 2.5rem;
          line-height: 1.5;
          max-width: 90%;
        }

        .promo-features {
          display: flex;
          flex-direction: column;
          gap: 1.5rem;
        }

        .promo-feature-item {
          display: flex;
          align-items: flex-start;
          gap: 1rem;
        }

        .promo-feature-icon {
          width: 48px;
          height: 48px;
          border-radius: 50%;
          background-color: #ea580c;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
        }

        .promo-feature-text h4 {
          font-size: 1.1rem;
          font-weight: 700;
          margin-bottom: 0.25rem;
          color: white;
        }

        .promo-feature-text p {
          font-size: 0.95rem;
          color: #cbd5e1;
          margin: 0;
          line-height: 1.4;
        }

        .promo-bottom-curve {
          width: 100%;
          background: white;
          border-top-right-radius: 40% 80%;
          padding: 1.25rem 2rem 1.25rem 2.5rem;
          min-height: 5rem;
          display: flex;
          align-items: center;
          gap: 1rem;
          z-index: 3;
          box-sizing: border-box;
          margin-top: auto;
        }

        .promo-app2 .promo-bottom-curve {
          border-top-right-radius: 0;
          border-top-left-radius: 40% 80%;
          padding: 1.25rem 3rem 1.25rem clamp(7rem, 18%, 10rem);
          justify-content: flex-end;
        }

        .promo-app2 .promo-bottom-text {
          text-align: right;
        }

        .promo-app2 .promo-bottom-icon {
          margin-left: auto;
        }

        .promo-bottom-icon {
          color: #ea580c;
        }

        .promo-bottom-text h4 {
          font-size: 1.1rem;
          font-weight: 800;
          color: #0f172a;
          margin-bottom: 0.15rem;
        }

        .promo-bottom-text p {
          font-size: 0.9rem;
          color: #4b5563;
          margin: 0;
          line-height: 1.3;
        }

        /* Banner 2: App Provisória */
        .promo-app2 {
          background-color: #192752;
        }

        .promo-app2 .promo-title span {
          color: #ea580c;
        }

        .offline-badge {
          display: inline-flex;
          align-items: center;
          gap: 0.75rem;
          border: 1px solid #475569;
          border-radius: 2rem;
          padding: 0.5rem 1rem;
          margin-bottom: 2rem;
        }

        .offline-badge-icon {
          color: #ea580c;
        }

        .offline-badge-text h5 {
          font-size: 0.9rem;
          font-weight: 700;
          margin: 0;
          color: white;
          text-transform: uppercase;
        }

        .offline-badge-text p {
          font-size: 0.8rem;
          color: #cbd5e1;
          margin: 0;
        }

        .promo2-img-container {
          margin-top: 1rem;
          text-align: center;
          position: relative;
          z-index: 2;
        }

        .promo2-img-container img {
          max-width: 100%;
          height: auto;
          margin: 0 auto;
        }

        .promo2-features-row {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 1rem;
          margin-top: auto;
        }

        .promo2-feature-col {
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 0.5rem;
        }

        .promo2-feature-col .promo-feature-icon {
          background-color: #ea580c;
          width: 40px;
          height: 40px;
        }

        .promo2-feature-col h4 {
          font-size: 0.95rem;
          font-weight: 700;
          color: white;
          margin: 0;
        }

        .promo2-feature-col p {
          font-size: 0.8rem;
          color: #cbd5e1;
          line-height: 1.3;
          margin: 0;
        }

        @media (max-width: 768px) {
          .promo-title {
            font-size: 1.75rem;
          }

          .promo-subtitle {
            font-size: 0.95rem;
          }

          .promo-bottom-curve {
            flex-direction: column;
            text-align: center;
            padding: 1.25rem 1rem;
          }

          .promo-app2 .promo-bottom-curve {
            border-top-left-radius: 0;
            border-top-right-radius: 40% 80%;
            justify-content: center;
            padding: 1.25rem 1rem;
          }

          .promo-app2 .promo-bottom-text {
            text-align: center;
          }

          .promo-app2 .promo-bottom-curve > div {
            flex-direction: column-reverse !important;
            justify-content: center !important;
            margin-left: 0 !important;
            text-align: center !important;
          }

          .promo-app2 .promo-bottom-icon {
            margin-left: 0;
          }

          .promo2-features-row {
            grid-template-columns: 1fr;
            gap: 1.25rem;
          }

          .promo2-feature-col {
            text-align: left;
            flex-direction: row;
            align-items: flex-start;
          }

          .promo2-feature-col h4,
          .promo2-feature-col p {
            text-align: left;
          }

          .promo-img-col {
            margin-top: 1.5rem;
          }

          .promo-feature-icon {
            width: 40px;
            height: 40px;
          }
        }

        @media (max-width: 480px) {
          .promo-title {
            font-size: 1.5rem;
          }

          .promo-bottom-text h4 {
            font-size: 0.95rem;
          }

          .promo-bottom-text p {
            font-size: 0.8rem;
          }

          .promo-feature-text h4 {
            font-size: 0.95rem;
          }

          .promo-feature-text p {
            font-size: 0.85rem;
          }

          .promo-features {
            gap: 1rem;
          }
        }
