        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: #fff;
            border-bottom: 1px solid #e8e8e8;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #00c4cc;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        
        .nav-menu a:hover {
            color: #00c4cc;
        }

        .cta-header {
            background: #00c4cc;
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-header:hover {
            background: #00a8b0;
            transform: translateY(-2px);
        }

        /* Hero general */
        .hero {
          padding: 60px 0;
          background: #f9f9f9;
        }
        
        .hero-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          align-items: center;
          gap: 40px;
        }
        
        /* Texto */
        .hero-content h1 {
          font-size: 2.8rem;
          line-height: 1.2;
          margin-bottom: 20px;
        }
        
        .hero-content p {
          font-size: 1.1rem;
          margin-bottom: 20px;
          color: #555;
        }
        
        .hero-cta {
          display: inline-block;
          background: #25d366;
          color: #fff;
          padding: 14px 26px;
          border-radius: 8px;
          text-decoration: none;
          font-weight: bold;
          transition: background 0.3s ease;
        }
        
        .hero-cta:hover {
          background: #22c35e;
        }
        
        .hero-subtitle {
          font-size: 0.95rem;
          color: #777;
          margin-top: 12px;
        }
        
        /* Imagen */
        .hero-image {
          text-align: right;        /* Mueve la imagen hacia la derecha (puedes usar left, center, etc.) */
          position: relative;       /* Permite usar top/left si quieres moverla */
        }
        
        .hero-image img {
          max-width: 130%;          /* Puedes permitirle crecer más del 100% */
          height: auto;
          opacity: 0.75;            /* Control de opacidad (1 = 100%, 0.5 = 50%) */
          transition: all 0.3s ease; /* Transición suave si aplicas hover */
          margin-right: -40px;      /* Empujar hacia la derecha */
          margin-left: 150px;        /* Empujar hacia la izquierda */
        }
        
        /* Opcional: efecto hover */
        .hero-image img:hover {
          opacity: 1;
          transform: scale(1.05);   /* Efecto zoom */
        }
        
        /* Texto rotativo */
        .rotating-text {
          display: inline-block;
          position: relative;
          height: 40px;
          overflow: hidden;
          vertical-align: bottom;
        }
        
        .rotating-text span {
          display: block;
          height: 40px;
          line-height: 40px;
          animation: rotateWords 9s linear infinite 0s;
        }
        
        .rotating-text span:nth-child(2) {
          animation-delay: 3s;
        }
        .rotating-text span:nth-child(3) {
          animation-delay: 6s;
        }
        
        @keyframes rotateWords {
          0% { transform: translateY(100%); opacity: 0; }
          10% { transform: translateY(0); opacity: 1; }
          30% { transform: translateY(0); opacity: 1; }
          40% { transform: translateY(-100%); opacity: 0; }
          100% { transform: translateY(-100%); opacity: 0; }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
          .hero-grid {
            grid-template-columns: 1fr;
            text-align: center;
          }
          .hero-image {
            margin-top: 30px;
          }
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: #00c4cc;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .benefit-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333;
        }

        .benefit-card p {
            color: #666;
            line-height: 1.6;
        }

        /* How it works */
        .how-it-works {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 20px;
            color: #333;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 50px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: #00c4cc;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .step h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }

        .step p {
            color: #666;
            font-size: 14px;
        }

        /* Plans Section */
        .plans {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .plan-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: relative;
            transition: transform 0.3s ease;
        }

        .plan-card:hover {
            transform: translateY(-5px);
        }

        .plan-card.featured {
            border: 3px solid #00c4cc;
            transform: scale(1.05);
        }

        .plan-badge {
            background: #00c4cc;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .plan-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .plan-price {
            font-size: 48px;
            font-weight: bold;
            color: #00c4cc;
            margin-bottom: 5px;
        }

        .plan-price .currency {
            font-size: 20px;
            vertical-align: top;
        }

        .plan-price .period {
            font-size: 14px;
            color: #666;
            font-weight: normal;
        }

        .plan-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .plan-features li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
            padding-left: 25px;
        }

        .plan-features li::before {
            content: "âœ“";
            color: #00c4cc;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .plan-button {
            background: #00c4cc;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .plan-button:hover {
            background: #00a8b0;
        }
        
        /*Anuales*/
        .switch {
          position: relative;
          display: inline-block;
          width: 50px;
          height: 28px;
          margin: 0 10px;
        }
        .switch input {display: none;}
        .slider {
          position: absolute;
          cursor: pointer;
          top: 0; left: 0; right: 0; bottom: 0;
          background-color: #ccc;
          transition: .4s;
          border-radius: 28px;
        }
        .slider:before {
          position: absolute;
          content: "";
          height: 22px; width: 22px;
          left: 3px; bottom: 3px;
          background-color: white;
          transition: .4s;
          border-radius: 50%;
        }
        input:checked + .slider {
          background-color: #00c4cc;
        }
        input:checked + .slider:before {
          transform: translateX(22px);
        }
        .toggle-label {
          font-weight: 600;
          color: #666;
          transition: color 0.3s;
        }
        .toggle-label.active {
          color: #00c4cc;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: #333;
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-info h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .contact-info p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .contact-features {
            list-style: none;
        }

        .contact-features li {
            padding: 10px 0;
            position: relative;
            padding-left: 30px;
        }

        .contact-features li::before {
            content: "ðŸ“ž";
            position: absolute;
            left: 0;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 6px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 16px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .submit-btn {
            background: #ff6b35;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #e55a2b;
        }

        /* Footer */
        footer {
            background: #222;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #00c4cc;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            padding: 5px 0;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #00c4cc;
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 30px;
            text-align: center;
            color: #999;
        }

        /* Mobile Styles */
        .mobile-menu {
            display: none;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu {
                display: block;
                background: none;
                border: none;
                font-size: 24px;
                color: #030202;
                cursor: pointer;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .plans-grid {
                grid-template-columns: 1fr;
            }

            .plan-card.featured {
                transform: none;
            }
        }
        
        
        * {margin:0;padding:0;box-sizing:border-box;}

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #fff;
    }

    .container {max-width: 1200px; margin: 0 auto; padding: 0 20px;}

    /* Nuevo Header */
    header {
      background: #fff;
      border-bottom: 1px solid #e8e8e8;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
    }
    .brand {display:flex;align-items:center;gap:10px;text-decoration:none;color:#00c4cc;font-weight:700;}
    .brand .logo-box {
      width:36px;height:36px;border-radius:8px;
      background: linear-gradient(135deg,#00c4cc,#00a8b0);
      display:flex;align-items:center;justify-content:center;
      font-size:14px;font-weight:700;color:#fff;
    }
    nav ul {list-style:none;display:flex;gap:22px;align-items:center;}
    nav a {text-decoration:none;color:#666;font-weight:500;transition:color .3s;}
    nav a:hover {color:#00a8b0;}
    .nav-btns a {
      padding:8px 14px;
      border-radius:6px;
      text-decoration:none;
      font-weight:600;
      margin-left:10px;
    }
    .btn-enter {color:#00a8b0;}
    .btn-start {background:#00c4cc;color:#fff;}
    .btn-start:hover {background:#00a8b0;}

    .mobile-menu {display:none;}

    @media (max-width:768px) {
      nav ul {display:none;}
      .mobile-menu {display:block;background:none;border:none;font-size:26px;cursor:pointer;color:#666;}
    }

    /* Mantengo tus estilos existentes (hero, benefits, plans, contact, footer) */
    .hero {
      background: linear-gradient(106.24deg, #00C8D5 7.27%, #00D5BD 58.27%);
      color: white;
      padding: 70px 0;
      text-align: left;
    }
    .hero-content h1 {font-size:48px;font-weight:700;margin-bottom:20px;line-height:1.2;}
    .hero-content p {font-size:20px;margin-bottom:30px;color: #030202;max-width:600px;margin-left:auto;margin-right:auto;opacity:.9;}
    .hero-cta {
      background:#ff6b35;color:white;padding:18px 40px;border-radius:8px;text-decoration:none;font-size:18px;
      font-weight:600;display:inline-block;transition:all .3s;box-shadow:0 4px 15px rgba(255,107,53,0.3);
    }
    .hero-cta:hover {background:#e55a2b;transform:translateY(-3px);box-shadow:0 8px 25px rgba(255,107,53,0.4);}
    .hero-subtitle {font-size:14px;margin-top:15px;opacity:.8;}

    /* --- Tus secciones originales siguen aqui sin cambios --- */
    
    