        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        .logo {
          width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
        }
        .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* Versi贸n responsive del logo */
@media (max-width: 768px) {
    .logo {
        width: 150px;
        height: 37.5px;
    }
    
    .logo img {
        width: 150px;
        height: 37.5px;
    }
}

/* Hover effect opcional */
.logo img:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

        /* Header Styles */
        .header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ff5733;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #ff5733;
        }

        .cta-button {
            background: #ff5733;
            color: white;
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #df4c2d;
            transform: translateY(-2px);
        }

        /* Floating Form Modal */
        .form-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            backdrop-filter: blur(5px);
        }

        .form-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-section {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 20px 25px rgba(223, 76, 45, 0.3);
            border: 2px solid #fff5f3;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideInUp 0.3s ease;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-align: center;
            color: #1a1a1a;
        }

        .close-form {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-form:hover {
            background: #f3f4f6;
            color: #ff5733;
        }

        /* Hero CTA Buttons */
        .hero-ctas {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .hero-cta-primary {
            background: #ff5733;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .hero-cta-primary:hover {
            background: #df4c2d;
            transform: translateY(-2px);
        }

        .hero-cta-secondary {
            background: transparent;
            color: #ff5733;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid #ff5733;
            cursor: pointer;
        }

        .hero-cta-secondary:hover {
            background: #ff5733;
            color: white;
            transform: translateY(-2px);
        }

        /* Main Content */
        main {
            margin-top: 80px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero {
            padding: 4rem 0;
            background: linear-gradient(135deg, #fff5f3 0%, #ffe8e3 100%);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: #1a1a1a;
        }

        .hero-text h1 .highlight {
            color: #ff5733;
        }

        .hero-text p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #666;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
            padding: 1rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 2px solid #fff5f3;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #ff5733;
        }

        .stat-label {
            font-size: 0.875rem;
            color: #666;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #374151;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #f3f4f6;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff5733;
        }

        .submit-btn {
            width: 100%;
            background: #ff5733;
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #df4c2d;
            transform: translateY(-2px);
        }

        /* Benefits Section */
        .benefits {
            padding: 4rem 0;
            background: #fff5f3;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #1a1a1a;
        }

        .section-title .highlight {
            color: #ff5733;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(223, 76, 45, 0.1);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .benefit-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }

        /* Testimonials */
        .testimonials {
            padding: 4rem 0;
            background: #ffffff;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(223, 76, 45, 0.1);
            border: 2px solid #fff5f3;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            color: #666;
        }

        .testimonial-author {
            font-weight: 600;
            color: #ff5733;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #ff5733 0%, #df4c2d 100%);
            padding: 4rem 0;
            text-align: center;
            color: white;
        }

        .hero-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-section .cta-button {
            background: white;
            color: #ff5733;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-section .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 0 2rem;
        }

        .footer-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .footer h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #ff5733;
        }

        .footer p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: #ccc;
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
            font-size: 0.9rem;
        }

        .copyright strong {
            color: #ff5733;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .form-section {
                width: 95%;
                padding: 1.5rem;
            }

            .pricing-section .container > div {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .pricing-card {
                position: relative !important;
                top: auto !important;
            }

            .tab-nav {
                flex-wrap: wrap;
            }

            .tab-btn {
                font-size: 0.9rem !important;
                padding: 0.5rem !important;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* Estilos adicionales para el modal y formulario */
        .form-modal { 
            display: none; 
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            background: rgba(0,0,0,0.8); 
            z-index: 9999; 
            align-items: center; 
            justify-content: center; 
        }
        .form-modal.active { display: flex; }
        .form-section { 
            background: white; 
            padding: 2rem; 
            border-radius: 15px; 
            max-width: 500px; 
            width: 90%; 
            max-height: 90vh; 
            overflow-y: auto; 
            position: relative; 
        }
        .close-form { 
            position: absolute; 
            top: 15px; 
            right: 20px; 
            background: none; 
            border: none; 
            font-size: 30px; 
            cursor: pointer; 
            color: #666; 
        }
        .form-group { margin-bottom: 1.5rem; }
        .form-group label { 
            display: block; 
            margin-bottom: 0.5rem; 
            font-weight: 600; 
            color: #333; 
        }
        .form-group input, .form-group select, .form-group textarea { 
            width: 100%; 
            padding: 12px; 
            border: 2px solid #e1e5e9; 
            border-radius: 8px; 
            font-size: 16px; 
            transition: border-color 0.3s; 
            box-sizing: border-box;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
            outline: none; 
            border-color: #ff5733; 
        }
        .submit-btn { 
            width: 100%; 
            background: #ff5733; 
            color: white; 
            padding: 15px; 
            border: none; 
            border-radius: 10px; 
            font-size: 16px; 
            font-weight: 600; 
            cursor: pointer; 
            transition: all 0.3s; 
        }
        .submit-btn:hover { background: #e74c3c; }
        .submit-btn:disabled { 
            background: #ccc; 
            cursor: not-allowed; 
        }
        .submit-btn.loading { 
            position: relative; 
        }
        .submit-btn.loading::after { 
            content: ''; 
            position: absolute; 
            width: 20px; 
            height: 20px; 
            margin: auto; 
            border: 2px solid transparent; 
            border-top-color: #ffffff; 
            border-radius: 50%; 
            animation: spin 1s ease infinite; 
            top: 50%; 
            left: 50%; 
            transform: translate(-50%, -50%); 
        }
        @keyframes spin { 0% { transform: translate(-50%, -50%) rotate(0deg); } 100% { transform: translate(-50%, -50%) rotate(360deg); } }
