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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: #2c3e50;
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
        }

        .header-badge {
            background: #e67e22;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9em;
            display: inline-block;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .headline {
            font-size: 3.2em;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .headline .orange {
            color: #e67e22;
        }

        .subheadline {
            font-size: 1.2em;
            margin-bottom: 50px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .header-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-block;
            background: #e67e22;
            color: white;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1em;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #d35400;
            transform: translateY(-2px);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid #e67e22;
            color: #e67e22;
        }

        .cta-button.secondary:hover {
            background: #e67e22;
            color: white;
        }

        /* Fixed CTA */
        .fixed-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: none;
        }

        .fixed-cta.show {
            display: block;
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from { transform: translateY(100px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Sections */
        .section {
            padding: 80px 0;
        }

        .section-light {
            background: #f8f9fa;
        }

        .section-dark {
            background: #2c3e50;
            color: white;
        }

        .section-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .section-title .orange {
            color: #e67e22;
        }

        .section-subtitle {
            font-size: 1.1em;
            text-align: center;
            margin-bottom: 60px;
            color: #666;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .section-dark .section-subtitle {
            color: #bdc3c7;
        }

        /* Diagnóstico */
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .benefit-item {
            text-align: center;
            padding: 30px 20px;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: #e67e22;
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            margin: 0 auto 20px;
            font-weight: 600;
        }

        .benefit-title {
            font-size: 1.1em;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .benefit-description {
            color: #666;
            font-size: 0.95em;
            line-height: 1.6;
        }

        .cta-center {
            text-align: center;
            margin-top: 50px;
        }

        /* Prova Social */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial {
            background: #34495e;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            position: relative;
        }

        .testimonial-icon {
            width: 60px;
            height: 60px;
            background: #27ae60;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8em;
            margin: 0 auto 20px;
        }

        .testimonial-icon.blue {
            background: #3498db;
        }

        .testimonial-result {
            font-size: 1.1em;
            font-weight: 600;
            margin-bottom: 15px;
            color: white;
        }

        .testimonial-description {
            color: #bdc3c7;
            font-size: 0.95em;
            line-height: 1.6;
        }

        /* Identificação do Público */
        .target-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .target-item {
            display: flex;
            align-items: center;
            padding: 25px;
            margin: 20px 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .target-icon {
            width: 50px;
            height: 50px;
            background: #e67e22;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .target-text {
            font-size: 1.1em;
            color: #2c3e50;
            font-weight: 500;
        }

        /* Sobre */
        .about-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            background: #34495e;
            padding: 60px 40px;
            border-radius: 12px;
        }

        .about-icon {
            width: 80px;
            height: 80px;
            background: #e67e22;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            margin: 0 auto 30px;
        }

        .about-title {
            font-size: 1.4em;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .about-description {
            color: #bdc3c7;
            font-size: 1em;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .about-feature {
            text-align: center;
        }

        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: #e67e22;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            margin: 0 auto 15px;
        }

        .about-feature-title {
            font-size: 0.9em;
            font-weight: 600;
            color: #e67e22;
            margin-bottom: 8px;
        }

        .about-feature-text {
            font-size: 0.85em;
            color: #bdc3c7;
            line-height: 1.5;
        }

        /* Objeções */
        .objections-title {
            font-size: 2.2em;
            text-align: center;
            margin-bottom: 60px;
            font-weight: 700;
            color: #2c3e50;
        }

        .objections-title .orange {
            color: #e67e22;
        }

        .objections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .objection-item {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
        }

        .objection-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            color: white;
            margin-bottom: 20px;
        }

        .objection-icon.red {
            background: #e74c3c;
        }

        .objection-icon.purple {
            background: #9b59b6;
        }

        .objection-icon.green {
            background: #27ae60;
        }

        .objection-question {
            font-size: 1.1em;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .objection-answer {
            color: #666;
            font-size: 0.95em;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .footer-badge {
            background: #e67e22;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9em;
            display: inline-block;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .footer-quote {
            font-size: 1.8em;
            font-weight: 700;
            margin-bottom: 40px;
            line-height: 1.3;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-quote .orange {
            color: #e67e22;
        }

        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 40px;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: #e67e22;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
        }

        .contact-title {
            font-size: 1em;
            font-weight: 600;
            color: #e67e22;
        }

        .contact-info {
            font-size: 0.9em;
            color: #bdc3c7;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: white;
            margin: 5% auto;
            padding: 0;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-header {
            background: #2c3e50;
            color: white;
            padding: 30px;
            border-radius: 12px 12px 0 0;
            text-align: center;
        }

        .modal-body {
            padding: 30px;
        }

        .close {
            position: absolute;
            right: 20px;
            top: 20px;
            color: white;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1;
        }

        .close:hover {
            opacity: 0.7;
        }

        /* Form Styles */
        .form-step {
            display: none;
            text-align: center;
        }

        .form-step.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-question {
            font-size: 1.3em;
            font-weight: 600;
            margin-bottom: 30px;
            color: #2c3e50;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1.1em;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #e67e22;
        }

        .form-options {
            display: grid;
            gap: 15px;
        }

        .form-option {
            padding: 15px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
        }

        .form-option:hover {
            border-color: #e67e22;
            background: #fef3f2;
        }

        .form-option.selected {
            border-color: #e67e22;
            background: #fef3f2;
            color: #e67e22;
        }

        .form-progress {
            width: 100%;
            height: 6px;
            background: #e5e7eb;
            border-radius: 3px;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .form-progress-bar {
            height: 100%;
            background: #e67e22;
            transition: width 0.3s ease;
            border-radius: 3px;
        }

        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        .form-nav-button {
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .form-nav-button.back {
            background: #e5e7eb;
            color: #666;
        }

        .form-nav-button.next {
            background: #e67e22;
            color: white;
        }

        .form-nav-button:hover {
            transform: translateY(-2px);
        }

        .form-nav-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .headline {
                font-size: 2.5em;
            }
            
            .section-title {
                font-size: 2em;
            }
            
            .benefits {
                grid-template-columns: 1fr;
            }
            
            .testimonials {
                grid-template-columns: 1fr;
            }
            
            .target-item {
                flex-direction: column;
                text-align: center;
            }
            
            .target-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .objections-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-contact {
                flex-direction: column;
                gap: 30px;
            }
            
            .header-buttons {
                flex-direction: column;
                align-items: center;
            }
        }