
        /* Estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .logo span {
            color: #5BAD32;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #253252;
        }
        
        .auth-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .btn {
            padding: 0.5rem 1rem;
            border-radius: 0.25rem;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-outline {
            border: 1px solid #253252;
            background: transparent;
            color: #253252;
        }
        
        .btn-outline:hover {
            background-color: #53AD37;
            color: white;
        }
        
        .btn-primary {
            background-color: #5BAD32;
            color: white;
            border: 1px solid #253252;
        }
        
        .btn-primary:hover {
            background-color: #253252;
        }
        
        /* Hero Section */
        .hero {
            padding: 4rem 0;
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        
        .hero-content {
            flex: 1;
        }
        
        .hero-title {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        .hero-description {
            color: #666;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 0.5rem;
        }
        
        /* Features Section */
        .features {
            background-color: #f9fafb;
            padding: 4rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .badge {
            display: inline-block;
            background-color: #53AD37;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            margin-bottom: 0.5rem;
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .section-description {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 0.5rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .feature-icon {
            background-color: #53AD37;
            color: white;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .feature-title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        
        .feature-description {
            color: #666;
        }
        
        /* Newsletter Section */
        .newsletter {
            padding: 4rem 0;
            text-align: center;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 2rem auto 0;
        }
        
        .form-group {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }
        
        .form-input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 0.25rem;
            font-size: 0.875rem;
        }
        
        .form-disclaimer {
            font-size: 0.75rem;
            color: #666;
        }
        
        .form-disclaimer a {
            color: #253252;
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background-color: white;
            border-top: 1px solid #eee;
            padding: 2rem 0;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-copyright {
            font-size: 0.875rem;
            color: #666;
        }
        
        .footer-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-links a {
            font-size: 0.875rem;
            color: #666;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #253252;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav ul {
                margin-top: 1rem;
            }
            
            .hero-container {
                flex-direction: column;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }
    