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

        :root {
            --primary-dark: #03151f;
            --primary-color: #EE3D44;
            --accent-red: #EE3D44;
            --text-light: #ffffff;
            --text-primary: #ffffff;
            --text-secondary: #a0a8b0;
            --text-gray: #a0a8b0;
            --gradient-overlay: linear-gradient(135deg, rgba(3, 21, 31, 0.9), rgba(238, 61, 68, 0.1));
            --card-bg: rgba(255, 255, 255, 0.05);
            --border-color: rgba(255, 255, 255, 0.1);
            --border-light: rgba(255, 255, 255, 0.1);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Clean Tech Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: var(--primary-dark);
            overflow: hidden;
        }

        /* Subtle tech grid */
        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(238, 61, 68, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(238, 61, 68, 0.03) 1px, transparent 1px);
            background-size: 100px 100px;
            animation: gridFlow 40s linear infinite;
            opacity: 0.5;
        }

        /* Flowing data waves */
        .bg-animation::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 30%, rgba(238, 61, 68, 0.05) 50%, transparent 70%),
                linear-gradient(-45deg, transparent 40%, rgba(238, 61, 68, 0.03) 60%, transparent 80%);
            background-size: 200% 200%;
            animation: dataWave 25s ease-in-out infinite;
        }

        /* Connected particles network */
        .particle-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .network-dot {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(238, 61, 68, 0.6);
            border-radius: 50%;
            animation: dotPulse 4s ease-in-out infinite;
        }

        .network-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(238, 61, 68, 0.2), transparent);
            transform-origin: left center;
            animation: lineFlow 6s ease-in-out infinite;
        }

        /* Positioning dots strategically */
        .network-dot:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
        .network-dot:nth-child(2) { top: 35%; left: 45%; animation-delay: 1s; }
        .network-dot:nth-child(3) { top: 60%; left: 25%; animation-delay: 2s; }
        .network-dot:nth-child(4) { top: 75%; left: 65%; animation-delay: 3s; }
        .network-dot:nth-child(5) { top: 45%; right: 20%; animation-delay: 0.5s; }
        .network-dot:nth-child(6) { top: 25%; right: 40%; animation-delay: 1.5s; }

        /* Connecting lines between dots */
        .network-line:nth-child(7) { 
            top: 20%; left: 15%; width: 300px; 
            transform: rotate(25deg); 
            animation-delay: 0s; 
        }
        .network-line:nth-child(8) { 
            top: 35%; left: 45%; width: 250px; 
            transform: rotate(-15deg); 
            animation-delay: 2s; 
        }
        .network-line:nth-child(9) { 
            top: 60%; left: 25%; width: 400px; 
            transform: rotate(10deg); 
            animation-delay: 4s; 
        }

        /* Subtle depth orbs */
        .depth-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(238, 61, 68, 0.1), transparent 60%);
            animation: orbFloat 30s ease-in-out infinite;
        }

        .orb-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 70%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 200px;
            height: 200px;
            bottom: 20%;
            left: 10%;
            animation-delay: -10s;
        }

        /* Keyframe animations */
        @keyframes gridFlow {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 100px); }
        }

        @keyframes dataWave {
            0%, 100% { 
                background-position: 0% 0%, 100% 100%;
                opacity: 0.3;
            }
            50% { 
                background-position: 100% 100%, 0% 0%;
                opacity: 0.6;
            }
        }

        @keyframes dotPulse {
            0%, 100% { 
                transform: scale(1);
                opacity: 0.6;
                box-shadow: 0 0 10px rgba(238, 61, 68, 0.3);
            }
            50% { 
                transform: scale(1.5);
                opacity: 1;
                box-shadow: 0 0 20px rgba(238, 61, 68, 0.6);
            }
        }

        @keyframes lineFlow {
            0%, 100% { 
                opacity: 0.2;
                transform: scaleX(0.5);
            }
            50% { 
                opacity: 0.8;
                transform: scaleX(1);
            }
        }

        @keyframes orbFloat {
            0%, 100% { 
                transform: translateY(0px) translateX(0px);
                opacity: 0.3;
            }
            33% { 
                transform: translateY(-30px) translateX(20px);
                opacity: 0.5;
            }
            66% { 
                transform: translateY(-10px) translateX(-15px);
                opacity: 0.4;
            }
        }

        /* Navigation */
        .nav {
            position: relative;
            padding: 1.5rem 2rem;
            background: var(--primary-dark);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
        }

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

        .logo {
            height: 40px;
            filter: brightness(1.1);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent-red);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-red);
            transition: width 0.3s ease;
        }

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

        .nav-links a i {
            margin-right: 0.5rem;
            font-size: 1.1em;
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            background: none;
            border: none;
            z-index: 1001;
        }

        .hamburger-line {
            width: 25px;
            height: 3px;
            background: var(--text-light);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(3, 21, 31, 0.98);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu ul {
            list-style: none;
            text-align: center;
        }

        .mobile-menu li {
            margin: 2rem 0;
        }

        .mobile-menu a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            display: block;
            padding: 1rem;
        }

        .mobile-menu a:hover {
            color: var(--accent-red);
            transform: scale(1.1);
        }

        .mobile-menu a i {
            margin-right: 0.5rem;
            font-size: 1.2em;
        }

        /* Login Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(3, 21, 31, 0.9);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .login-modal {
            background: linear-gradient(135deg, rgba(3, 21, 31, 0.95), rgba(238, 61, 68, 0.1));
            border: 1px solid rgba(238, 61, 68, 0.2);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            width: 90%;
            max-width: 400px;
            position: relative;
            transform: scale(0.8) translateY(50px);
            transition: all 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-overlay.active .login-modal {
            transform: scale(1) translateY(0);
        }

        /* Force modal visibility for Vender Mais */
        .modal-overlay.force-show,
        #registrationModal[style*="display: flex"] {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
            z-index: 9999 !important;
        }

        #registrationModal[style*="display: flex"] .registration-modal {
            transform: scale(1) translateY(0) !important;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--text-gray);
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(238, 61, 68, 0.1);
            color: var(--accent-red);
        }

        .login-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .login-header h2 {
            color: var(--text-light);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .login-header p {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 1rem 1.2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-red);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(238, 61, 68, 0.1);
        }

        .form-input::placeholder {
            color: var(--text-gray);
        }

        /* Password Input Container */
        .password-input-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .password-input-container .form-input {
            padding-right: 50px; /* Space for toggle button */
        }

        .password-toggle {
            position: absolute;
            right: 12px;
            background: none;
            border: none;
            color: var(--text-gray);
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .password-toggle:hover {
            color: var(--accent-red);
            background: rgba(238, 61, 68, 0.1);
        }

        .password-toggle i {
            font-size: 1rem;
        }

        .password-requirements {
            margin-top: 8px;
        }

        .password-requirements small {
            color: var(--text-gray);
            font-size: 0.85rem;
        }

        .login-button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--accent-red), #ff4757);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        .login-button:hover {
            background: linear-gradient(135deg, #ff4757, var(--accent-red));
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(238, 61, 68, 0.3);
        }

        .login-button:active {
            transform: translateY(0);
        }

        .forgot-password {
            text-align: center;
            margin-top: 1rem;
        }

        .forgot-password a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .forgot-password a:hover {
            color: var(--accent-red);
        }

        .login-footer {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .login-footer p {
            color: var(--text-gray);
            font-size: 0.85rem;
            margin-bottom: 0.5rem;
        }

        .signup-link {
            color: var(--accent-red);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .signup-link:hover {
            text-decoration: underline;
        }

        /* Journey Section Styles */
        .journey-section {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .journey-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        /* User Name Highlight Effect - Same as headline */
        .user-name-highlight {
            background: linear-gradient(45deg, #EE3D44, #ff6b6b, #EE3D44, #ff4757);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
            font-weight: 900;
            font-size: 1.2em;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }

        .comparison-title {
            text-align: center;
            font-size: 1.5rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            font-weight: 600;
        }

        .journey-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .journey-stage {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .journey-stage.highlight {
            border-color: var(--accent-red);
            box-shadow: 0 0 20px rgba(238, 61, 68, 0.1);
        }

        .journey-stage:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .stage-number {
            position: absolute;
            top: -15px;
            left: 2rem;
            width: 30px;
            height: 30px;
            background: var(--accent-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .stage-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .customer-side, .business-side {
            text-align: center;
            padding: 1rem;
        }

        .customer-side {
            border-right: 1px solid var(--border-color);
        }

        .stage-icon, .business-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-red);
        }

        .business-icon {
            color: #ff6b6b;
        }

        .customer-side h4, .business-side h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .customer-side p, .business-side p {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        .martech-intro {
            background: linear-gradient(135deg, rgba(238, 61, 68, 0.1), rgba(3, 21, 31, 0.3));
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            border: 1px solid rgba(238, 61, 68, 0.2);
        }

        .martech-icon {
            font-size: 3rem;
            color: var(--accent-red);
            margin-bottom: 1rem;
        }

        .martech-highlight h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .martech-highlight p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .martech-stages {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .martech-stage {
            background: rgba(238, 61, 68, 0.1);
            border: 1px solid rgba(238, 61, 68, 0.3);
            border-radius: 10px;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-light);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .martech-stage:hover {
            background: rgba(238, 61, 68, 0.2);
            transform: translateY(-2px);
        }

        .martech-stage i {
            color: var(--accent-red);
            font-size: 1.2rem;
        }

        /* Martech Typebot */
        .martech-typebot {
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 15px;
            overflow: hidden;
        }

        /* Journey Flow - New Visual Design */
        .journey-flow {
            margin: 3rem 0;
        }

        .flow-section {
            margin-bottom: 3rem;
        }

        /* Success Section - Disclaimer Style */
        .success-section .section-header {
            background: rgba(34, 197, 94, 0.02);
            border: 1px solid rgba(34, 197, 94, 0.15);
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 2rem;
            position: relative;
            border-left: 4px solid #22c55e;
        }

        .section-header .header-content {
            text-align: left;
        }

        .section-header .header-content h3 {
            color: var(--text-light);
            margin: 0 0 0.3rem 0;
            font-size: 1rem;
            font-weight: 600;
        }



        .section-header .header-content p {
            color: var(--text-gray);
            margin: 0;
            font-size: 0.85rem;
            font-style: italic;
            opacity: 0.7;
        }

        /* Stage Cards */
        .stage-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .success-card {
            border-color: rgba(34, 197, 94, 0.3);
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.02), var(--card-bg));
        }

        .pain-card {
            border-color: rgba(238, 61, 68, 0.3);
            background: linear-gradient(135deg, rgba(238, 61, 68, 0.02), var(--card-bg));
            margin-bottom: 1.5rem;
        }

        .stage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .stage-badge {
            position: absolute;
            top: -15px;
            left: 2rem;
            background: var(--accent-red);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(238, 61, 68, 0.3);
        }

        .success-card .stage-badge {
            background: #22c55e;
            box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
        }

        /* Stage Row Layout */
        .stage-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        /* Stage Flow Layout */
        .stage-flow {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
        }

        .flow-step {
            width: 100%;
            max-width: 300px;
            text-align: center;
            position: relative;
        }

        .step-label {
            background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(238, 61, 68, 0.3);
        }

        .client-step .step-label {
            background: linear-gradient(135deg, #64748b, #94a3b8);
            box-shadow: 0 4px 12px rgba(100, 116, 139, 0.3);
        }

        .step-content {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .client-step .step-content {
            border-color: rgba(100, 116, 139, 0.2);
            background: rgba(100, 116, 139, 0.02);
        }

        .business-step .step-content {
            border-color: rgba(238, 61, 68, 0.2);
            background: rgba(238, 61, 68, 0.02);
        }

        .step-content:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .flow-arrow-down {
            color: var(--accent-red);
            font-size: 1.5rem;
            opacity: 0.7;
            animation: arrowBounce 2s ease-in-out infinite;
        }

        @keyframes arrowBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(5px); }
        }

        .stage-icon-wrapper.client {
            background: linear-gradient(135deg, #64748b, #94a3b8);
            box-shadow: 0 8px 25px rgba(100, 116, 139, 0.2);
        }

        .stage-icon-wrapper.business {
            background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
            box-shadow: 0 8px 25px rgba(238, 61, 68, 0.2);
        }

        .stage-column {
            text-align: center;
        }

        .stage-column.customer {
            border-right: 2px solid var(--border-color);
            padding-right: 2rem;
        }

        .stage-column.business {
            padding-left: 2rem;
        }

        .stage-icon-wrapper {
            width: 70px;
            height: 70px;
            margin: 0 auto 1rem;
            background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 8px 25px rgba(238, 61, 68, 0.2);
        }

        .success-card .stage-icon-wrapper.business {
            background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
            box-shadow: 0 8px 25px rgba(238, 61, 68, 0.2);
        }

        .success-card .stage-icon-wrapper.client {
            background: linear-gradient(135deg, #22c55e, #34d399);
            box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
        }

        .success-card .client-step .step-label {
            background: linear-gradient(135deg, #22c55e, #34d399);
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
        }

        .success-card .client-step .step-content {
            border-color: rgba(34, 197, 94, 0.2);
            background: rgba(34, 197, 94, 0.02);
        }

        .stage-column h4 {
            color: var(--text-light);
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 0.5rem 0;
        }

        .stage-column p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.4;
        }



        /* Pain Tags - Improved */
        .pain-tag {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, rgba(238, 61, 68, 0.9), rgba(238, 61, 68, 0.7));
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            opacity: 0.8;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .pain-tag:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

        /* Pain Separator */
        .pain-separator {
            margin: 4rem 0;
            text-align: left;
        }

        .warning-banner {
            background: rgba(238, 61, 68, 0.03);
            border: 1px solid rgba(238, 61, 68, 0.15);
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            border-left: 4px solid var(--accent-red);
        }

        .warning-banner i {
            font-size: 1.2rem;
            color: var(--accent-red);
            opacity: 0.8;
        }

        .warning-banner h3 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-light);
            text-align: center;
        }

        .pain-description {
            background: rgba(238, 61, 68, 0.05);
            border: 2px solid rgba(238, 61, 68, 0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: left;
        }

        .pain-description * {
            text-align: left;
        }

        .pain-intro h4 {
            color: var(--text-light);
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 1.5rem 0;
            text-align: left;
        }

        .pain-list {
            margin-bottom: 2rem;
        }

        .pain-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .pain-item.general {
            background: rgba(238, 61, 68, 0.03);
            border-left: 3px solid var(--accent-red);
        }

        .pain-item.digital {
            background: rgba(255, 165, 0, 0.03);
            border-left: 3px solid #ff9500;
        }

        .pain-item:hover {
            transform: translateX(5px);
            background: rgba(238, 61, 68, 0.08);
        }

        .pain-item.digital:hover {
            background: rgba(255, 165, 0, 0.08);
        }

        .pain-item i {
            color: var(--accent-red);
            font-size: 1rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .pain-item.digital i {
            color: #ff9500;
        }

        .pain-content p {
            margin: 0;
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
        }

        .pain-separator-small {
            text-align: left;
            margin: 2rem 0 1.5rem 0;
            padding: 1rem;
            background: rgba(255, 165, 0, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 165, 0, 0.2);
        }

        .pain-separator-small p {
            margin: 0;
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 600;
        }

        .pain-conclusion {
            text-align: left;
            margin: 2rem 0 1.5rem 0;
            padding: 1.5rem;
            background: rgba(238, 61, 68, 0.08);
            border-radius: 12px;
            border: 1px solid rgba(238, 61, 68, 0.2);
        }

        .pain-conclusion p {
            margin: 0;
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 700;
        }

        .transition-text {
            text-align: left;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(238, 61, 68, 0.05), rgba(238, 61, 68, 0.02));
            border-radius: 12px;
            border: 1px solid rgba(238, 61, 68, 0.15);
        }

        .transition-text p {
            margin: 0;
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 600;
        }

        .highlight-text {
            background: var(--accent-red);
            color: white;
            padding: 0.2rem 0.5rem;
            border-radius: 5px;
            font-weight: 700;
        }

        /* Segment Transition - Exclusive Section */
        .segment-transition {
            margin: 3rem 0;
            text-align: center;
            position: relative;
        }

        .transition-content {
            background: linear-gradient(135deg, rgba(238, 61, 68, 0.08), rgba(238, 61, 68, 0.03));
            border: 2px solid rgba(238, 61, 68, 0.2);
            border-radius: 20px;
            padding: 2rem 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .transition-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-red), #ff6b6b, var(--accent-red));
            background-size: 200% 100%;
            animation: transitionShine 2s ease-in-out infinite;
        }

        @keyframes transitionShine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .transition-content p {
            margin: 0;
            color: var(--text-light);
            font-size: 1.3rem;
            font-weight: 700;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .journey-section {
                padding: 2rem 1rem;
            }

            .section-header {
                padding: 1rem 1.2rem;
                border-left-width: 3px;
            }

            .section-header .header-content h3 {
                font-size: 0.9rem;
            }

            .section-header .header-content p {
                font-size: 0.8rem;
            }

            .stage-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stage-column.customer {
                border-right: none;
                border-bottom: 2px solid var(--border-color);
                padding-right: 0;
                padding-bottom: 1.5rem;
            }

            .stage-column.business {
                padding-left: 0;
                padding-top: 1.5rem;
            }



            .warning-banner {
                padding: 1.2rem 1.5rem;
                flex-direction: column;
                gap: 0.6rem;
                border-left-width: 3px;
            }

            .warning-banner h3 {
                font-size: 1rem;
                line-height: 1.4;
            }

            .warning-banner i {
                font-size: 1.1rem;
            }

            .pain-tag {
                position: static;
                margin: 1rem 0 0 0;
                align-self: flex-start;
                font-size: 0.7rem;
                padding: 0.4rem 0.8rem;
            }

            .stage-icon-wrapper {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .stage-badge {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .martech-stages {
                flex-direction: column;
                align-items: center;
            }

            .pain-description {
                padding: 1.5rem;
            }

            .pain-intro h4 {
                font-size: 1.1rem;
            }

            .pain-item {
                padding: 0.8rem;
                gap: 0.8rem;
            }

            .pain-content p {
                font-size: 0.9rem;
            }

            .pain-separator-small {
                padding: 0.8rem;
            }

            .pain-separator-small p {
                font-size: 1rem;
            }

            .pain-conclusion {
                padding: 1.2rem;
            }

            .pain-conclusion p {
                font-size: 1rem;
            }

            .transition-text {
                padding: 1.2rem;
            }

            .transition-text p {
                font-size: 1rem;
            }

            .segment-transition {
                margin: 2rem 0;
            }

            .transition-content {
                padding: 1.5rem 1.2rem;
                border-radius: 15px;
            }

            .transition-content p {
                font-size: 1.1rem;
                line-height: 1.4;
            }

            .stage-flow {
                gap: 1rem;
            }

            .flow-step {
                max-width: 100%;
            }

            .step-label {
                font-size: 0.7rem;
                padding: 0.3rem 1rem;
                margin-bottom: 0.8rem;
            }

            .step-content {
                padding: 1.2rem;
            }

            .flow-arrow-down {
                font-size: 1.2rem;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            text-align: center;
            padding: 2rem;
            position: relative;
            box-sizing: border-box;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
            position: relative;
            margin-top: 150px;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--text-light), var(--accent-red), var(--text-light), var(--accent-red));
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            animation: gradientShift 4s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .hero .subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: var(--text-gray);
            margin-bottom: 2rem;
            font-weight: 300;
        }

        /* Enhanced Funnel Visual */
        .funnel-container {
            margin: 2.5rem 0 4rem 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            position: relative;
        }

        .funnel-step {
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.4s ease;
            position: relative;
            text-align: center;
            min-width: 180px;
            backdrop-filter: blur(10px);
        }

        .funnel-divulgacao {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
            color: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 0.85rem;
            opacity: 0.7;
            position: relative;
        }

        .funnel-divulgacao:hover {
            opacity: 0.9;
            transform: scale(1.02);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .funnel-active {
            background: linear-gradient(135deg, var(--accent-red), #ff4757, #ff6b7a);
            color: white;
            box-shadow: 
                0 8px 32px rgba(238, 61, 68, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            font-size: 1.05rem;
            position: relative;
        }

        .funnel-active::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--accent-red), #ff4757, #ff6b7a);
            border-radius: 32px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .funnel-active:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 12px 40px rgba(238, 61, 68, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.2);
        }

        .funnel-active:hover::before {
            opacity: 0.3;
        }

        /* Enhanced connector lines */
        .funnel-arrow {
            width: 3px;
            height: 20px;
            background: linear-gradient(to bottom, 
                rgba(238, 61, 68, 0.8), 
                rgba(238, 61, 68, 0.4), 
                transparent);
            position: relative;
            border-radius: 2px;
        }

        .funnel-arrow::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: -4px;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 8px solid rgba(238, 61, 68, 0.6);
            filter: drop-shadow(0 2px 4px rgba(238, 61, 68, 0.3));
        }

        /* Subtle glow effect */
        .funnel-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(238, 61, 68, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            animation: pulse-glow 4s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
        }

        /* Typebot container styling */
        .typebot-container {
            max-width: 500px;
            margin: 1rem auto 2rem auto;
            padding: 0 1rem;
        }

        typebot-standard {
            display: block;
            width: 100%;
            max-width: 100%;
            border-radius: 15px;
            overflow: hidden;
            text-align: left !important;
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
        }

        /* Reset Typebot text alignment */
        typebot-standard * {
            text-align: left !important;
        }

        /* Specific fixes for Typebot elements */
        typebot-standard p,
        typebot-standard div,
        typebot-standard span,
        typebot-standard button {
            text-align: left !important;
        }

        /* Center only buttons in Typebot */
        typebot-standard button,
        typebot-standard .typebot-button {
            text-align: center !important;
            margin: 0.5rem auto !important;
        }

        /* Etapa 3 - AdTech vs MarTech Section */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }

        .comparison-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .comparison-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* MarTech Card - Destaque seguindo o padrão da página */
        .comparison-card.martech-featured {
            background: var(--card-bg);
            border: 2px solid var(--accent-red);
            position: relative;
            box-shadow: 0 10px 30px rgba(238, 61, 68, 0.2);
            transform: scale(1.02);
        }

        .comparison-card.martech-featured:hover {
            transform: scale(1.05) translateY(-8px);
            box-shadow: 0 15px 40px rgba(238, 61, 68, 0.3);
        }

        .comparison-card.martech-featured::before {
            content: "NOSSA ESPECIALIDADE";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-red);
            color: var(--text-light);
            padding: 0.5rem 1.5rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: bold;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(238, 61, 68, 0.4);
        }



        .comparison-card.martech-featured .card-header h3 {
            color: var(--text-light);
            font-weight: bold;
            font-size: 1.7rem;
        }

        .comparison-card.martech-featured .card-header h3 i {
            color: var(--accent-red);
            font-size: 1.5rem;
        }

        .comparison-card.martech-featured .card-subtitle {
            color: var(--text-gray);
            font-weight: 600;
        }

        .comparison-card.martech-featured .card-description {
            color: var(--text-light);
            font-weight: 500;
        }

        .comparison-card.martech-featured .feature-list i {
            color: var(--accent-red);
            font-size: 1.2rem;
        }

        .comparison-card.martech-featured .feature-list span {
            color: var(--text-light);
            font-weight: 500;
        }

        .comparison-card.martech-featured .card-highlight {
            background: var(--accent-red);
            box-shadow: 0 4px 15px rgba(238, 61, 68, 0.3);
            font-size: 1.1rem;
            padding: 1.2rem;
            font-weight: 600;
        }

        .card-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }



        .card-header h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .card-header h3 i {
            color: var(--accent-red);
            font-size: 1.3rem;
        }

        .card-subtitle {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin: 0;
        }

        .card-content {
            text-align: left;
        }

        .card-description {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            color: var(--text-primary);
            text-align: center;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }

        .feature-list i {
            color: var(--accent-red);
            margin-right: 1rem;
            margin-top: 0.1rem;
            font-size: 1rem;
            width: 16px;
        }

        .feature-list span {
            flex: 1;
            color: var(--text-primary);
            line-height: 1.4;
        }

        .card-highlight {
            background: var(--accent-red);
            color: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-style: italic;
        }

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

        .segment-application {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            margin-top: 3rem;
            border: 1px solid var(--border-light);
        }

        .segment-application h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .segment-application h3 i {
            color: var(--accent-red);
            margin-right: 0.5rem;
        }

        .segment-application p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: var(--text-primary);
        }

        .conclusion-highlight {
            background: var(--accent-red);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .conclusion-highlight i {
            font-size: 1.2rem;
        }

        .adtech-color {
            color: var(--accent-red);
        }

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

        .accent-red {
            color: var(--accent-red);
        }

        /* Como Faz Section - Following page branding */
        #comoFazContent {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            position: relative !important;
            z-index: 100 !important;
        }

        .content-placeholder {
            margin: 3rem 0;
        }

        .placeholder-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 2px solid var(--accent-red);
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(238, 61, 68, 0.2);
        }

        .placeholder-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .placeholder-card h3 {
            color: var(--text-primary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .placeholder-card p {
            color: var(--text-primary);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .placeholder-card p:last-child {
            margin-bottom: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .comparison-card,
            .segment-application {
                padding: 1.5rem;
            }

            .card-header h3 {
                font-size: 1.3rem;
            }

            .segment-application h3 {
                font-size: 1.3rem;
            }

            .segment-application p {
                font-size: 1rem;
            }

            /* Ajuste específico para o badge MarTech no mobile */
            .comparison-card.martech-featured .card-header {
                margin-top: 1rem;
                padding-top: 0.5rem;
            }

            .comparison-card.martech-featured::before {
                top: -10px;
                font-size: 0.75rem;
                padding: 0.4rem 1.2rem;
            }
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--accent-red), #ff4757);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(238, 61, 68, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 3rem;
        }

        /* Dynamic content loading */
        .site-content {
            display: none;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
            pointer-events: none;
        }

        .site-content.loaded {
            display: block;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .loading-indicator {
            display: none;
            text-align: center;
            padding: 2rem;
            color: var(--text-gray);
        }

        .loading-indicator.show {
            display: block;
        }

        .loading-dots {
            display: inline-block;
            position: relative;
            width: 80px;
            height: 80px;
        }

        .loading-dots div {
            position: absolute;
            top: 33px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--accent-red);
            animation-timing-function: cubic-bezier(0, 1, 1, 0);
        }

        .loading-dots div:nth-child(1) {
            left: 8px;
            animation: loading-dots1 0.6s infinite;
        }

        .loading-dots div:nth-child(2) {
            left: 8px;
            animation: loading-dots2 0.6s infinite;
        }

        .loading-dots div:nth-child(3) {
            left: 32px;
            animation: loading-dots2 0.6s infinite;
        }

        .loading-dots div:nth-child(4) {
            left: 56px;
            animation: loading-dots3 0.6s infinite;
        }

        @keyframes loading-dots1 {
            0% { transform: scale(0); }
            100% { transform: scale(1); }
        }

        @keyframes loading-dots3 {
            0% { transform: scale(1); }
            100% { transform: scale(0); }
        }

        @keyframes loading-dots2 {
            0% { transform: translate(0, 0); }
            100% { transform: translate(24px, 0); }
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(238, 61, 68, 0.4);
        }

        /* Sections */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--text-light);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Pillars Section */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pillar-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-red), #ff6b7a);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .pillar-card:hover::before {
            transform: scaleX(1);
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-red);
            box-shadow: 0 20px 40px rgba(238, 61, 68, 0.2);
        }

        .pillar-icon {
            font-size: 3rem;
            color: var(--accent-red);
            margin-bottom: 1.5rem;
        }

        .pillar-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .pillar-card p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Features Section */
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: 15px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            border-color: var(--accent-red);
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--accent-red);
            min-width: 60px;
        }

        .feature-content h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .feature-content p {
            color: var(--text-gray);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(238, 61, 68, 0.1), rgba(3, 21, 31, 0.8));
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            margin: 5rem auto;
            border: 1px solid var(--border-color);
        }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        .cta-section p {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 3rem 2rem;
            border-top: 1px solid var(--border-color);
            background: rgba(3, 21, 31, 0.8);
        }

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

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav {
                padding: 1rem;
            }
            
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }
            
            .hero {
                padding: 0 1rem;
            }
            
            .section {
                padding: 3rem 1rem;
            }
            
            .pillars-grid {
                grid-template-columns: 1fr;
            }
            
            .features-container {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll Animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== MARKETING SECTION ===== */
        .marketing-section {
            padding: 100px 0;
            background: var(--primary-dark);
            position: relative;
        }

        .marketing-header {
            text-align: center;
            margin-bottom: 80px;
            padding: 0 20px;
        }

        .marketing-header h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .marketing-header h3 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 600;
            color: var(--accent-red);
            margin-bottom: 30px;
        }

        .marketing-subtitle {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .marketing-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .highlight {
            color: var(--accent-red);
            font-weight: 800;
        }

        /* Vender Mais - Business Types Grid (específico) */
        .marketing-section .business-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin-bottom: 100px;
            padding: 0 20px;
        }

        .marketing-section .business-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 35px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .marketing-section .business-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-red);
            box-shadow: 0 10px 30px rgba(238, 61, 68, 0.2);
        }

        /* Vender Mais - Business Card Headers (específico) */
        .marketing-section .business-card .card-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 2px solid var(--border-color);
        }

        .marketing-section .business-card .card-header > i {
            font-size: 2.5rem;
            color: var(--accent-red);
            flex-shrink: 0;
            width: 60px;
            text-align: center;
        }

        .marketing-section .business-card .card-header .header-content {
            flex-grow: 1;
        }

        .marketing-section .business-card .card-header .header-content h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0 0 5px 0;
            line-height: 1.2;
            color: var(--text-light);
            text-align: left !important;
        }

        .marketing-section .business-card .card-header .subtitle {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-secondary);
            display: block;
            opacity: 0.8;
            text-align: left !important;
        }

        /* Vender Mais - Features (específico) */
        .marketing-section .feature {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 25px;
            padding: 15px 0;
        }

        .marketing-section .feature .feature-icon {
            font-size: 1.4rem;
            color: var(--accent-red);
            flex-shrink: 0;
            margin-top: 3px;
            width: 24px;
            text-align: center;
        }

        .marketing-section .feature .feature-content {
            flex-grow: 1;
        }

        .marketing-section .feature .feature-content strong {
            color: var(--text-light);
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
            font-size: 1.05rem;
        }

        .marketing-section .feature .feature-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .marketing-section .result {
            background: rgba(238, 61, 68, 0.08);
            border: 1px solid rgba(238, 61, 68, 0.25);
            border-radius: 12px;
            padding: 18px 20px;
            margin-top: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .marketing-section .result .result-icon {
            font-size: 1.2rem;
            color: var(--accent-red);
            flex-shrink: 0;
        }

        .marketing-section .result span {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Vender Mais - How We Do Section (específico) */
        .marketing-section .how-we-do {
            margin-bottom: 80px;
            padding: 0 20px;
        }

        .marketing-section .how-we-do h3 {
            text-align: center;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 50px;
        }

        .marketing-section .how-we-do .subtitle {
            color: var(--text-secondary);
            font-weight: 400;
        }

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

        .marketing-section .step {
            text-align: center;
        }

        .marketing-section .step-number {
            width: 60px;
            height: 60px;
            background: var(--accent-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .marketing-section .step h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .marketing-section .step p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .marketing-section .objective {
            text-align: center;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            font-size: 1.1rem;
        }

        /* Vender Mais - Decision Section (específico) */
        .marketing-section .decision-section {
            margin-bottom: 80px;
            padding: 0 20px;
        }

        .marketing-section .decision-section h3 {
            text-align: center;
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 50px;
        }

        .marketing-section .options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .marketing-section .option {
            padding: 30px;
            border-radius: 16px;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .marketing-section .option-1 {
            background: rgba(255, 255, 255, 0.02);
        }

        .marketing-section .option-1:hover {
            border-color: rgba(255, 100, 100, 0.5);
        }

        .marketing-section .option-2 {
            background: rgba(238, 61, 68, 0.05);
            border-color: var(--accent-red);
        }

        .marketing-section .option-2:hover {
            background: rgba(238, 61, 68, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(238, 61, 68, 0.2);
        }

        .marketing-section .option h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-light);
        }

        .marketing-section .option p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* CTA Section Overrides */
        .marketing-section .cta-section {
            background: var(--card-bg);
            border: 2px solid var(--accent-red);
            border-radius: 20px;
            padding: 50px 30px;
            margin: 0 20px;
            position: relative;
            overflow: hidden;
        }

        .marketing-section .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(238, 61, 68, 0.1) 50%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
            pointer-events: none;
        }

        /* Vender Mais - Countdown (específico) */
        .marketing-section .countdown-container {
            margin-bottom: 30px;
        }

        .marketing-section .countdown-container h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--text-light);
            line-height: 1.4;
            text-align: center;
        }

        .marketing-section .countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .marketing-section .time-unit {
            background: var(--accent-red);
            color: white;
            padding: 15px 20px;
            border-radius: 12px;
            min-width: 80px;
            text-align: center;
        }

        .marketing-section .time-unit span {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }

        .marketing-section .time-unit label {
            font-size: 0.8rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .marketing-section .separator {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-red);
        }

        .marketing-section .cta-button {
            background: linear-gradient(135deg, var(--accent-red), #ff4757);
            color: white;
            border: none;
            padding: 20px 40px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            box-shadow: 0 5px 20px rgba(238, 61, 68, 0.3);
        }

        .marketing-section .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(238, 61, 68, 0.5);
        }

        /* Registration Modal */
        .registration-modal {
            background: var(--primary-dark);
            border: 2px solid var(--accent-red);
            border-radius: 20px;
            max-width: 600px;
            width: 95%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
        }

        .registration-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .registration-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-light);
        }

        .registration-header p {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .registration-form {
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-row:has(.form-group:only-child) {
            grid-template-columns: 1fr;
        }

        .form-group {
            position: relative;
        }

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

        .form-input {
            width: 100%;
            padding: 12px 16px;
            background: var(--card-bg);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-red);
            box-shadow: 0 0 0 3px rgba(238, 61, 68, 0.1);
        }

        .form-input:read-only {
            background: rgba(255, 255, 255, 0.02);
            color: var(--text-secondary);
        }

        .form-hint {
            display: block;
            margin-top: 5px;
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .registration-button {
            width: 100%;
            background: linear-gradient(135deg, var(--accent-red), #ff4757);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .registration-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(238, 61, 68, 0.3);
        }

        /* API Info */
        .api-info {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            margin-top: 30px;
        }

        .api-token h4 {
            color: var(--accent-red);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .api-token p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .token-display {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .token {
            font-family: 'Courier New', monospace;
            background: var(--accent-red);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
            flex: 1;
            min-width: 200px;
        }

        .copy-btn {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            padding: 8px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background: var(--accent-red);
            border-color: var(--accent-red);
        }

        .api-status {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .status-item {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Animations */
        @keyframes shimmer {
            0%, 100% {
                transform: translateX(-100%);
            }
            50% {
                transform: translateX(100%);
            }
        }

        /* Vender Mais - Mobile Responsive (específico) */
        @media (max-width: 768px) {
            .marketing-header {
                padding: 0 20px;
                margin-bottom: 60px;
            }
            
            .marketing-section .business-types {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 0 20px;
                margin-bottom: 60px;
            }
            
            .marketing-section .business-card {
                padding: 25px 20px;
                border-radius: 16px;
            }
            
            .marketing-section .business-card .card-header {
                gap: 15px;
                margin-bottom: 25px;
                padding-bottom: 20px;
                flex-direction: row;
                align-items: flex-start;
            }
            
            .marketing-section .business-card .card-header > i {
                font-size: 2rem;
                width: 50px;
                margin-top: 5px;
            }
            
            .marketing-section .business-card .card-header .header-content h4 {
                font-size: 1.25rem;
                line-height: 1.3;
                text-align: left !important;
            }
            
            .marketing-section .business-card .card-header .subtitle {
                font-size: 0.9rem;
                text-align: left !important;
            }
            
            .marketing-section .feature {
                gap: 15px;
                margin-bottom: 20px;
                padding: 12px 0;
            }
            
            .marketing-section .feature .feature-icon {
                font-size: 1.2rem;
                width: 20px;
            }
            
            .marketing-section .feature .feature-content strong {
                font-size: 1rem;
                margin-bottom: 6px;
            }
            
            .marketing-section .feature .feature-content p {
                font-size: 0.9rem;
                line-height: 1.5;
            }
            
            .marketing-section .result {
                padding: 15px 18px;
                margin-top: 20px;
                border-radius: 10px;
            }
            
            .marketing-section .result .result-icon {
                font-size: 1.1rem;
            }
            
            .marketing-section .result span {
                font-size: 0.9rem;
            }
            
            .marketing-section .how-we-do {
                padding: 0 20px;
                margin-bottom: 60px;
            }
            
            .marketing-section .decision-section {
                padding: 0 20px;
                margin-bottom: 60px;
            }
            
            .marketing-section .options {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .marketing-section .process-steps {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .marketing-section .cta-section {
                margin: 0 20px;
                padding: 40px 25px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .registration-modal {
                padding: 25px;
                width: 100%;
                max-width: 95%;
            }
            
            .marketing-section .countdown-container h4 {
                font-size: 1.1rem;
                margin-bottom: 20px;
                line-height: 1.3;
            }
            
            /* Password fields mobile adjustments */
            .password-input-container .form-input {
                padding-right: 45px; /* Smaller space on mobile */
            }
            
            .password-toggle {
                right: 10px;
                padding: 6px;
            }
            
            .password-requirements {
                margin-top: 6px;
            }
            
            .marketing-section .countdown {
                flex-direction: row;
                gap: 15px;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .marketing-section .time-unit {
                padding: 15px 18px;
                min-width: 100px;
                flex: 0 1 auto;
            }
        }
