﻿    /* =========================================================
       4. SECCIÓN VSL (VIDEO SALES LETTER)
    ========================================================= */
    .vsl-section {
      padding: 80px 0 60px;
      text-align: center;
      background: radial-gradient(circle at top, rgba(29,103,193,0.05), transparent 70%);
    }

    .vsl-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .vsl-header {
      margin-bottom: 30px;
    }

    .vsl-header .eyebrow {
      display: inline-block;
      margin-bottom: 15px;
      background: rgba(11, 61, 145, 0.08);
      color: var(--blue-900);
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .vsl-header h1 {
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      color: var(--blue-900);
      line-height: 1.1;
      letter-spacing: -0.03em;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .vsl-video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
      background: #000;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(11, 61, 145, 0.2);
      margin-bottom: 40px;
    }

    .video-placeholder {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(8,43,110,0.8), rgba(29,103,193,0.8));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: var(--white);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .video-placeholder:hover {
      transform: scale(1.02);
    }

    .play-btn {
      width: 80px;
      height: 80px;
      background: var(--blue-600);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
    }

    .video-placeholder:hover .play-btn {
      background: var(--blue-500);
      transform: scale(1.1);
    }

    .play-btn svg {
      width: 40px;
      height: 40px;
      margin-left: 5px;
    }

    .video-placeholder span {
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .vsl-content p {
      font-size: 1.15rem;
      line-height: 1.6;
      color: var(--gray-700);
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .vsl-actions {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .vsl-actions .btn,
    .vsl-actions .btn-outline {
      height: 52px;
      padding: 0 30px;
      font-size: 1.02rem;
      min-width: 190px;
    }

