:root {
      --red: #D42B2B;
      --blue: #1A3A8F;
      --gold: #E8A000;
      --gold-light: #FFC933;
      --green: #1A8C3A;
      --green-light: #22B84A;
      --white: #FFFFFF;
      --off-white: #F7F5F0;
      --light-gray: #EFEFEF;
      --mid-gray: #888;
      --dark: #1A1A1A;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #f4f5f7;
      /* Soft aesthetic background for desktop */
      color: var(--dark);
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    .app-wrapper {
      background: var(--white);
      max-width: 440px;
      width: 100%;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }

    /* DESKTOP EXCLUSIVE VIEW */
    @media (min-width: 768px) {
      body {
        background: radial-gradient(circle at 50% 10%, #1a3a8f 0%, #030816 80%);
        padding: 40px 0;
      }

      .app-wrapper {
        min-height: auto;
        border-radius: 20px;
        box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
    }

    /* ALERT BAR */
    .alert-bar {
      background: var(--red);
      color: #fff;
      text-align: center;
      padding: 11px 14px;
      font-family: 'Oswald', sans-serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
    }

    .blink {
      display: inline-block;
      width: 9px;
      height: 9px;
      background: #fff;
      border-radius: 50%;
      animation: blink 1s infinite;
      flex-shrink: 0;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0
      }
    }

    /* BLINDADOS */
    .blindados-bar {
      background: var(--blue);
      padding: 16px 16px 12px;
      text-align: center;
    }

    .blindados-label {
      font-family: 'Oswald', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 4px;
    }

    .blindados-count {
      font-family: 'Oswald', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
      letter-spacing: 1px;
    }

    .blindados-tag {
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px;
    }

    /* TICKER */
    .countries-bar {
      background: #0e2568;
      padding: 8px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .countries-inner {
      display: inline-block;
      animation: ticker 22s linear infinite;
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
      letter-spacing: 1.5px;
      color: rgba(255, 255, 255, .7);
      text-transform: uppercase;
      padding-left: 100%;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* CROSS HEADER */
    .cross-header {
      background: linear-gradient(180deg, #F4F1EB 0%, #fff 100%);
      text-align: center;
      padding: 22px 20px 10px;
    }

    .cross-icon {
      font-size: 40px;
      color: var(--blue);
      filter: drop-shadow(0 3px 8px rgba(26, 58, 143, .22));
    }

    /* HEADLINE */
    .headline-wrap {
      padding: 5px 18px 2px;
      text-align: center;
    }

    .eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }

    .headline {
      font-family: 'Oswald', sans-serif;
      font-size: 28px;
      font-weight: 700;
      line-height: 1.1;
      color: var(--dark);
      text-transform: uppercase;
    }

    .headline .red {
      color: var(--red);
    }

    .headline .blue {
      color: var(--blue);
    }

    .sub {
      font-family: 'Source Serif 4', serif;
      font-size: 16px;
      color: #555;
      line-height: 1.65;
      margin-top: 12px;
      font-style: italic;
    }

    .divider-flag {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 8px 20px;
    }

    .divider-flag::before {
      content: '';
      flex: 1;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--red));
    }

    .divider-flag::after {
      content: '';
      flex: 1;
      height: 2px;
      background: linear-gradient(90deg, var(--red), transparent);
    }

    .divider-flag span {
      font-size: 18px;
      flex-shrink: 0;
    }

    /* VSL 9:16 */
    .vsl-outer {
      background: #000;
    }

    .vsl-container {
      width: 100%;
      aspect-ratio: 9/16;
      background: #000;
      position: relative;
      overflow: hidden;
    }

    .vsl-container>* {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .vsl-placeholder {
      background: linear-gradient(160deg, #0a1a3a 0%, #180a0a 60%, #0a0a0a 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .vsl-rays {
      position: absolute;
      inset: 0;
      background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(26, 58, 143, .08) 30deg, transparent 60deg, transparent 90deg, rgba(26, 58, 143, .08) 120deg, transparent 150deg, transparent 180deg, rgba(180, 20, 20, .06) 210deg, transparent 240deg, transparent 270deg, rgba(180, 20, 20, .06) 300deg, transparent 330deg);
      animation: spin-rays 20s linear infinite;
    }

    @keyframes spin-rays {
      to {
        transform: rotate(360deg)
      }
    }

    .vsl-bg-cross {
      position: absolute;
      font-size: 260px;
      color: rgba(255, 255, 255, .025);
      font-family: serif;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .vsl-glow {
      position: absolute;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(26, 58, 143, .16) 0%, transparent 70%);
      border-radius: 50%;
      animation: glow-pulse 3s infinite;
    }

    @keyframes glow-pulse {

      0%,
      100% {
        transform: scale(1);
        opacity: .5
      }

      50% {
        transform: scale(1.3);
        opacity: 1
      }
    }

    .play-btn {
      position: relative;
      z-index: 3;
      width: 74px;
      height: 74px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: ring-pulse 2s infinite;
    }

    @keyframes ring-pulse {

      0%,
      100% {
        box-shadow: 0 0 0 10px rgba(212, 43, 43, .18), 0 0 0 22px rgba(212, 43, 43, .07)
      }

      50% {
        box-shadow: 0 0 0 14px rgba(212, 43, 43, .28), 0 0 0 30px rgba(212, 43, 43, .1)
      }
    }

    .play-btn::after {
      content: '';
      width: 0;
      height: 0;
      border-left: 26px solid #fff;
      border-top: 16px solid transparent;
      border-bottom: 16px solid transparent;
      margin-left: 6px;
    }

    .vsl-caption {
      position: relative;
      z-index: 3;
      margin-top: 16px;
      color: rgba(255, 255, 255, .6);
      font-size: 11px;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      font-family: 'Oswald', sans-serif;
    }

    /* POST-PITCH */
    .post-pitch {
      display: none;
    }

    .post-pitch.visible {
      display: block;
      animation: rise .7s ease;
    }

    @keyframes rise {
      from {
        opacity: 0;
        transform: translateY(22px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* SECTION TITLES */
    .s-title {
      font-family: 'Oswald', sans-serif;
      font-size: 22px;
      font-weight: 700;
      text-align: center;
      color: var(--dark);
      text-transform: uppercase;
      padding: 28px 20px 6px;
      line-height: 1.2;
    }

    .s-title .red {
      color: var(--red);
    }

    .s-title .blue {
      color: var(--blue);
    }

    .s-title .green {
      color: var(--green);
    }

    .s-sub {
      text-align: center;
      font-family: 'Source Serif 4', serif;
      font-size: 13px;
      color: var(--mid-gray);
      padding: 0 24px 4px;
      font-style: italic;
    }

    /* COMMUNITY */
    .community-card {
      margin: 14px 16px 0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 6px 28px rgba(26, 58, 143, .14);
    }

    .community-hero {
      background: linear-gradient(135deg, var(--blue) 0%, #0e2568 100%);
      padding: 24px 20px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .community-hero::before {
      content: '🌍';
      position: absolute;
      font-size: 110px;
      right: -16px;
      bottom: -16px;
      opacity: .07;
      pointer-events: none;
    }

    .community-eyebrow {
      font-family: 'Oswald', sans-serif;
      font-size: 10px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 8px;
    }

    .community-headline {
      font-family: 'Oswald', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }

    .community-headline span {
      color: var(--gold-light);
    }

    .community-stats {
      display: flex;
      background: #0e2568;
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .c-stat {
      flex: 1;
      padding: 16px 8px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, .08);
    }

    .c-stat:last-child {
      border-right: none;
    }

    .c-stat-num {
      font-family: 'Oswald', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--gold-light);
    }

    .c-stat-label {
      font-size: 10px;
      color: rgba(255, 255, 255, .5);
      margin-top: 3px;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .community-body {
      background: #EEF3FF;
      padding: 16px 18px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .community-body-icon {
      font-size: 22px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .community-body p {
      font-size: 13px;
      color: #2a3a6a;
      line-height: 1.65;
    }

    .community-body p strong {
      color: var(--blue);
    }

    /* GUARANTEE */
    .guarantee-block {
      margin: 20px 16px 0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(26, 140, 58, .12);
    }

    .guarantee-header {
      background: var(--green);
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .guarantee-header-icon {
      font-size: 30px;
      flex-shrink: 0;
    }

    .guarantee-header-text {
      font-family: 'Oswald', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: .5px;
      line-height: 1.2;
    }

    .guarantee-header-text small {
      display: block;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 1px;
      opacity: .8;
      margin-top: 2px;
      text-transform: uppercase;
    }

    .guarantee-list {
      background: linear-gradient(180deg, #F0FFF4, #E8F9EE);
      padding: 16px 18px;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .g-item {
      display: flex;
      align-items: center;
      gap: 11px;
      background: #fff;
      border-radius: 7px;
      padding: 12px 14px;
      box-shadow: 0 1px 6px rgba(0, 0, 0, .05);
    }

    .g-item-icon {
      font-size: 22px;
      flex-shrink: 0;
    }

    .g-item-text {
      font-family: 'Oswald', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #1a3a1a;
      text-transform: uppercase;
      letter-spacing: .3px;
      line-height: 1.2;
    }

    /* TESTIMONIALS */
    .carousel-outer {
      margin-top: 8px;
      overflow: hidden;
      position: relative;
    }

    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 4px 0 14px;
    }

    .nav-arrow {
      width: 32px;
      height: 32px;
      background: #fff;
      border: 1px solid #e4e4e4;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--blue);
      outline: none;
      transition: background 0.3s;
      flex-shrink: 0;
    }

    .nav-arrow:hover {
      background: var(--light-gray);
    }

    .carousel-track {
      display: flex;
      gap: 12px;
      padding: 12px 16px;
      transition: transform .4s ease;
      will-change: transform;
    }

    .t-card {
      min-width: 85%;
      width: 320px;
      max-width: 340px;
      background: #fff;
      border: 1px solid #e4e4e4;
      border-top: 4px solid var(--blue);
      border-radius: 8px;
      padding: 18px 16px;
      flex-shrink: 0;
      box-shadow: 0 3px 14px rgba(0, 0, 0, .07);
    }

    .t-header {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 10px;
    }

    .t-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Oswald', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .t-name {
      font-weight: 700;
      font-size: 13px;
      color: var(--dark);
    }

    .t-loc {
      font-size: 11px;
      color: var(--mid-gray);
      margin-top: 2px;
    }

    .t-stars {
      color: var(--gold);
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 7px;
    }

    .t-text {
      font-size: 13px;
      color: #444;
      line-height: 1.7;
    }

    .t-text strong {
      color: var(--red);
    }

    .t-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: #EEF3FF;
      color: var(--blue);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 4px 9px;
      border-radius: 3px;
      margin-top: 10px;
    }

    .dots {
      display: flex;
      gap: 7px;
      justify-content: center;
    }

    .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: background .3s, transform .3s;
    }

    .dot.active {
      background: var(--blue);
      transform: scale(1.35);
    }

    /* CTA */
    .cta-section {
      margin: 20px 16px 0;
      background: var(--off-white);
      border: 2px solid #e0ddd5;
      border-radius: 8px;
      padding: 22px 16px;
      text-align: center;
    }

    .cta-from {
      font-size: 12px;
      color: #aaa;
      text-decoration: line-through;
      margin-bottom: 2px;
    }

    .cta-price {
      font-family: 'Oswald', sans-serif;
      font-size: 44px;
      font-weight: 700;
      color: var(--red);
      line-height: 1;
    }

    .cta-price small {
      font-size: 15px;
      color: #999;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
    }

    .cta-access {
      font-size: 11px;
      color: var(--green);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 5px 0 16px;
    }

    .cta-btn {
      display: block;
      width: 100%;
      background: linear-gradient(180deg, var(--green-light) 0%, var(--green) 100%);
      color: #fff;
      font-family: 'Oswald', sans-serif;
      font-size: 19px;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      padding: 21px 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      line-height: 1.25;
      animation: cta-pulse 2s infinite;
    }

    @keyframes cta-pulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(26, 140, 58, .28)
      }

      50% {
        box-shadow: 0 6px 38px rgba(26, 140, 58, .55)
      }
    }

    .cta-btn span {
      display: block;
      font-size: 11px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      text-transform: none;
      opacity: .82;
      margin-top: 3px;
    }

    .cta-meta {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 13px;
    }

    .cta-meta span {
      font-size: 11px;
      color: #999;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    /* FOOTER */
    .footer {
      margin-top: 30px;
      padding: 22px 16px;
      border-top: 1px solid var(--light-gray);
      text-align: center;
    }

    .footer p {
      font-size: 10px;
      color: #bbb;
      line-height: 1.7;
    }