/* Reset e Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            height: 100%;
            scroll-behavior: smooth;
        }

        body {
            box-sizing: border-box;
            height: 100%;
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* Variáveis CSS */
        :root {
            --primary-color: #0056ff;
            --primary-dark: #0041cc;
            --primary-light: #3374ff;
            --secondary-color: #00d4aa;
            --accent-color: #ff6b35;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --text-muted: #999;
            --bg-light: #f8fafc;
            --bg-dark: #1a1a1a;
            --white: #ffffff;
            --border-color: #e2e8f0;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
            --border-radius: 8px;
            --border-radius-lg: 12px;
            --transition: all 0.3s ease;
        }

        /* Utilitários */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .step-item .p-section {
            padding-top: 15px ;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary-light);
        }

        /* Botões */
        .btn-primary, .btn-secondary, .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: 2px solid transparent;
            cursor: pointer;
            font-size: 1rem;
            line-height: 1.5;
            min-height: 48px;
        }

        .btn-primary {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .btn-outline {
            background: transparent;
            color: var(--text-dark);
            border-color: var(--border-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        .btn-large {
            padding: 16px 32px;
            font-size: 1.1rem;
        }

        .btn-full {
            width: 100%;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            transition: var(--transition);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gray-dark);
            text-decoration: none;
        }

        .logo span{
            color: var(--primary-dark);
        }

        .logo-icon {
            font-size: 1.8rem;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-color);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 86, 255, 0.1);
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--text-dark);
            margin-bottom: 24px;
        }

        .highlight {
            color: var(--primary-color);
        }

        .hero-subtitle {
            font-size: 1.0rem;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-social-proof {
            display: flex;
            gap: 20px;
        }

        .proof-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            color: var(--gray-medium);
        }

        .proof-item i {
            width: 20px;
            height: 20px;
            color: var(--primary-color);
        }


        /* Hero Visual */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 0.8s ease-out 0.2s both;
        }

        .hero-mockup {
            position: relative;
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            transition: var(--transition);
        }

        .hero-mockup:hover {
            transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
        }

        .mockup-browser {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            width: 400px;
        }

        .browser-header {
            background: #f1f5f9;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid var(--border-color);
        }

        .browser-dots {
            display: flex;
            gap: 6px;
        }

        .browser-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e1;
        }

        .browser-dots span:nth-child(1) { background: #ef4444; }
        .browser-dots span:nth-child(2) { background: #f59e0b; }
        .browser-dots span:nth-child(3) { background: #10b981; }

        .browser-url {
            background: var(--white);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            color: var(--text-light);
            border: 1px solid var(--border-color);
        }

        .browser-content {
            height: 300px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            position: relative;
        }

        .mockup-website {
            padding: 20px;
            height: 100%;
        }

        .mockup-header {
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            margin-bottom: 16px;
        }

        .mockup-hero {
            height: 80px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            margin-bottom: 16px;
        }

        .mockup-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .mockup-card {
            height: 60px;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 4px;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .about-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 40px;
        }

        .value-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            text-align: left;
        }

        .value-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .value-content h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .value-content p {
            color: var(--text-light);
            margin: 0;
        }

        /* How It Works */
        .how-it-works {
            background: var(--bg-light);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .step-item {
            background: var(--white);
            padding: 40px 32px;
            border-radius: var(--border-radius-lg);
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }

        .step-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .step-icon {
            margin: 20px 0;
        }

        .step-icon svg{
            width: 3rem;
            height: 3rem;
        }

        .step-item h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .step-item p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Services */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .service-card {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: var(--border-radius-lg);
            padding: 40px 32px;
            text-align: center;
            transition: var(--transition);
            position: relative;
        }

        .service-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-card.featured {
            border-color: var(--primary-color);
            background: linear-gradient(135deg, rgba(0, 86, 255, 0.05) 0%, rgba(0, 86, 255, 0.02) 100%);
        }

        .service-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .service-icon {
            margin-bottom: 24px;
            color: var(--primary-light)
        }

        .service-icon svg{
            width: 3rem;
            height: 3rem;
        }

        .service-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .service-card p {
            color: var(--text-light);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            margin-bottom: 32px;
            text-align: left;
        }

        .service-features li {
            padding: 8px 0;
            color: var(--text-light);
        }

        /* ===== SEÇÃO DE ESTATÍSTICAS ===== */
        .stats {
            background: var(--primary-color);
            color: var(--white);
            padding: 80px 20px;
            text-align: center;
        }

        .stats .container {
            max-width: 900px;
            margin: auto;
        }

        .stats h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--white);
            letter-spacing: 0.5px;
        }
       
        .stats p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 35px;
            color: #e5e7eb;
        }

        .stats .statistic {
            list-style: none;
            padding: 0;
            margin: 0 auto 40px;
            text-align: left;
            display: inline-block;
        }

        .stats .statistic li {
            font-size: 1rem;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .stats .statistic li:last-child {
            border-bottom: none;
        }

        .stats .statistic li::before {
            content: ".";
            color: var(--white);
            margin-right: 8px;
        }

        .stats h3 {
            font-size: 1.3rem;
            margin-top: 30px;
            font-weight: 600;
            color: var(--white);
        }

        .btn-statistic {
            display: inline-block;
            background-color: #f59e0b;
            color: var(--white);
            text-decoration: none;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 600;
            margin-top: 25px;
            transition: all 0.3s ease;
        }

        .btn-statistic:hover {
            background-color: #fbbf24;
            transform: scale(1.05);
        }


        /* Pricing */
        .pricing {
            background: var(--bg-light);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .pricing-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            padding: 40px 32px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            border: 2px solid transparent;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .pricing-header h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0;
        }
        .pricing-header p {
            font-family: 'poppins' , sans-serif;
            font-size: 0.8rem;
            font-weight: 200;
            color: var(--gray-medium);
            margin-bottom: 20px;
        }

        .pricing-header .parcelamento {
            color: rgb(3, 151, 70);
            font-weight: 400;
            margin-top: -30px;
            font-size: 20px;
        }

        .pricing-price {
            margin-bottom: 32px;
        }

        .currency {
            font-size: 1.2rem;
            color: var(--text-light);
            vertical-align: top;
        }

        .amount {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
        }

        .period {
            font-size: 1rem;
            color: var(--text-light);
            margin-left: 8px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
            text-align: left;
        }

        .pricing-features li {
            padding: 12px 0;
            color: var(--text-light);
            border-bottom: 1px solid var(--border-color);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        /* Budget Simulator */
        .budget-simulator {
            background: var(--white);
        }

        .simulator-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .simulator-form {
            background: var(--bg-light);
            padding: 40px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-sm);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border-color);
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            background: var(--white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 86, 255, 0.1);
        }

        .simulator-result {
            background: var(--white);
            padding: 32px;
            border-radius: var(--border-radius);
            text-align: center;
            margin-top: 24px;
            border: 2px solid var(--primary-color);
        }

        .result-price {
            margin-bottom: 24px;
        }

        .result-label {
            display: block;
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 8px;
        }

        .result-amount {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .simulator-result p {
            margin-top: 25px;
            font-size: 12px;
            color: var(--text-light);
        }

        /* Testimonials */
        .testimonials {
            background: var(--bg-light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 32px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .testimonial-stars {
            font-size: 1.2rem;
            margin-bottom: 16px;
        }

        .testimonial-content p {
            color: var(--text-light);
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--bg-light);
            border-radius: 50%;
            overflow: hidden;
        }
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 1 / 1;
        }

        .author-info h4 {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .author-info span {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Portfolio */
        .portfolio {
            background: var(--white);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .portfolio-item {
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .portfolio-image {
            position: relative;
            height: 250px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .portfolio-mockup {
            font-size: 4rem;
            opacity: 0.3;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
            text-align: center;
            padding: 20px;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .portfolio-overlay p {
            margin-bottom: 16px;
            opacity: 0.9;
        }

        .portfolio-category {
            background: var(--primary-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* FAQ */
        .faq {
            background: var(--bg-light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .faq-question {
            padding: 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--bg-light);
        }

        .faq-question h4 {
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            padding: 0 24px 24px;
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }

        /* Technologies */
        .technologies {
            background: var(--white);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 32px;
        }

        .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 24px;
            background: var(--bg-light);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .tech-item:hover {
            transform: translateY(-4px);
            background: var(--primary-color);
            color: var(--white);
        }

        .tech-icon {
            font-size: 2.5rem;
        }

        .tech-item span {
            font-weight: 600;
        }

        /* Contact */
        .contact {
            background: var(--bg-light);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .contact-info p {
            color: var(--text-light);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .contact-details h4 {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .contact-details p {
            color: var(--text-light);
            margin: 0;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-sm);
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-align: center;
        }

        .cta-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 32px;
            opacity: 0.9;
        }

        .final-cta .btn-primary {
            background: var(--white);
            color: var(--primary-color);
        }

        .final-cta .btn-primary:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--bg-dark);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-section p {
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .footer-section h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-section ul li a:hover {
            color: var(--white);
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgb(255, 255, 255);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
            color: var(--gray-dark);
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
            color: var(--white);
        }

        .footer-contact p {
            margin-bottom: 8px;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 20px;
        }

        .footer-legal {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-legal p {
            color: #9ca3af;
            margin: 0;
        }

        .legal-links {
            display: flex;
            gap: 24px;
        }

        .legal-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .legal-links a:hover {
            color: var(--white);
        }

        /* WhatsApp Float */
         :root {
            --primary-color: #0056ff;
            --primary-dark: #0041cc;
            --primary-light: #3374ff;
            --secondary-color: #00d4aa;
            --white: #ffffff;
            --gray-light: #f8f9fa;
            --gray-medium: #6c757d;
            --gray-dark: #343a40;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
            --border-radius: 8px;
            --border-radius-lg: 12px;
            --border-radius-xl: 20px;
            --transition: all 0.3s ease;
        }

        .chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .chatbot-toggle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chatbot-toggle:hover {
            transform: scale(1.1);
        }

        .chatbot-window {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 500px;
            background: var(--white);
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-xl);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .chatbot-window.active {
            display: flex;
        }

        .chatbot-header {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: var(--white);
            padding: 20px;
            text-align: center;
        }

        .chatbot-header h3 {
            font-size: 1.2rem;
            margin: 0 0 5px 0;
            font-weight: 600;
        }

        .chatbot-header p {
            font-size: 0.9rem;
            opacity: 0.9;
            margin: 0;
        }

        .chatbot-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .message {
            max-width: 80%;
            padding: 12px 16px;
            border-radius: var(--border-radius-lg);
            font-size: 0.9rem;
            line-height: 1.4;
            white-space: pre-line;
        }

        .message.bot {
            background: var(--gray-light);
            color: var(--gray-dark);
            align-self: flex-start;
        }

        .message.user {
            background: var(--primary-color);
            color: var(--white);
            align-self: flex-end;
        }

        .chatbot-options {
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 200px;
            overflow-y: auto;
        }

        .option-btn {
            background: var(--gray-light);
            border: 1px solid var(--gray-medium);
            padding: 10px 15px;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
            text-align: left;
        }

        .option-btn:hover {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        .chatbot-input {
            padding: 20px;
            border-top: 1px solid var(--gray-light);
            display: flex;
            gap: 10px;
        }

        .chatbot-input input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid var(--gray-light);
            border-radius: var(--border-radius);
            font-size: 0.9rem;
        }

        .chatbot-input input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .chatbot-input button {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 10px 15px;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
        }

        .chatbot-input button:hover {
            background: var(--primary-dark);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 480px) {
            .chatbot-window {
                width: 300px;
                height: 450px;
                right: -10px;
            }
        }

        @media (max-width: 360px) {
            .chatbot-window {
                width: 280px;
                right: -20px;
            }
        }

        /* Demo background */
        .demo-background {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #0056ff, #00d4aa);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-align: center;
            z-index: 1;
        }
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-dark);
            color: var(--white);
            padding: 20px;
            z-index: 1001;
            transform: translateY(100%);
            transition: var(--transition);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .cookie-content p {
            margin: 0;
            flex: 1;
        }

        .cookie-content a {
            color: var(--primary-light);
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
        }

        .cookie-buttons button {
            padding: 8px 16px;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1002;
            align-items: center;
            justify-content: center;
        }

        .modal.show {
            display: flex;
        }

        .modal-content {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            max-width: 500px;
            width: 90%;
            max-height: 90%;
            overflow-y: auto;
        }

        .modal-header {
            padding: 24px 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h3 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text-light);
            transition: var(--transition);
        }

        .modal-close:hover {
            color: var(--text-dark);
        }

        .modal-form {
            padding: 24px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow-lg);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-list {
                flex-direction: column;
                gap: 16px;
                margin-bottom: 20px;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .nav-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .nav-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .hero-social-proof {
                justify-content: center;
            }

            .mockup-browser {
                width: 300px;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-legal {
                flex-direction: column;
                text-align: center;
            }

            .whatsapp-text {
                display: none;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .section {
                padding: 60px 0;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .btn-large {
                padding: 14px 24px;
                font-size: 1rem;
            }

            .steps-container,
            .services-grid,
            .pricing-grid,
            .testimonials-grid,
            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .simulator-form,
            .contact-form {
                padding: 24px;
            }
        }

        /* Utility Classes */
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .text-right { text-align: right; }
        .mb-0 { margin-bottom: 0; }
        .mb-1 { margin-bottom: 8px; }
        .mb-2 { margin-bottom: 16px; }
        .mb-3 { margin-bottom: 24px; }
        .mb-4 { margin-bottom: 32px; }
        .mt-0 { margin-top: 0; }
        .mt-1 { margin-top: 8px; }
        .mt-2 { margin-top: 16px; }
        .mt-3 { margin-top: 24px; }
        .mt-4 { margin-top: 32px; }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading States */
        .loading {
            opacity: 0.6;
            pointer-events: none;
        }

        .loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid var(--primary-color);
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }