* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #5e5e5e;
            overflow-x: hidden;
            background-color: #f7dece;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            /*background: linear-gradient(135deg, #df6a23 0%, #df6a23 100%);*/
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        header.scrolled {
            background: rgba(223, 106, 35, 0.95);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        a {
            text-decoration: none;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #eaeaea;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: #eaeaea;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #eed50d;
            transform: translateY(-2px);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #eed50d;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
         .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }
        
        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #eaeaea;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        .mobile-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #df6a23 0%, #df6a23 100%);
            padding-top: 80px;
            transition: left 0.3s ease;
            z-index: 1000;
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav ul {
            list-style: none;
            padding: 2rem;
        }
        
        .mobile-nav ul li {
            margin-bottom: 2rem;
        }
        
        .mobile-nav ul li a {
            color: #eaeaea;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            display: block;
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav ul li a:hover {
            background: rgba(238, 213, 13, 0.2);
            color: #eed50d;
            transform: translateX(10px);
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #df6a23 0%, #df6a23 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: #eaeaea;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23fff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(10px) rotate(240deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            background: linear-gradient(45deg, #eed50d, #eed50d);
            color: #5e5e5e;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(238, 213, 13, 0.4);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(238, 213, 13, 0.6);
        }
        
        /* About Section */
        .about {
            padding: 5rem 0;
            background: white;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            color: #5e5e5e;
            margin-bottom: 1rem;
        }
        
        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #838383;
        }
        
        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #df6a23;
            display: block;
        }
        
        .stat-label {
            color: #838383;
            font-size: 0.9rem;
        }
        
        /* Services Section */
        .services {
            padding: 5rem 0;
            background: #f7dece;
        }
        
        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #5e5e5e;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #eee;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #df6a23, #df6a23);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: #eaeaea;
            font-size: 1.5rem;
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #5e5e5e;
        }
        
        .service-card p {
            color: #838383;
            line-height: 1.6;
        }
        
        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #df6a23 0%, #df6a23 100%);
            padding: 5rem 0;
            color: #eaeaea;
            text-align: center;
        }
        
        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .contact p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            gap: 1rem;
        }
        
        .form-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .contact-form input,
        .contact-form textarea {
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
            color: #5e5e5e;
        }
        
        .contact-form textarea {
            grid-column: 1 / -1;
            resize: vertical;
            min-height: 120px;
        }
        
        .contact-form button {
            grid-column: 1 / -1;
            padding: 1rem 2rem;
            background: #eed50d;
            color: #5e5e5e;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .contact-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(238, 213, 13, 0.4);
        }
        
        /* Footer */
        footer {
            background: #5e5e5e;
            color: #eaeaea;
            padding: 3rem 0 1rem;
            text-align: center;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            color: #eed50d;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section ul li a {
            color: #eaeaea;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: #eed50d;
        }
        
        .footer-bottom {
            border-top: 1px solid #838383;
            padding-top: 1rem;
            color: #eaeaea;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .stats {
                justify-content: center;
            }
            
            .form-group {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Loading animation */
        .loading {
            opacity: 0;
            animation: fadeIn 0.8s ease-in forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* PAGINA IAs */

        /* Features Section */
        .features {
            padding: 5rem 0;
            background: white;
        }
        
        .features h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #5e5e5e;
        }
        
        .features .subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #838383;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid #f7dece;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #df6a23;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #df6a23, #df6a23);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: #eaeaea;
            font-size: 2rem;
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #5e5e5e;
        }
        
        .feature-card p {
            color: #838383;
            line-height: 1.6;
        }
        
        /* Platforms Section */
        .platforms {
            padding: 5rem 0;
            background: #f7dece;
        }
        
        .platforms h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #5e5e5e;
        }
        
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .platform-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .platform-card:hover {
            transform: translateY(-5px);
            border-color: #df6a23;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .platform-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .platform-card h3 {
            color: #5e5e5e;
            margin-bottom: 1rem;
        }
        
        .platform-card p {
            color: #838383;
            font-size: 0.9rem;
        }
        
        /* Benefits Section */
        .benefits {
            padding: 5rem 0;
            background: white;
        }
        
        .benefits-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .benefits-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #5e5e5e;
        }
        
        .benefits-list {
            list-style: none;
        }
        
        .benefits-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #838383;
        }
        
        .benefits-list li::before {
            content: "✓";
            background: #df6a23;
            color: #eaeaea;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-weight: bold;
        }
        
        .benefits-visual {
            display: flex;
            justify-content: center;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .stat-card {
            background: #f7dece;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #df6a23;
            display: block;
        }
        
        .stat-label {
            color: #838383;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        
        /* Process Section */
        .process {
            padding: 5rem 0;
            background: #f7dece;
        }
        
        .process h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #5e5e5e;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .process-step {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            position: relative;
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #df6a23;
            color: #eaeaea;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .process-step h3 {
            margin: 1.5rem 0 1rem;
            color: #5e5e5e;
        }
        
        .process-step p {
            color: #838383;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #df6a23 0%, #df6a23 100%);
            padding: 5rem 0;
            color: #eaeaea;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .cta-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            gap: 1rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .cta-form input,
        .cta-form select,
        .cta-form textarea {
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
            color: #5e5e5e;
        }
        
        .cta-form textarea {
            grid-column: 1 / -1;
            resize: vertical;
            min-height: 100px;
        }
        
        .cta-form button {
            grid-column: 1 / -1;
            padding: 1.2rem 2rem;
            background: #eed50d;
            color: #5e5e5e;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cta-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(238, 213, 13, 0.4);
        }