.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s;
    justify-content: center;
    align-items: center;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .modal-content {
    position: relative;
    margin: 9% auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    width: 90%; /* Puedes ajustar este valor según lo necesites */
    max-width: 500px; /* Ancho máximo del modal */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .close {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
  }

  .form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }

  .submit-button {
    background-color: #f97316;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
  }

  .submit-button:hover {
    /* Combina sombra y escala */
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

  .cta-buttonn {
    display: inline-block;
    background-color: #f97316;
    color: white;
    cursor: pointer;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    font-size: 25px;
    margin: 30px auto;
    transition: background-color 0.3s;
  }

  .cta-buttonn:hover {
    background-color: #e65000;
  }
  .cta-button {
    display: inline-block;
    background-color: #f59e0b;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    opacity: 0.8;
    cursor: not-allowed;
  }

  .cta-button.active {
    opacity: 1;
    cursor: pointer;
    background-color: #f59e0b;
  }

  .timer {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.9);
  }

  :root {
    --primary: #1a365d;
    --secondary: #2563eb;
    --accent: #f59e0b;
    --text: #1f2937;
    --light: #ffffff;
    --gray: #f3f4f6;
    --dark-gray: #4b5563;
  }

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

  body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
  }

  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .top-bar {
    background: linear-gradient(90deg, var(--accent) 0%, #f97316 100%);
    color: var(--primary);
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
  }

  .hero {
    background: linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--secondary) 100%
    );
    color: var(--light);
    padding: 2rem 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -1px;
  }

  .video-container {
    max-width: 800px;
    margin: 3rem auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: #000;
    position: relative;
  }

  video {
    width: 100%;
    display: block;
  }

  .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .play-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
  }

  .play-button {
    width: 90px;
    height: 90px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .play-overlay:hover .play-button {
    transform: scale(1.1);
  }

  .benefits {
    padding: 6rem 0;
    background: var(--gray);
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }

  .benefit-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .benefit-icon {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
  }

  .benefit-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }

  .pricing-section {
    padding: 6rem 0;
    background: linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--secondary) 100%
    );
    color: var(--light);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
  }

  .pricing-card {
    background: var(--light);
    padding: 3rem 2rem;
    border-radius: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
  }

  .pricing-card.featured {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }

  .pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
  }

  .pricing-card .period {
    color: var(--dark-gray);
    font-size: 1.1rem;
  }

  .pricing-card ul {
    margin: 2rem 0;
    list-style: none;
  }

  .pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .pricing-card ul li:last-child {
    border-bottom: none;
  }

  .select-plan {
    background: var(--secondary);
    color: var(--light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
  }

  .select-plan:hover {
    background: var(--primary);
    transform: translateY(-2px);
  }

  .select-plan.selected {
    background: var(--accent);
    cursor: default;
  }

  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--light);
    border-radius: 1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .form-group input:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

  .cta-button {
    background: var(--accent);
    color: var(--primary);
    padding: 1.2rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  footer {
    background: var(--primary);
    color: var(--light);
    padding: 2rem 0;
    text-align: center;
  }

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }

    .pricing-card.featured {
      transform: none;
    }

    .video-container {
      margin: 2rem 1rem;
    }

    .benefit-card {
      padding: 2rem;
    }
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* Modal Styling */
  .modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
  }

  .modal-header {
    border-bottom: none;
    padding: 2rem 2rem 1rem;
  }

  .modal-body {
    padding: 1rem 2rem;
  }

  .modal-footer {
    border-top: none;
    padding: 1rem 2rem 2rem;
  }

  .modal-title {
    font-weight: 600;
    color: var(--primary-color);
  }
  .logo {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
  }

  .contact-info {
    color: var(--light);
    text-align: right;
  }

  .contact-info p {
    margin: 0;
    font-size: 0.9rem;
  }

  .contact-phone {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent);
  }

  /* Progress Bar */
  .progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .progress {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.3s ease;
  }

  /* Main Content */
  .info-section {
    padding: 4rem 0;
  }

  .info-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
  }

  /* Info Blocks */
  .info-block {
    background: var(--light);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .info-block h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
  }

  .info-block ul {
    list-style: none;
  }

  .info-block ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .info-block ul li::before {
    content: "→";
    color: var(--accent);
    position: absolute;
    left: 0;
  }

  /* Testimonios */
  .testimonial-card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
  }

  .testimonial-info h4 {
    margin: 0;
    color: var(--primary);
  }

  .testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-gray);
  }

  .testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
  }

  /* Formulario Sticky */
  .sticky-form {
    position: sticky;
    top: 2rem;
    background: var(--light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .timer-box {
    background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
    color: var(--primary);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .timer-box p {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin: 2rem 0;
    padding: 2rem;
  }

  .trust-item {
    text-align: center;
  }

  .trust-image {
    max-width: 140px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }

  .trust-image:hover {
    filter: grayscale(0);
    opacity: 1;
  }

  .info-block h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a365d;
    font-size: 1.875rem;
    font-weight: bold;
  }
  #countdown {
    font-size: 1.5rem;
    font-weight: 800;
  }

  /* Multi-step Form */
  .step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
  }

  .step-indicator::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray);
    z-index: 1;
  }

  .step {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .step-number {
    width: 30px;
    height: 30px;
    background: var(--light);
    border: 2px solid var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .step.active .step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--light);
  }

  .form-step {
    display: none;
  }

  .form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group input[type="email"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .form-group .focused:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
  }

  .plan-option {
    border: 2px solid var(--gray);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .plan-option:hover {
    border-color: var(--accent);
    background: var(--gray);
  }

  .plan-option input[type="radio"] {
    margin-right: 0.5rem;
  }

  .cta-button {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .cta-button-end {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .cta-button-end:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .info-grid {
      grid-template-columns: 1fr;
    }

    .sticky-form {
      position: static;
      margin-top: 2rem;
    }
  }

  @media (max-width: 768px) {
    .info-section {
      padding: 2rem 0;
    }

    .info-block {
      padding: 1.5rem;
    }

    .testimonial-card {
      padding: 1.5rem;
    }

    .nav-container {
      flex-direction: column;
      text-align: center;
    }

    .contact-info {
      text-align: center;
      margin-top: 1rem;
    }
  }

  .matricula-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background-color: #f6ad55;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.05em;
    border-radius: 0.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.2s;
  }

  .matricula-button:hover {
    background-color: #ed8936;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }

  @media (min-width: 768px) {
    .matricula-button {
      width: auto;
    }
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* Modal Styling */
  .modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
  }

  .modal-header {
    border-bottom: none;
    padding: 2rem 2rem 1rem;
  }

  .modal-body {
    padding: 1rem 2rem;
  }

  .modal-footer {
    border-top: none;
    padding: 1rem 2rem 2rem;
  }

  .modal-title {
    font-weight: 600;
    color: var(--primary-color);
  }
  .logo {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
  }

  .contact-info {
    color: var(--light);
    text-align: right;
  }

  .contact-info p {
    margin: 0;
    font-size: 0.9rem;
  }

  .contact-phone {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent);
  }

  /* Progress Bar */
  .progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .progress {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.3s ease;
  }

  /* Main Content */
  .info-section {
    padding: 4rem 0;
  }

  .info-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
  }

  /* Info Blocks */
  .info-block {
    background: var(--light);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .info-block h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
  }

  .info-block ul {
    list-style: none;
  }

  .info-block ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .info-block ul li::before {
    content: "→";
    color: var(--accent);
    position: absolute;
    left: 0;
  }

  /* Testimonios */
  .testimonial-card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }

  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
  }

  .testimonial-info h4 {
    margin: 0;
    color: var(--primary);
  }

  .testimonial-content {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-gray);
  }

  .testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
  }

  /* Formulario Sticky */
  .sticky-form {
    position: sticky;
    top: 2rem;
    background: var(--light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .timer-box {
    background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
    color: var(--primary);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .timer-box p {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin: 2rem 0;
    padding: 2rem;
  }

  .trust-item {
    text-align: center;
  }

  .trust-image {
    max-width: 140px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
  }

  .trust-image:hover {
    filter: grayscale(0);
    opacity: 1;
  }

  .info-block h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a365d;
    font-size: 1.875rem;
    font-weight: bold;
  }
  #countdown {
    font-size: 1.5rem;
    font-weight: 800;
  }

  /* Multi-step Form */
  .step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
  }

  .step-indicator::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gray);
    z-index: 1;
  }

  .step {
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .step-number {
    width: 30px;
    height: 30px;
    background: var(--light);
    border: 2px solid var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .step.active .step-number {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--light);
  }

  .form-step {
    display: none;
  }

  .form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }

  