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

        body {
         background-image:
    linear-gradient(transparent calc(100% - 1px), #218a8b 1px),
    linear-gradient(90deg, transparent calc(100% - 1px), #218a8b 1px);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .hero-section {
            background: #ffffff42;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            margin-top: 40%;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            backdrop-filter: blur(8px);
        }

        @media (max-width: 768px) {
            .hero-section {
                margin-top: 70%;
            }
        }
        
        .hero-section h1 {
            font-size: 3em;
            background: linear-gradient(135deg, #218a8b, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .status-badge {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #218a8b);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: bold;
            margin: 20px 0;
            font-size: 1.2em;
           
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .description {
            font-size: 1.3em;
            line-height: 1.6;
            color: #555;
            margin: 25px 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .timeline {
            background: #ffffff42;
            border-radius: 20px;
            padding: 30px;
            margin: 30px 0;
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .timeline h2 {
            color: #218a8b;
            font-size: 2.2em;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .timeline-item {
            display: flex;
            align-items: center;
            margin: 20px 0;
            padding: 20px;
            background: #f8f9ff3e;
            border-radius: 15px;
            border-left: 5px solid #218a8b;
        }
        
        .timeline-date {
            background: #218a8b;
            color: white;
            padding: 10px 15px;
            border-radius: 20px;
            font-weight: bold;
            margin-right: 20px;
            min-width: 150px;
            text-align: center;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .feature-card {
            background:#ffffff42;
            border-radius: 20px;
            padding: 30px 25px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            backdrop-filter: blur(8px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #218a8b, #ffffff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
        }
        
        .feature-card h3 {
            color: #218a8b;
            font-size: 1.5em;
            margin-bottom: 15px;
        }
        
        .examples-section {
            background:#ffffff42;
            border-radius: 20px;
            padding: 30px;
            margin: 30px 0;
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .examples-section h2 {
            color: #218a8b;
            font-size: 2.2em;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .voice-commands {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }
        
        .command-card {
            background:#ffffff42;
            border-radius: 15px;
            padding: 20px;
            border-left: 5px solid #218a8b;
        }
        
        .command-tsotsil {
            font-size: 1.3em;
            font-weight: bold;
            color: #218a8b;
            margin-bottom: 10px;
        }
        
        .command-spanish {
            color: #666;
            font-style: italic;
        }
        
        .media-section {
            background: #ffffff42;
            border-radius: 20px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .media-section h2 {
            color: #218a8b;
            font-size: 2.2em;
            margin-bottom: 25px;
        }
        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin: 25px 0;
        }
        
        .video-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .video-card iframe {
            width: 100%;
            height: 200px;
            border: none;
        }
        
        .how-to-section {
            background: #ffffff42;
            border-radius: 20px;
            padding: 30px;
            margin: 30px 0;
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .how-to-section h2 {
            color: #218a8b;
            font-size: 2.2em;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .steps-list {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .steps-list li {
            background: #ffffff42;
            margin: 15px 0;
            padding: 20px;
            border-radius: 15px;
            border-left: 5px solid #218a8b;
            font-size: 1.1em;
            line-height: 1.6;
        }
        
        
        
        .footer h3 {
            color: #583844;
            margin-bottom: 15px;
            font-size: 1.5em;
        }
        
        .footer p {
            color: #666;
            font-size: 1.1em;
            line-height: 1.6;
        }
        
        .highlight {
            color: #b10202;
            font-weight: bold;
        }
          .navbar-mainbg {
    background: linear-gradient(45deg, #000000 20%, #218a8b 50%, #ffffff 100%);
    padding: 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    animation: gradient 5s ease infinite;
    background-size: 200% 200%;
    /* Aumentamos el tamaño del fondo para que se pueda animar */
    animation: moverColores 4s infinite alternate ease-in-out;
  
  }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2em;
            }
            
            .timeline-item {
                flex-direction: column;
                text-align: center;
            }
            
            .timeline-date {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .description {
                font-size: 1.1em;
            }
        }
