 /* --- RESET E BASE --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            background: #000;
            color: #fff;
            overflow-x: hidden;
            font-family: "poppins", sans-serif;
            line-height: 1.6;
        }

        /* --- UTILITÁRIOS --- */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        img { max-width: 100%; height: auto; }

        .glass {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .glass:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.05);
        }

        h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.5px; color: #fff; }
        p { color: #aaa; font-weight: 300; }
        
        .text-gradient {
            background: linear-gradient(90deg, #fff, #777);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .badge {
            display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
            background: rgba(255,255,255,0.05); border-radius: 50px; font-size: 0.75rem;
            font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #fff;
            margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.15);
        }
        .badge-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; box-shadow: 0 0 10px rgba(255,255,255,0.8); }

        /* --- BOTÕES PREMIUM ELEGANTES (ESTILO FINAL) --- */
        .btn {
            padding: 16px 15px; border-radius: 50px; font-weight: 700; text-decoration: none;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer; border: none; font-size: 0.95rem;
            letter-spacing: 1px; text-transform: uppercase; position: relative; z-index: 1; overflow: hidden;
        }
        
        /* Novo Gradiente Premium Esmeralda Rico */
        .btn-primary, .step-btn, .btn-lux-full {
            background: linear-gradient(135deg, #198754 0%, #0e4b30 100%);
            color: #fff;
            box-shadow: 0 10px 30px rgba(14, 75, 48, 0.3);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Brilho sutil no hover */
        .btn-primary::before, .step-btn::before, .btn-lux-full::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
           
            transition: 0.5s; z-index: -1;
        }

        .btn-primary:hover, .step-btn:hover, .btn-lux-full:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(25, 135, 84, 0.4);
            background: linear-gradient(135deg, #20c997 0%, #146c43 100%);
        }
        .btn-primary:hover::before, .step-btn:hover::before, .btn-lux-full:hover::before {
            left: 100%;
        }

        /* Botão Secundário Branco */
        .btn-secondary, .btn-submit[style*="transparent"] {
            background: transparent !important; 
            color: #fff !important; 
            border: 1px solid rgba(255,255,255,0.5) !important;
        }
        .btn-secondary:hover, .btn-submit[style*="transparent"]:hover {
            border-color: #fff !important;
            background: rgba(255,255,255,0.08) !important;
            transform: translateY(-2px);
        }

        /* CORREÇÃO DE PADDING NOS CARDS */
        .s-plan .btn-submit:not([style*="transparent"]),
        .rotativo-price-card .btn-primary,
        .step-btn { /* Adicionado .step-btn aqui para corrigir o botão do card */
             background: linear-gradient(135deg, #198754 0%, #0e4b30 100%);
             color: #fff; border: 1px solid rgba(255,255,255,0.1); font-weight: 700; border-radius: 50px; 
             padding: 18px 24px !important; /* Padding forçado */
             width: 100%; cursor: pointer; transition: 0.3s;
             box-shadow: 0 10px 30px rgba(14, 75, 48, 0.3);
             margin-top: 20px; display: block; text-align: center;
        }
        .s-plan .btn-submit:not([style*="transparent"]):hover,
        .rotativo-price-card .btn-primary:hover,
        .step-btn:hover {
             background: linear-gradient(135deg, #20c997 0%, #146c43 100%);
             transform: translateY(-3px);
             box-shadow: 0 15px 40px rgba(25, 135, 84, 0.4);
        }


        /* --- NAVBAR --- */
        .nav {
            position: fixed; top: 0; width: 100%; z-index: 100;
            background: transparent; 
            border-bottom: 1px solid transparent;
            padding: 25px 0;
            transition: all 0.4s ease;
        }
        .nav.scrolled {
            background: rgba(0,0,0,0.85); 
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255,255,255,0.05); 
            padding: 15px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .nav-content { display: flex; justify-content: space-between; align-items: center; }
        .nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: #fff; }
        .nav-btn {
            background: #fff; color: #000; padding: 10px 28px; border-radius: 50px;
            font-weight: 400; font-size: 0.85rem; text-decoration: none; transition: 0.3s;
            text-transform: uppercase; letter-spacing: 1px;
        }
        .nav-btn:hover { box-shadow: 0 0 25px rgba(255,255,255,0.4); transform: translateY(-2px); }

        /* --- ANIMAÇÕES --- */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- HERO (100VH) --- */
        .hero {
            height: 100vh; display: flex; align-items: center; position: relative; 
            overflow: hidden; background: #000; padding-top: 0; 
        }
        .hero::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('images/hero.jpeg'); background-size: cover; background-position: center;
            filter: grayscale(100%) blur(6px) brightness(0.5); transform: scale(1.1); z-index: 0;
        }
        .hero::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0) 20%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,1) 100%);
            z-index: 1; pointer-events: none;
        }
        .hero-layout { 
            display: grid; grid-template-columns: 1fr 1fr; gap: 20px; 
            align-items: center; position: relative; z-index: 2; height: 100%;
        }
        .hero-content { padding-left: 20px; }
        .hero-content h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 20px; }
        .hero-content h1 span { color: #ccc; }
        .hero-content p { font-size: 1rem; max-width: 500px; }
        .hero-btns { display: flex; gap: 16px; margin-top: 32px; align-items: center; }
	

        .hero-visual { 
            position: relative; height: 100%; display: flex; align-items: center; 
            justify-content: center; transform: scale(1.3); transform-origin: center center;
        }
        .portal-gate { width: 500px; position: absolute; }
        .portal-card {
            position: absolute; background: rgba(20,20,20,0.9); padding: 20px; border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.5); width: 220px;
        }
        .pc-1 { top: 30%; left: -10%; z-index: 2; animation: float 7s ease-in-out infinite; }

        /* --- TICKER LOGOS --- */
        .ticker-container {
            position: absolute; bottom: 0; left: 0; width: 100%; 
            height: 100px;
            background: rgba(10,10,10,0.95); 
            border-top: 1px solid rgba(255,255,255,0.1); 
            z-index: 3; 
            backdrop-filter: blur(20px);
            display: flex;
        }
        
        .ticker-label-box {
            height: 100%;
            padding: 0 30px;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
            border-right: 1px solid rgba(255,255,255,0.2);
            box-shadow: 10px 0 30px rgba(0,0,0,0.8);
            flex-shrink: 0; 
        }
        
        .ticker-title {
            font-size: 0.85rem; 
            text-transform: uppercase; 
            letter-spacing: 2px;
            color: #fff; 
            font-weight: 700;
            white-space: nowrap;
        }

        .ticker-scroll-area {
            flex-grow: 1; 
            overflow: hidden;
            height: 100%;
            display: flex;
            align-items: center;
            position: relative;
        }

        .ticker-track {
            display: flex; 
            gap: 60px; 
            animation: scrollTicker 60s linear infinite; 
            align-items: center; 
            padding-left: 40px;
            width: max-content; 
        }

        .ticker-logo {
            height: 65px; 
            width: auto; 
            opacity: 1;
            filter: none;
            transition: 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-shrink: 0; 
        }
        
        .ticker-logo:hover { 
            transform: scale(1.15); 
            filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
        }
        
        @keyframes scrollTicker { 
            0% { transform: translateX(0); } 
            100% { transform: translateX(-50%); } 
        }

        /* --- SECTIONS COMMON --- */
        section { padding: 80px 0; position: relative; }
        .section-header { text-align: center; max-width: 800px; margin: 0 auto 50px; }
        .section-title { font-size: 3rem; margin-bottom: 15px; line-height: 1.1; }

        /* --- FEATURES (IPAD REALISTA) --- */
        .features { position: relative; z-index: 2; background: #000; }
        .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        
        .features-visual { 
            position: relative; 
            display: flex; 
            justify-content: center;
        }
        
        /* ESTILO IPAD REALISTA E ELEGANTE */
        .ipad-device {
            width: 100%;
            max-width: 700px;
            height: auto;
            border-radius: 36px;
            box-shadow: 
                inset 0 0 0 2px #2a2a2a,
                inset 0 0 0 6px #111,
                0 10px 30px rgba(0,0,0,0.5); 
            background: #0a0a0a;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transform: translateY(0);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            animation: floatIpad 7s ease-in-out infinite;
            padding: 12px;
        }
        
        .ipad-device:hover {
            box-shadow: 
                inset 0 0 0 2px #333,
                inset 0 0 0 6px #111,
                0 20px 50px rgba(0,0,0,0.6);
        }
        
        @keyframes floatIpad {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .ipad-screen { 
            width: 100%; 
            position: relative; 
            background: #000; 
            border-radius: 24px;
            overflow: hidden; 
            line-height: 0;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
            border: 1px solid #222;
        }

        /* Reflexo sutil e elegante */
        .ipad-reflection {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(120deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 50%, transparent 50%);
            pointer-events: none; z-index: 10;
            border-radius: 24px;
        }
        .ipad-camera {
            position: absolute; top: 50%; left: 6px; transform: translateY(-50%);
            width: 8px; height: 8px; background: #000; border-radius: 50%; z-index: 20;
            border: 2px solid #222;
        }
        .ipad-camera::after {
            content:''; position: absolute; top: 1px; left: 1px; width: 3px; height: 3px; background: #333; border-radius: 50%;
        }

        /* Classe para a imagem invisível que define o tamanho */
        .spacer-img {
            position: relative;
            width: 100%;
            height: auto;
            visibility: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .carousel-img {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
            object-fit: cover; /* Cobre a área definida pelo spacer */
            opacity: 0; animation: slideShow 16s infinite;
            z-index: 2;
        }
        .carousel-img:nth-child(2) { animation-delay: 0s; } /* Ajustado indices por conta do spacer */
        .carousel-img:nth-child(3) { animation-delay: 4s; }
        .carousel-img:nth-child(4) { animation-delay: 8s; }
        .carousel-img:nth-child(5) { animation-delay: 12s; }
        
        @keyframes slideShow { 0% { opacity: 0; } 5% { opacity: 1; } 25% { opacity: 1; } 30% { opacity: 0; } 100% { opacity: 0; } }
        
        .gif-glow-spot {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 90%; height: 90%; background: rgba(255,255,255,0.05); filter: blur(150px); z-index: -1; border-radius: 50%;
        }

        /* --- SOLUTIONS --- */
        .solutions {
            position: relative;
            
            border-top: none; padding: 100px 0; 
        }
        .solutions::before {
            content: ''; position: absolute; inset: 0;
            background: rgba(0,0,0,0.85); backdrop-filter: grayscale(100%) contrast(1.2); z-index: 0;
        }
        .solutions::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 150px;
            background: linear-gradient(to bottom, #000 0%, transparent 100%); z-index: 1; pointer-events: none;
        }
        .solutions .container { position: relative; z-index: 3; }
        .solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
        .solution-card {
            padding: 40px 30px; transition: 0.4s; height: 100%; display: flex; flex-direction: column; align-items: center; text-align: center;
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.15);
        }
        .solution-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
        .solution-icon { font-size: 2rem; margin-bottom: 20px; color: #fff; }

        /* --- SUPPLIERS LIST --- */
        .suppliers-section { position: relative; padding: 100px 0; overflow: hidden; background: #000; }
        .suppliers-section::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('assets/images/predio.jpg'); background-size: cover; background-position: center;
            filter: grayscale(100%) blur(6px) brightness(0.4); z-index: 0;
        }
        .suppliers-section::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, #000 100%); z-index: 1; pointer-events: none;
        }
        .suppliers-section .container { position: relative; z-index: 2; }
        .suppliers-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        
        /* UI da Busca */
        .search-ui-mockup {  border-radius: 12px; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
        .search-bar-fake { width: 100%; height: 50px; background: rgba(255,255,255,0.05); border-radius: 8px; display: flex; align-items: center; padding: 0 15px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.1); }
        .search-text { font-family: monospace; color: #fff; font-size: 1rem; border-right: 2px solid rgba(255,255,255,0.5); white-space: nowrap; overflow: hidden; width: 0; animation: typing 2s steps(8) 1s forwards, blink .5s step-end infinite alternate; }
        .results-list { display: flex; flex-direction: column; gap: 10px; }
        .result-card-fake { display: flex; align-items: center; gap: 15px; padding: 12px; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); opacity: 0; transform: translateY(10px); animation: popIn 0.5s ease forwards; }
        .rc-img { width: 40px; height: 40px; background: #333; border-radius: 50%; }
        .rc-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
        .rc-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; }
        .res-1 { animation-delay: 3.2s; } .res-2 { animation-delay: 3.4s; } .res-3 { animation-delay: 3.6s; }
        @keyframes typing { from { width: 0 } to { width: 85px; border-color: transparent; } } 
        @keyframes blink { 50% { border-color: transparent } }
        @keyframes popIn { to { opacity: 1; transform: translateY(0); } }
        .supplier-plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
        .s-plan { border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; background: rgba(255,255,255,0.02); transition: 0.3s; }
        .s-plan.recommended { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); position: relative; }
        .s-tag { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: #fff; color: #000; font-size: 0.65rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; }

        /* --- SCROLL SHOWCASE (CORRIGIDO) --- */
        .scroll-showcase-section { background: #000; position: relative; }
        .sticky-container { max-width: 1400px; margin: 0 auto; display: flex; position: relative; }
        .showcase-intro { text-align: center; padding: 60px 20px 0; max-width: 800px; margin: 0 auto 30px; }
        
        .visual-col { 
            width: 55%; 
            height: 100vh; 
            position: sticky; 
            top: 0; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            padding: 40px; 
        }

        /* Notebook CSS Puro */
        .laptop-mockup {
            width: 100%;
            max-width: 800px;
            perspective: 2000px;
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }
        .laptop-mockup:hover { transform: translateY(-10px) rotateX(2deg); }
        
        .laptop-screen-frame {
            background: #111;
            border-radius: 16px 16px 0 0;
            border: 2px solid #333;
            box-shadow: 0 0 0 2px #000;
            position: relative;
            padding: 2.5%;
            aspect-ratio: 16/10;
        }
        
        .laptop-display {
            background: #000;
            width: 100%;
            height: 100%;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            border: 1px solid #333;
        }
        
        .laptop-img {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
            object-fit: cover; opacity: 0; transition: opacity 0.6s ease;
        }
        .laptop-img.active { opacity: 1; }

        .laptop-webcam {
            position: absolute; top: 1.5%; left: 50%; transform: translateX(-50%);
            width: 6px; height: 6px; background: #444; border-radius: 50%; z-index: 5;
            box-shadow: 0 0 0 1px #222;
        }

        .laptop-base {
            background: linear-gradient(to bottom, #222, #111);
            height: 18px;
            border-radius: 0 0 20px 20px;
            width: 108%;
            margin-left: -4%;
            position: relative;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            border-top: 1px solid #333;
        }
        .laptop-base::after {
            content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
            width: 15%; height: 6px; background: #333; border-radius: 0 0 6px 6px;
        }

        /* Coluna de Texto (Steps) Estilizada - CORRIGIDA */
        .text-col { width: 45%; position: relative; z-index: 2; }
        .step { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 40px 60px; box-sizing: border-box; }
        
        .step-card { 
            background: rgba(15, 15, 15, 0.4); 
            backdrop-filter: blur(10px); 
           
            padding: 50px 40px; 
            border-radius: 12px; 
            transition: all 0.5s ease; 
            position: relative; 
            opacity: 0.4; 
            transform: scale(0.95);
        }

        /* Estado ATIVO do Step Card - CORRIGIDO (sem borda/sombra verde neon) */
        .step.active .step-card {
            opacity: 1;
            transform: scale(1);
            background: rgba(20, 20, 20, 0.9);
            border-color: rgba(255, 255, 255, 0.2); /* Borda branca sutil */
            box-shadow: 0 20px 40px rgba(0,0,0,0.4); /* Sombra neutra */
        }
        
        .step.active .step-title {
            /* Mantém o título com gradiente verde para destaque interno */
            background: linear-gradient(90deg, #4CAF50, #81c784);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .step-number { position: absolute; right: 20px; top: 10px; font-size: 6rem; font-weight: 800; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; }
        .step-badge { background: rgba(76, 175, 80, 0.1); color: #4CAF50; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 6px 12px; border-radius: 6px; font-size: 0.75rem; display: inline-block; margin-bottom: 20px; border: 1px solid rgba(76, 175, 80, 0.2); }
        .step-title { font-size: 2.8rem; margin-bottom: 15px; line-height: 1.1; font-weight: 700; transition: 0.3s; color: #fff; }
        .step-price { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 10px; display: flex; align-items: baseline; gap: 5px; }
        .step-price small { font-size: 1rem; color: #666; font-weight: 400; }
        .step-desc { color: #ccc; font-size: 1.05rem; margin-bottom: 35px; line-height: 1.7; }

        /* --- TIMELINE --- */
        .timeline { padding: 80px 0; position: relative; }
        .timeline::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('assets/images/predio2.jpg'); background-size: cover; background-position: center;
            filter: grayscale(100%) blur(6px) brightness(0.4); z-index: 0;
        }
        .timeline::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, #000 100%); z-index: 1; pointer-events: none;
        }
        .timeline .container { position: relative; z-index: 2; }
        .timeline-track { position: relative; max-width: 1000px; margin: 0 auto; }
        .center-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent); transform: translateX(-50%); }
        .tl-item { display: flex; align-items: center; margin-bottom: 80px; position: relative; width: 100%; }
        .tl-content { width: 50%; padding: 0 40px; position: relative; }
        .tl-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 25px; border-radius: 12px; backdrop-filter: blur(10px); transition: 0.3s; }
        .tl-card:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-5px); }
        .tl-dot { width: 16px; height: 16px; background: #000; border: 3px solid #fff; border-radius: 50%; position: absolute; left: 50%; transform: translateX(-50%); z-index: 2; box-shadow: 0 0 15px rgba(255,255,255,0.5); }
        .tl-item:nth-child(odd) { justify-content: flex-start; text-align: right; } .tl-item:nth-child(odd) .tl-content { margin-right: 50%; }
        .tl-item:nth-child(even) { justify-content: flex-end; text-align: left; } .tl-item:nth-child(even) .tl-content { margin-left: 50%; }
        .tl-date { font-weight: 800; font-size: 0.9rem; letter-spacing: 2px; color: #fff; display: block; margin-bottom: 10px; }
        .urgency-luxury { padding: 100px 0; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); background: linear-gradient(to bottom, #020202, #080808); }
        .urgency-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
        .urgency-left { position: relative; }
        .urgency-label { display: inline-block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; color: #aaa; margin-bottom: 30px; padding: 8px 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; }
        .urgency-title-huge { font-size: 5.5rem; line-height: 1.05; padding-bottom: 15px; letter-spacing: -2px; margin-bottom: 20px; background: linear-gradient(45deg, #fff, #888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .urgency-right { padding-left: 80px; display: flex; flex-direction: column; gap: 40px; }
        .lux-item { display: flex; align-items: flex-start; gap: 25px; }
        .lux-icon-box { flex-shrink: 0; width: 50px; height: 50px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; box-shadow: 0 0 20px rgba(255,255,255,0.05); }
        .lux-text h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
        .lux-text p { font-size: 0.95rem; margin: 0; color: #999; }
        .btn-lux-full { width: 100%; padding: 22px; background: #fff; color: #000; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 10px; }
        .btn-lux-full:hover { background: #e6e6e6; letter-spacing: 3px; }
        .contact-strip { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 60px; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
        .contact-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 15px 30px; border-radius: 50px; display: flex; align-items: center; gap: 10px; color: #ccc; text-decoration: none; transition: 0.3s; font-size: 0.9rem; }
        .contact-box:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; transform: translateY(-3px); }
        .contact-box i { font-size: 1.1rem; }
        .mini-footer { text-align: center; color: #444; font-size: 0.8rem; padding: 30px 0; border-top: 1px solid #111; margin-top: 0; background: #020202; }

        /* --- AJUSTES MOBILE (RESPONSIVIDADE) --- */
        @media (max-width: 900px) {
            section { padding: 50px 0; }
            .hero { height: auto; min-height: 100vh; padding-top: 80px; }
            .hero-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .hero-content h1 { font-size: 2.5rem; margin-bottom: 15px; }
            .hero-content p { font-size: 1rem; }
            .hero-btns { justify-content: center; flex-direction: column; gap: 10px; }
            .hero-visual { transform: scale(1); order: -1; }
            
            /* Ticker Mobile */
            .ticker-container { height: auto; flex-direction: column; padding: 0; }
            .ticker-label-box { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 10px; height: 40px; }
            .ticker-title { margin: 0; font-size: 0.8rem; }
            .ticker-scroll-area { width: 100%; padding: 10px 0; height: 90px; } 
            .ticker-track { gap: 40px; padding-left: 20px; }

            /* Features Tablet Mobile */
            .features-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .ipad-device { transform: none !important; max-width: 100%; }
            
            /* Restante Mobile */
            .contact-grid, .urgency-split, .suppliers-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .urgency-right { padding-left: 0; border-left: none; border-top: 2px solid rgba(255,255,255,0.1); padding-top: 40px; }
            .urgency-title-huge { font-size: 3rem; line-height: 1.1; }
            .center-line { left: 20px; transform: none; }
            .tl-item { flex-direction: column !important; align-items: flex-start !important; text-align: left !important; margin-left: 40px; width: auto; }
            .tl-content { width: 100%; margin: 0 !important; padding: 0; }
            .tl-dot { left: 20px; transform: translateX(-50%); }
            .suppliers-spotlight { display: none; }
            .supplier-plans-grid { grid-template-columns: 1fr; }
            .search-ui-mockup { margin-top: 40px; }
            .integrated-carousel { transform: none !important; }
            .sticky-container { flex-direction: column; }
            .visual-col { position: relative; width: 100%; height: 300px; border-left: none; border-bottom: 1px solid #222; padding: 20px; }
            .text-col { width: 100%; }
            .step { min-height: auto; padding: 60px 20px; }
            .step-card { padding: 30px; }
            .step-title { font-size: 2rem; }
            .contact-strip { flex-direction: column; gap: 15px; }
            .contact-box { justify-content: center; width: 100%; }

            /* Ajuste Mobile para Logo Rotativo (volta para coluna única) */
            .rotativo-grid {
                grid-template-columns: 1fr !important; /* Força uma coluna no mobile */
                gap: 50px;
            }
            .rotativo-content {
                order: 2; /* Texto vai para baixo no mobile */
                align-items: center; text-align: center;
            }
            .rotativo-visual {
                order: 1; /* iPad vai para cima no mobile */
            }
            .rotativo-price-card {
                width: 100%;
                max-width: 100%;
            }
        }
        
        /* --- LOGO ROTATIVO SECTION (RESTAURADO PARA 2 COLUNAS NO DESKTOP) --- */
        .logo-rotativo-section {
            padding: 120px 0;
            background: linear-gradient(to bottom, #000 0%, #080808 50%, #000 100%);
            border-top: 1px solid rgba(255,255,255,0.05);
            position: relative;
        }
        
        /* Grid Layout Restaurado */
        .rotativo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr; /* 2 colunas: Texto | iPad */
            gap: 80px;
            align-items: center;
            text-align: left; /* Alinhamento padrão à esquerda */
        }

        .rotativo-content {
            /* Remove alinhamento centralizado que foi aplicado na versão anterior */
            display: block; 
            max-width: none;
        }

        /* Lista de Benefícios */
        .rotativo-benefits {
            list-style: none;
            margin: 40px 0;
            /* Remove display inline-block centralizado */
            display: block; 
        }
        .rotativo-benefits li {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #ddd;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .rotativo-benefits li i {
            color: #4CAF50;
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
        }

        /* Card de Preço Especial */
        .rotativo-price-card {
            background: rgba(76, 175, 80, 0.04);
            
            padding: 30px; /* Padding reduzido de volta */
            border-radius: 16px;
            backdrop-filter: blur(10px);
            max-width: 450px; /* Largura máxima restaurada */
            box-shadow: 0 10px 40px rgba(0,0,0,0.5);
        }
        .rpc-header {
            text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px;
            color: #4CAF50; font-weight: 800; margin-bottom: 10px;
        }
        .rpc-value {
            font-size: 3rem; /* Tamanho da fonte restaurado */
            font-weight: 700; line-height: 1; color: #fff; margin-bottom: 5px;
        }
        .rpc-value small { font-size: 1rem; font-weight: 400; color: #888; }
        .rpc-note { font-size: 0.85rem; color: #666; margin-bottom: 0; }