    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent; /* Remove blue highlight on iOS tap */
    }

    :root {
      --background: #ffffff;
      --foreground: #262626;
      --primary: #2d2a6e;
      --primary-light: rgba(45, 42, 110, 0.1);
      --muted: #666666;
      --accent: #d62828;
      --border: #e5e7eb;
      --alert-blue-bg: #f0fdff;
      --alert-blue-border: #2563eb;
    }

    html {
        -webkit-text-size-adjust: 100%; /* Prevent font scaling on iPhone rotation */
    }

    body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Header Compacto */
    .header {
      background: linear-gradient(140deg, #2d2a6e, #1a1848);
      padding: 10px 0; /* Reduzido de 12px */
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
    }

    .header-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 16px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-box {
      background: white;
      padding: 4px 8px;
      border-radius: 4px;
    }

    .logo-box span {
      color: var(--primary);
      font-weight: 700;
      font-size: 18px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-text-small {
      font-size: 8px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .logo-text-main {
      font-size: 12px;
      font-weight: 600;
      color: white;
    }

    .nav {
      display: none;
      gap: 24px;
    }

    .nav a {
      color: rgba(255,255,255,0.9);
      font-size: 14px;
      transition: color 0.2s;
    }

    .nav a:hover {
      color: white;
    }

    .mobile-menu-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 1001;
      padding: 0;
    }

    .mobile-menu-btn svg {
      width: 28px;
      height: 28px;
      stroke: white;
      pointer-events: none;
    }

    /* Mobile Menu */
    .mobile-nav {
      display: none;
      position: absolute;
      top: 100%;
      right: 16px;
      width: min(320px, calc(100vw - 32px));
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 12px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.18);
      padding: 8px;
      z-index: 999;
      transform-origin: top right;
    }

    .mobile-nav a {
      display: block;
      padding: 14px 16px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--foreground);
    }

    .mobile-nav a:hover, .mobile-nav a:active {
      background: #f3f4f6;
    }

    .mobile-nav.open {
      display: block;
      animation: menuFadeIn 0.2s ease-out;
    }

    @keyframes menuFadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .menu-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.25);
      z-index: 998;
      width: 100vw;
      height: 100vh;
    }

    .menu-backdrop.open {
      display: block;
    }

    /* Main Content - Compactado para Mobile */
    .main-section {
      padding: 16px 16px; /* Reduzido de 32px para salvar espaÃ§o */
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .content-card {
      background: white;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    /* Headlines - Ajuste Fino de EspaÃ§amento */
    h1 {
      font-size: 22px; /* Reduzido levemente de 24px */
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 12px; /* Reduzido de 16px */
    }

    h1 .highlight {
      color: var(--accent);
    }

    h2 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .subheadline {
      font-size: 15px; /* Leve reduÃ§Ã£o */
      color: var(--muted);
      margin-bottom: 16px; /* Reduzido de 24px para puxar a imagem pra cima */
      line-height: 1.5;
    }

    p {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 16px;
      line-height: 1.7;
    }

    p strong {
      color: var(--foreground);
    }

    .text-bold {
      font-weight: 600;
      color: var(--foreground);
    }

    /* Hero Image */
    .hero-image-container {
      position: relative;
      display: block;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      margin-bottom: 16px; /* Reduzido de 24px para colar no botÃ£o */
      isolation: isolate;
      transform: translateZ(0);
      width: 100%;
    }

    .hero-image-container img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }

    .play-button {
      width: 64px;
      height: 64px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      transition: transform 0.3s;
      flex-shrink: 0;
    }

    .play-button:hover {
      transform: scale(1.1);
    }

    .play-button svg {
      width: 28px;
      height: 28px;
      fill: white;
      margin-left: 4px;
    }

    /* CTA Button */
    .cta-container {
      text-align: center;
      margin-bottom: 32px; /* Reduzido de 40px */
      position: relative;
      z-index: 5;
    }

    .btn-cta {
      display: inline-block;
      background: var(--accent);
      color: white;
      padding: 16px 24px;
      font-size: 15px;
      font-weight: 700;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(214, 40, 40, 0.35);
      transition: all 0.3s;
      text-align: center;
      width: 100%;
      max-width: 400px;
      line-height: 1.4;
    }

    .btn-cta:active {
        transform: scale(0.98);
    }

    /* Side by Side Layout */
    .side-by-side {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-bottom: 32px;
    }

    .side-by-side .image-col {
      width: 100%;
    }

    .side-by-side .image-col img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      object-fit: cover;
    }

    .side-by-side .text-col {
      flex: 1;
    }

    #discovery {
      align-items: flex-end;
    }

    #discovery .image-col img {
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }

    #discovery .text-col {
      padding-bottom: 28px;
    }

    #discovery .text-col p {
      margin-bottom: 24px;
    }

    #discovery .text-col p:last-child {
      margin-bottom: 0;
    }

    #problem .image-col {
      order: 2;
    }

    #problem .text-col {
      order: 1;
    }

    #problem .image-col img {
      height: 100%;
      min-height: 420px;
      object-fit: cover;
    }

    @media (min-width: 768px) {
      #problem .image-col {
        width: 46%;
      }

      #discovery .image-col {
        width: 42%;
      }
    }

    .image-caption {
      font-size: 12px;
      color: var(--muted);
      text-align: center;
      font-style: italic;
      margin-top: 8px;
    }

    /* Alert Boxes */
    .alert-box-blue {
      background: var(--alert-blue-bg);
      border: 2px solid var(--alert-blue-border);
      border-radius: 8px;
      padding: 16px;
      margin-bottom: 24px;
    }

    .alert-box-blue p {
      margin-bottom: 0;
    }

    /* Benefits List */
    .benefits-list {
      list-style: none;
      margin-bottom: 32px;
    }

    .benefits-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 16px;
      color: var(--muted);
    }

    .check-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--accent);
      margin-top: 4px;
    }

    /* Quote Icon */
    .quote-container {
      text-align: center;
      margin-bottom: 16px;
    }

    .quote-icon {
      width: 40px;
      height: 40px;
      color: var(--primary);
    }

    /* Testimonials */
    .testimonials-title {
      text-align: center;
      margin-bottom: 24px;
    }

    .testimonial-card {
      background: white;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border: 1px solid #f3f4f6;
      margin-bottom: 24px;
    }

    .testimonial-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center 22%;
      flex-shrink: 0;
      border: 2px solid #eef2ff;
    }

    .testimonial-content {
      flex: 1;
    }

    .stars {
      display: flex;
      gap: 4px;
      margin-bottom: 8px;
    }

    .star {
      width: 16px;
      height: 16px;
      fill: #facc15;
    }

    .testimonial-text {
      font-style: italic;
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 12px;
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 14px;
      color: var(--foreground);
    }

    .testimonial-location {
      font-size: 12px;
      color: var(--muted);
    }

    /* FAQ Section */
    .faq-title {
      text-align: center;
      margin-bottom: 24px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 8px;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: #f8fafc;
      padding: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-align: left;
      border: none;
      cursor: pointer;
      font-family: inherit;
      font-size: 16px;
      font-weight: 500;
      color: var(--foreground);
    }

    .faq-question:hover {
      background: #f1f5f9;
    }

    .faq-chevron {
      width: 20px;
      height: 20px;
      color: var(--muted);
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-answer {
      display: none;
      padding: 16px;
      background: white;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-answer p {
      margin-bottom: 0;
      font-size: 14px;
    }

    /* Urgency Section */
    .urgency-section {
      background: #e8e7f0;
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      margin-bottom: 32px;
    }

    .urgency-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 16px;
    }

    .urgency-section p {
      text-align: center;
    }

    .urgency-section .pointing {
      margin-top: 8px;
      margin-bottom: 24px;
    }

    .urgency-section .btn-cta {
      margin-bottom: 16px;
    }

    .urgency-footer {
      font-size: 14px;
      font-style: italic;
      color: var(--muted);
      margin-bottom: 0 !important;
    }

    /* Final CTA Section */
    .final-cta {
      background: var(--primary-light);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      margin-top: 32px;
    }

    .final-cta h2 {
      margin-bottom: 16px;
    }

    .final-cta p {
      margin-bottom: 16px;
    }

    .final-cta .btn-cta {
      margin-top: 8px;
    }

    .final-cta .closing-text {
      font-size: 14px;
      font-style: italic;
      color: var(--muted);
      margin-top: 16px;
      margin-bottom: 0;
    }

    /* Footer */
    .footer {
      background: #111827;
      color: #9ca3af;
      padding: 32px 16px;
    }

    .footer-container {
      max-width: 768px;
      margin: 0 auto;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 24px;
    }

    .footer-links a {
      font-size: 14px;
      color: #9ca3af;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-disclaimer {
      text-align: center;
      font-size: 12px;
      color: #6b7280;
    }

    .footer-disclaimer p {
      margin-bottom: 8px;
      color: #6b7280;
      font-size: 12px;
    }

    /* Responsive Desktop */
    @media (min-width: 768px) {
      .header {
        padding: 20px 0;
      }

      .logo-box span {
        font-size: 20px;
      }

      .logo-text-small {
        font-size: 10px;
      }

      .logo-text-main {
        font-size: 14px;
      }

      .main-section {
        padding: 48px 20px;
      }

      .content-card {
        padding: 32px;
      }

      h1 {
        font-size: 37px;
        margin-bottom: 16px; /* Restaura espaÃ§amento maior */
      }

      h2 {
        font-size: 20px;
      }

      .subheadline {
        font-size: 18px;
        margin-bottom: 24px; /* Restaura espaÃ§amento maior */
      }

      .hero-image-container {
        margin-bottom: 24px; /* Restaura espaÃ§amento maior */
      }

      .play-button {
        width: 80px;
        height: 80px;
      }

      .play-button svg {
        width: 36px;
        height: 36px;
      }

      .btn-cta {
        padding: 16px 32px;
        font-size: 16px;
        width: auto; /* Reset full width for desktop */
      }

      .side-by-side {
        flex-direction: row;
        gap: 32px;
        align-items: stretch;
      }

      .side-by-side .image-col {
        width: 40%;
        flex-shrink: 0;
      }

      .side-by-side.image-half .image-col {
        width: 50%;
      }

      .testimonial-avatar {
        width: 64px;
        height: 64px;
      }

      .testimonial-text {
        font-size: 16px;
      }
    }

    @media (min-width: 1024px) {
      .nav {
        display: flex;
      }

      .mobile-menu-btn {
        display: none;
      }
      
      .mobile-nav { display: none !important; }
      .menu-backdrop { display: none !important; }
    }
  
