/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-black: #0A0B0D;
    --color-gray-dark: #1C1E22;
    --color-blue: #1DAEFF;
    --color-violet: #7B5CFF;
    --color-fuchsia: #E14EFF;
    --color-gray-light: #D6D9DD;
    --color-green: #00FFC6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(90deg, #E14EFF, #7B5CFF, #1DAEFF);
    
    /* Typography */
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-gray-light);
    background-color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ============================================
   CURSOR PERSONALIZADO
   ============================================ */

.cursor {
    width: 10px;
    height: 10px;
    border: 2px solid var(--color-blue);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(29, 174, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
}

body:hover .cursor {
    transform: scale(1.5);
}

body:hover .cursor-follower {
    transform: scale(1.2);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(29, 174, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.logo-accent {
    color: var(--color-blue);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--color-gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 15px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-gray-light);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
}

.hero-home-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-center {
    text-align: center;
    max-width: 800px;
}

.hero-home-title {
    font-family: var(--font-title);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    word-wrap: break-word;
}

.phase-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-gray-light);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-form-mini {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
}

.form-group-mini {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 100%;
}

.form-group-mini input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(28, 30, 34, 0.8);
    border: 1px solid rgba(29, 174, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.telefone-group {
    position: relative;
    width: 100%;
}

.telefone-group .iti {
    width: 100%;
    display: block;
    position: relative;
}

.telefone-group .iti__flag-container {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 2;
}

.telefone-group .iti__selected-flag {
    height: 100%;
    padding: 0 8px 0 15px;
    display: flex;
    align-items: center;
    z-index: 3;
}

.telefone-group .iti__selected-dial-code {
    margin-left: 5px;
    color: rgba(214, 217, 221, 0.8);
}

.telefone-group input {
    padding-left: 75px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.form-group-mini input:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 20px rgba(29, 174, 255, 0.3);
}

.form-group-mini input::placeholder {
    color: rgba(214, 217, 221, 0.5);
}

.cta-button-mini {
    padding: 15px 40px;
    background: linear-gradient(90deg, #1DAEFF, #7B5CFF);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.cta-button-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 174, 255, 0.4);
}

.cta-button-secondary {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--color-blue);
    border-radius: 8px;
    color: var(--color-blue);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--color-blue);
    color: var(--color-black);
    transform: translateY(-2px);
}

.hero-logos-footer {
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
}

.hero-logos-title {
    font-size: 14px;
    color: rgba(214, 217, 221, 0.6);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-logos-footer {
    overflow: hidden;
    position: relative;
}

.hero-logos-carousel {
    display: flex;
    gap: 40px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}

.logos-clone {
    display: flex;
    gap: 40px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
}

.logo-cliente {
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    font-weight: 500;
    padding: 10px 20px;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.logo-cliente:hover {
    opacity: 0.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 30px;
    background: var(--color-blue);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* ============================================
   MÉTODO SECTION - DIAGRAMA VISUAL
   ============================================ */

.metodo-phase4 {
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(29, 174, 255, 0.05), var(--color-black));
    position: relative;
}

.metodo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.metodo-title {
    font-family: var(--font-title);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.metodo-subtitle {
    font-family: var(--font-title);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    color: var(--color-gray-light);
    text-align: center;
    margin-bottom: 15px;
}

.metodo-subtext {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(214, 217, 221, 0.7);
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline Horizontal Desktop */
.phases-timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 80px 0 60px;
    margin-bottom: 60px;
}

.timeline-line-horizontal {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 0;
    overflow: hidden;
}

.timeline-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        #1DAEFF 0%, 
        #7B5CFF 25%,
        #2336FF 50%,
        #E14EFF 75%,
        transparent 100%);
    filter: blur(8px);
}

.phase-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    transition: all 0.4s ease;
    min-height: 350px;
}

.phase-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(28, 30, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.phase-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.phase-node:hover .phase-circle::before {
    opacity: 1;
}

.phase-node[data-phase="1"] .phase-circle {
    border-color: rgba(29, 174, 255, 0.3);
}

.phase-node[data-phase="2"] .phase-circle {
    border-color: rgba(123, 92, 255, 0.3);
}

.phase-node[data-phase="3"] .phase-circle {
    border-color: rgba(35, 54, 255, 0.3);
}

.phase-node[data-phase="4"] .phase-circle {
    border-color: rgba(225, 78, 255, 0.3);
}

.phase-icon {
    font-size: 32px;
        transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(28, 30, 34, 0.9);
    position: relative;
    z-index: 1;
}

.phase-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    font-style: normal;
}

.phase-node[data-phase="1"] .phase-icon {
    color: #1DAEFF;
}

.phase-node[data-phase="2"] .phase-icon {
    color: #7B5CFF;
}

.phase-node[data-phase="3"] .phase-icon {
    color: #2336FF;
}

.phase-node[data-phase="4"] .phase-icon {
    color: #E14EFF;
}

.phase-number {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.phase-name {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.phase-keyword {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.phase-node[data-phase="1"] .phase-keyword {
    color: #1DAEFF;
}

.phase-node[data-phase="2"] .phase-keyword {
    color: #7B5CFF;
}

.phase-node[data-phase="3"] .phase-keyword {
    color: #2336FF;
}

.phase-node[data-phase="4"] .phase-keyword {
    color: #E14EFF;
}

.phase-impact {
    font-size: 15px;
    color: var(--color-gray-light);
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.phase-delivery-hover {
    font-size: 13px;
    
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.delivery-bullet {
    color: #33B5FF;
    font-weight: 600;
}

/* Hover Effects */
.phase-node:hover {
    transform: translateY(-10px);
}

.phase-node:hover .phase-circle {
    transform: scale(1.15);
    border-width: 3px;
    box-shadow: 0 0 30px currentColor;
}

.phase-node[data-phase="1"]:hover .phase-circle {
    border-color: #1DAEFF;
    box-shadow: 0 0 30px rgba(29, 174, 255, 0.6);
}

.phase-node[data-phase="2"]:hover .phase-circle {
    border-color: #7B5CFF;
    box-shadow: 0 0 30px rgba(123, 92, 255, 0.6);
}

.phase-node[data-phase="3"]:hover .phase-circle {
    border-color: #2336FF;
    box-shadow: 0 0 30px rgba(35, 54, 255, 0.6);
}

.phase-node[data-phase="4"]:hover .phase-circle {
    border-color: #E14EFF;
    box-shadow: 0 0 30px rgba(225, 78, 255, 0.6);
}

.phase-node:hover .phase-icon {
    transform: scale(1.1);
}

.phase-node[data-phase="1"]:hover .phase-icon {
    background: rgba(29, 174, 255, 0.2);
}

.phase-node[data-phase="2"]:hover .phase-icon {
    background: rgba(123, 92, 255, 0.2);
}

.phase-node[data-phase="3"]:hover .phase-icon {
    background: rgba(35, 54, 255, 0.2);
}

.phase-node[data-phase="4"]:hover .phase-icon {
    background: rgba(225, 78, 255, 0.2);
}

.phase-node:hover .phase-impact {
    opacity: 1;
    color: #fff;
}

.phase-node:hover .phase-delivery-hover {
    opacity: 1;
    max-height: 50px;
}

.phase-node:hover .phase-delivery-hover .delivery-bullet {
    color: currentColor;
}

.phase-node[data-phase="1"]:hover .phase-delivery-hover .delivery-bullet {
    color: #1DAEFF;
}

.phase-node[data-phase="2"]:hover .phase-delivery-hover .delivery-bullet {
    color: #7B5CFF;
}

.phase-node[data-phase="3"]:hover .phase-delivery-hover .delivery-bullet {
    color: #2336FF;
}

.phase-node[data-phase="4"]:hover .phase-delivery-hover .delivery-bullet {
    color: #E14EFF;
}

/* Timeline Vertical Mobile */
.phases-timeline-vertical {
    display: none;
    position: relative;
    padding-left: 40px;
    margin-bottom: 60px;
}

.timeline-line-vertical {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.12);
}

.phase-item-vertical {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.phase-circle-vertical {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(28, 30, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.phase-item-vertical[data-phase="1"] .phase-circle-vertical {
    border-color: rgba(29, 174, 255, 0.4);
    color: #1DAEFF;
}

.phase-item-vertical[data-phase="2"] .phase-circle-vertical {
    border-color: rgba(123, 92, 255, 0.4);
    color: #7B5CFF;
}

.phase-item-vertical[data-phase="3"] .phase-circle-vertical {
    border-color: rgba(35, 54, 255, 0.4);
    color: #2336FF;
}

.phase-item-vertical[data-phase="4"] .phase-circle-vertical {
    border-color: rgba(225, 78, 255, 0.4);
    color: #E14EFF;
}

.phase-content-vertical {
    flex: 1;
    padding-top: 5px;
}

.phase-content-vertical h3 {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.phase-impact-vertical {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.phase-delivery-vertical {
    font-size: 13px;
    color: rgba(214, 217, 221, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phase-delivery-vertical .delivery-bullet {
    color: #33B5FF;
}

.phase-item-vertical[data-phase="1"] .phase-delivery-vertical .delivery-bullet {
    color: #1DAEFF;
}

.phase-item-vertical[data-phase="2"] .phase-delivery-vertical .delivery-bullet {
    color: #7B5CFF;
}

.phase-item-vertical[data-phase="3"] .phase-delivery-vertical .delivery-bullet {
    color: #2336FF;
}

.phase-item-vertical[data-phase="4"] .phase-delivery-vertical .delivery-bullet {
    color: #E14EFF;
}

.metodo-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-gray-light);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.metodo-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.metodo-intro-text {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-gray-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.metodo-intro-highlight {
    font-size: clamp(18px, 2.5vw, 22px);
    color: #fff;
    font-weight: 600;
    margin: 25px 0;
    font-family: var(--font-title);
}

.phases-wrapper {
    position: relative;
    margin: 60px 0;
}

.phases-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 60px;
}

.timeline-line {
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        #1DAEFF 0%, 
        #1DAEFF 25%, 
        #7B5CFF 25%, 
        #7B5CFF 50%,
        #2336FF 50%,
        #2336FF 75%,
        #E14EFF 75%,
        #E14EFF 100%);
    z-index: 0;
    transform: scaleY(0);
    transform-origin: top;
    box-shadow: 0 0 10px rgba(29, 174, 255, 0.3);
}

.timeline-line.animated {
    transform: scaleY(1);
}

.phase-item {
    position: relative;
    z-index: 1;
}

.phase-connector {
    position: absolute;
    left: -35px;
    top: 30px;
    width: 20px;
    height: 2px;
    background: var(--color-blue);
    z-index: 2;
    box-shadow: 0 0 5px rgba(29, 174, 255, 0.5);
}

.phase-item[data-phase="1"] .phase-connector {
    background: #1DAEFF;
    box-shadow: 0 0 5px rgba(29, 174, 255, 0.5);
}

.phase-item[data-phase="2"] .phase-connector {
    background: #7B5CFF;
    box-shadow: 0 0 5px rgba(123, 92, 255, 0.5);
}

.phase-item[data-phase="3"] .phase-connector {
    background: #2336FF;
    box-shadow: 0 0 5px rgba(35, 54, 255, 0.5);
}

.phase-connector::before {
    content: '';
    position: absolute;
    right: -5px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--color-blue);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.phase-4-connector {
    background: #E14EFF;
    box-shadow: 0 0 5px rgba(225, 78, 255, 0.5);
}

.phase-4-connector::before {
    border-left-color: #E14EFF;
}

.phase-card {
    background: rgba(28, 30, 34, 0.8);
    border: 1px solid rgba(29, 174, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #1DAEFF;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.phase-item[data-phase="1"] .phase-card::before {
    background: #1DAEFF;
}

.phase-item[data-phase="2"] .phase-card::before {
    background: #7B5CFF;
}

.phase-item[data-phase="3"] .phase-card::before {
    background: #2336FF;
}

.phase-item[data-phase="4"] .phase-card::before {
    background: #E14EFF;
}

.phase-card:hover::before {
    transform: scaleY(1);
}

.phase-card:hover {
    background: rgba(28, 30, 34, 0.95);
    border-color: rgba(29, 174, 255, 0.4);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(29, 174, 255, 0.15);
}

.phase-item[data-phase="1"] .phase-card:hover {
    border-color: rgba(29, 174, 255, 0.4);
    box-shadow: 0 15px 40px rgba(29, 174, 255, 0.15);
}

.phase-item[data-phase="2"] .phase-card:hover {
    border-color: rgba(123, 92, 255, 0.4);
    box-shadow: 0 15px 40px rgba(123, 92, 255, 0.15);
}

.phase-item[data-phase="3"] .phase-card:hover {
    border-color: rgba(35, 54, 255, 0.4);
    box-shadow: 0 15px 40px rgba(35, 54, 255, 0.15);
}

.phase-item[data-phase="4"] .phase-card:hover {
    border-color: rgba(225, 78, 255, 0.4);
    box-shadow: 0 15px 40px rgba(225, 78, 255, 0.15);
}

.phase-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.phase-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.phase-icon {
    width: 60px;
    height: 60px;

    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1DAEFF;
    transition: all 0.3s ease;
}

.phase-item[data-phase="1"] .phase-icon {
    
    color: #1DAEFF;
}

.phase-item[data-phase="2"] .phase-icon {
  
    color: #7B5CFF;
}

.phase-item[data-phase="3"] .phase-icon {
   
    color: #2336FF;
}

.phase-item[data-phase="4"] .phase-icon {
   
    color: #E14EFF;
}

.phase-card:hover .phase-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px currentColor);
}

.phase-item[data-phase="1"] .phase-card:hover .phase-icon {
    background: rgba(29, 172, 255, 0);
}

.phase-item[data-phase="2"] .phase-card:hover .phase-icon {
    background: rgba(122, 92, 255, 0);
}

.phase-item[data-phase="3"] .phase-card:hover .phase-icon {
    background: rgba(35, 53, 255, 0);
}

.phase-item[data-phase="4"] .phase-card:hover .phase-icon {
    background: rgba(226, 78, 255, 0);
}

.phase-number {
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 700;
    color: #1DAEFF;
    background: rgba(29, 174, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.phase-item[data-phase="1"] .phase-number {
    color: #1DAEFF;
    background: rgba(29, 174, 255, 0.1);
}

.phase-item[data-phase="2"] .phase-number {
    color: #7B5CFF;
    background: rgba(123, 92, 255, 0.1);
}

.phase-item[data-phase="3"] .phase-number {
    color: #2336FF;
    background: rgba(35, 54, 255, 0.1);
}

.phase-item[data-phase="4"] .phase-number {
    color: #E14EFF;
    background: rgba(225, 78, 255, 0.1);
}

.phase-title-group {
    flex: 1;
}

.phase-card h3 {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.phase-subtitle {
    font-size: 14px;
    color: #1DAEFF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-item[data-phase="1"] .phase-subtitle {
    color: #1DAEFF;
}

.phase-item[data-phase="2"] .phase-subtitle {
    color: #7B5CFF;
}

.phase-item[data-phase="3"] .phase-subtitle {
    color: #2336FF;
}

.phase-item[data-phase="4"] .phase-subtitle {
    color: #E14EFF;
}

.phase-content-expanded {
    padding-left: 80px;
}


.phase-description {
    color: var(--color-gray-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.phase-quote {
    margin: 25px 0;
    padding: 20px;
    background: rgba(29, 174, 255, 0.08);
    border-left: 4px solid #1DAEFF;
    border-radius: 6px;
    position: relative;
}

.phase-item[data-phase="1"] .phase-quote {
    background: rgba(29, 174, 255, 0.08);
    border-left-color: #1DAEFF;
}

.phase-item[data-phase="2"] .phase-quote {
    background: rgba(123, 92, 255, 0.08);
    border-left-color: #7B5CFF;
}

.phase-item[data-phase="3"] .phase-quote {
    background: rgba(35, 54, 255, 0.08);
    border-left-color: #2336FF;
}

.phase-item[data-phase="4"] .phase-quote {
    background: rgba(225, 78, 255, 0.08);
    border-left-color: #E14EFF;
}

.phase-quote::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 48px;
    font-family: var(--font-title);
    color: #1DAEFF;
    opacity: 0.3;
    line-height: 1;
}

.phase-item[data-phase="1"] .phase-quote::before {
    color: #1DAEFF;
}

.phase-item[data-phase="2"] .phase-quote::before {
    color: #7B5CFF;
}

.phase-item[data-phase="3"] .phase-quote::before {
    color: #2336FF;
}

.phase-item[data-phase="4"] .phase-quote::before {
    color: #E14EFF;
}

.phase-quote p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
}


.phase-delivery {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(29, 174, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.phase-card:hover .phase-delivery {
    opacity: 1;
}

.phase-item[data-phase="1"] .phase-delivery {
    border-top-color: rgba(29, 174, 255, 0.15);
}

.phase-item[data-phase="2"] .phase-delivery {
    border-top-color: rgba(123, 92, 255, 0.15);
}

.phase-item[data-phase="3"] .phase-delivery {
    border-top-color: rgba(35, 54, 255, 0.15);
}

.phase-item[data-phase="4"] .phase-delivery {
    border-top-color: rgba(225, 78, 255, 0.15);
}

.delivery-label {
    font-size: 13px;
    font-style: italic;
    color: #33B5FF;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phase-card:hover .delivery-label {
    color: #1DAEFF;
}

.phase-item[data-phase="1"] .phase-card:hover .delivery-label {
    color: #1DAEFF;
}

.phase-item[data-phase="2"] .phase-card:hover .delivery-label {
    color: #7B5CFF;
}

.phase-item[data-phase="3"] .phase-card:hover .delivery-label {
    color: #2336FF;
}

.phase-item[data-phase="4"] .phase-card:hover .delivery-label {
    color: #E14EFF;
}

.delivery-text {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.7;
    padding-left: 15px;
    border-left: 2px solid rgba(51, 181, 255, 0.2);
}

.metodo-closing {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
}

.metodo-closing-title {
    font-family: var(--font-title);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
}

.metodo-closing-title br {
    display: block;
    margin: 8px 0;
}

/* ============================================
   INSTITUCIONAL SECTION
   ============================================ */

.institucional {
    padding: 100px 20px;
    background: var(--color-black);
}

.institucional-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.institucional h2 {
    font-family: var(--font-title);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.institucional-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-gray-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.institucional-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.institucional-card {
    background: var(--color-gray-dark);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 174, 255, 0.1);
}

.institucional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 174, 255, 0.2);
    border-color: rgba(29, 174, 255, 0.3);
}

.icon-institucional {
    width: 80px;
    height: 80px;
    background: rgba(29, 174, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--color-blue);
}

.institucional-card h3 {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.institucional-card p {
    color: var(--color-gray-light);
    line-height: 1.8;
}

/* ============================================
   SERVIÇOS SECTION - GROWTH OS
   ============================================ */

.servicos-growth {
    padding: 120px 0;
    background: #0A0A0D;
    position: relative;
    overflow: hidden;
}

.servicos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.servicos-title {
    font-family: var(--font-title);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.servicos-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(214, 217, 221, 0.8);
    text-align: center;
    margin-bottom: 100px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

/* Layout Horizontal - Blocos */
.growth-module-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
    position: relative;
}

.growth-module-horizontal[data-module="1"] {
    background: linear-gradient(90deg, transparent 0%, rgba(29, 174, 255, 0.02) 50%, transparent 100%);
}

.growth-module-horizontal[data-module="2"] {
    background: linear-gradient(90deg, transparent 0%, rgba(108, 99, 255, 0.02) 50%, transparent 100%);
}

.growth-module-horizontal[data-module="3"] {
    background: linear-gradient(90deg, transparent 0%, rgba(29, 174, 255, 0.02) 50%, transparent 100%);
}

.growth-module-horizontal[data-module="4"] {
    background: linear-gradient(90deg, transparent 0%, rgba(225, 78, 255, 0.02) 50%, transparent 100%);
}

/* Texto à esquerda */
.module-text {
    max-width: 100%;
    padding-right: 40px;
}

.module-title {
    font-family: var(--font-title);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.module-subtitle {
    font-family: var(--font-title);
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 500;
    color: var(--color-blue);
    margin-bottom: 20px;
    line-height: 1.4;
}

.module-description {
    font-size: clamp(15px, 1.8vw, 17px);
    color: rgba(214, 217, 221, 0.7);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 20px;
}

.module-partner {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(29, 174, 255, 0.2);
}

.module-partner strong {
    color: var(--color-blue);
    font-weight: 600;
}

.module-partner a {
    color: var(--color-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.module-partner a:hover {
    color: var(--color-violet);
    text-decoration: underline;
}

.module-text .saiba-mais {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.module-text .saiba-mais::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1DAEFF, #7B5CFF);
    transition: width 0.3s ease;
}

.module-text .saiba-mais:hover {
    color: var(--color-blue);
}

.module-text .saiba-mais:hover::after {
    width: 100%;
}

/* Visual à direita */
.module-visual-right {
    position: relative;
    height: 550px;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual 1: Gestão de Tráfego - Slider */
.traffic-visual-container {
    position: relative;
    width: 100%;
    height: 550px;
    min-height: 550px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(29, 174, 255, 0.03), rgba(123, 92, 255, 0.03));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.traffic-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider-track {
    position: relative;
    width: 100%;
    height: calc(100% - 50px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slide-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: block;
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    z-index: 3;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--color-blue);
    width: 30px;
    border-radius: 5px;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Estilos antigos removidos - usando apenas imagens placehold.co */

/* Visual 2: SEO com IA - Busca Google */

.search-container {
    width: 100%;
    padding: 20px;
    position: relative;
}

.search-box-animated {
    margin-bottom: 20px;
}

.search-input {
    background: rgba(28, 30, 34, 0.8);
    border: 1px solid rgba(29, 174, 255, 0.3);
    border-radius: 24px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
}

.search-text {
    color: var(--color-gray-light);
    font-size: 14px;
    font-family: var(--font-body);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-item {
    background: rgba(28, 30, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px;
    font-size: 13px;
    color: rgba(214, 217, 221, 0.6);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.result-highlight {
    background: rgba(29, 174, 255, 0.1);
    border-color: rgba(29, 174, 255, 0.3);
}

.result-title {
    color: #1DAEFF;
    font-weight: 600;
    margin-bottom: 4px;
}

.result-url {
    color: var(--color-green);
    font-size: 12px;
    margin-bottom: 4px;
}

.result-desc {
    color: var(--color-gray-light);
    font-size: 12px;
}

.semantic-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    pointer-events: none;
}

.network-line {
    position: absolute;
    height: 1px;
    background: rgba(29, 174, 255, 0.2);
    transform-origin: left center;
}

.network-line:nth-child(1) {
    top: 30%;
    left: 20%;
    width: 60px;
    transform: rotate(15deg);
}

.network-line:nth-child(2) {
    top: 50%;
    right: 25%;
    width: 50px;
    transform: rotate(-20deg);
}

.network-line:nth-child(3) {
    bottom: 30%;
    left: 30%;
    width: 70px;
    transform: rotate(10deg);
}

.network-node {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(29, 174, 255, 0.6);
    border-radius: 50%;
}

.network-node:nth-child(4) {
    top: 25%;
    left: 15%;
}

.network-node:nth-child(5) {
    top: 45%;
    right: 20%;
}

.network-node:nth-child(6) {
    bottom: 35%;
    left: 25%;
}

.network-node:nth-child(7) {
    bottom: 25%;
    right: 15%;
}

/* Visual 3: IA Verticalizada - Chat Interface */

.ai-chat-container {
    width: 100%;
    height: 100%;
    background: rgba(28, 30, 34, 0.95);
    border: 1px solid rgba(123, 92, 255, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: rgba(123, 92, 255, 0.1);
    padding: 12px 15px;
    border-bottom: 1px solid rgba(123, 92, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-violet);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(214, 217, 221, 0.6);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    box-shadow: 0 0 6px var(--color-green);
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    animation: messageSlideIn 0.4s ease forwards;
}

@keyframes messageSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.ai-avatar {
    background: linear-gradient(135deg, #7B5CFF, #1DAEFF);
    color: #fff;
}

.user-avatar {
    background: rgba(29, 174, 255, 0.2);
    color: var(--color-blue);
    border: 1px solid rgba(29, 174, 255, 0.3);
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-text {
    background: rgba(123, 92, 255, 0.1);
    border: 1px solid rgba(123, 92, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 12px;
    color: rgba(214, 217, 221, 0.9);
    line-height: 1.5;
    word-wrap: break-word;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-text {
    background: rgba(29, 174, 255, 0.1);
    border-color: rgba(29, 174, 255, 0.2);
}

.ai-message .message-text {
    background: rgba(123, 92, 255, 0.1);
    border-color: rgba(123, 92, 255, 0.2);
}

.chat-input-container {
    padding: 12px 15px;
    border-top: 1px solid rgba(123, 92, 255, 0.2);
    background: rgba(18, 19, 23, 0.5);
}

.chat-input {
    background: rgba(28, 30, 34, 0.8);
    border: 1px solid rgba(123, 92, 255, 0.3);
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 12px;
    color: rgba(214, 217, 221, 0.9);
    min-height: 20px;
    display: flex;
    align-items: center;
}

.typing-indicator {
    color: rgba(214, 217, 221, 0.9);
}

.cursor-blink {
    color: var(--color-blue);
    animation: cursorBlink 1s infinite;
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Visual 4: Sistemas Integrados - Blueprint Workflow */
.blueprint-diagram {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px;
    
    border-radius: 8px;
    overflow: hidden;
}

.workflow-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.workflow-svg line {
    stroke: rgba(225, 78, 255, 0.3);
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1s ease;
}

.workflow-svg line.animated {
    stroke-dashoffset: 0;
    stroke: rgba(225, 78, 255, 0.6);
    filter: drop-shadow(0 0 4px rgba(225, 78, 255, 0.5));
}

.workflow-svg .data-particle {
    filter: url(#glow);
    animation: particlePulse 1.5s ease-in-out infinite;
}

@keyframes particlePulse {
    0%, 100% {
        opacity: 0.8;
        r: 4;
    }
    50% {
        opacity: 1;
        r: 5;
    }
}

.workflow-node {
    position: absolute;
    background: rgba(28, 30, 34, 0.95);
    border: 2px solid rgba(225, 78, 255, 0.3);
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    width: 110px;
    opacity: 0;
    transform: scale(0.8) translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 10;
    cursor: default;
    white-space: nowrap;
    box-sizing: border-box;
}

.workflow-node.visible {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
    border-color: rgba(225, 78, 255, 0.6);
    box-shadow: 0 0 15px rgba(225, 78, 255, 0.3);
}

.workflow-node.active {
    animation: nodePulse 2s ease-in-out infinite;
    border-color: rgba(225, 78, 255, 1);
    box-shadow: 0 0 20px rgba(225, 78, 255, 0.6);
}

@keyframes nodePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(225, 78, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(225, 78, 255, 0.9);
    }
}

.node-icon {
    font-size: 22px;
    margin-bottom: 4px;
    display: block;
    line-height: 1;
}

.node-label {
    font-size: 11px;
    font-weight: 600;
    color: #E14EFF;
    font-family: var(--font-body);
    line-height: 1.2;
}

/* Posicionamento dos nós - Desktop */
.node-website {
    top: 30%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.node-analytics {
    top: 15%;
    left: 30%;
    transform: translate(-50%, -50%);
}

.node-search-console {
    top: 30%;
    left: 30%;
    transform: translate(-50%, -50%);
}

.node-crm {
    top: 45%;
    left: 30%;
    transform: translate(-50%, -50%);
}

.node-ai {
    top: 30%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.node-dashboard {
    top: 30%;
    left: 74%;
    transform: translate(-50%, -50%);
}

.node-relatorios {
    top: 70%;
    left: 60%;
    transform: translate(-50%, -50%);
}

.node-chat {
    top: 70%;
    left: 74%;
    transform: translate(-50%, -50%);
}

.node-whatsapp {
    top: 70%;
    left: 88%;
    transform: translate(-50%, -50%);
}

/* Mobile - Layout vertical */
@media (max-width: 768px) {
    .module-visual-right {
        margin-top: 40px;
    }
    
    .blueprint-diagram {
        padding: 20px;
        min-height: 700px;
        margin-top: 20px;
    }
    
    .workflow-node {
        width: 90px;
        padding: 8px 10px;
    }
    
    .node-icon {
        font-size: 18px;
        margin-bottom: 3px;
    }
    
    .node-label {
        font-size: 10px;
    }
    
    .node-website {
        top: 8%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .node-analytics {
        top: 20%;
        left: 25%;
        transform: translate(-50%, -50%);
    }
    
    .node-search-console {
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .node-crm {
        top: 20%;
        left: 75%;
        transform: translate(-50%, -50%);
    }
    
    .node-ai {
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .node-dashboard {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .node-relatorios {
        top: 68%;
        left: 25%;
        transform: translate(-50%, -50%);
    }
    
    .node-chat {
        top: 68%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .node-whatsapp {
        top: 68%;
        left: 75%;
        transform: translate(-50%, -50%);
    }
}

.growth-os-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
}

.growth-cta-text {
    font-size: 18px;
    color: var(--color-gray-light);
    margin-bottom: 25px;
    font-weight: 500;
}

/* Responsive Growth OS */
@media (max-width: 968px) {
    .growth-module-horizontal {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }
    
    .module-text {
        max-width: 100%;
        text-align: center;
    }
    
    .module-visual-right {
        height: 450px;
        min-height: 450px;
    }
    
    .ai-chat-container {
        height: 100%;
    }
    
    .traffic-visual-container {
        height: 450px;
        min-height: 450px;
    }
    
    .slide-item {
        width: 100%;
        height: 100%;
    }
    
    .slider-dots {
        margin-top: 15px;
    }
    
    
    .window-1 {
        grid-column: 1;
        grid-row: 1;
    }
    
    .window-2 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .window-3 {
        grid-column: 1;
        grid-row: 3;
    }
    
    .blueprint-diagram {
        flex-direction: column;
        align-items: center;
    }
    
    .blueprint-connector {
        width: 2px;
        height: 20px;
        transform: rotate(90deg);
    }
    
    .blueprint-connector::after {
        top: -5px;
        right: -3px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid rgba(225, 78, 255, 0.4);
        border-bottom: none;
    }
    
    .data-flow {
        display: none;
    }
    
    .growth-os-cta {
        padding: 40px 20px;
    }
    
    .growth-cta-text {
        font-size: 16px;
    }
    
    .servicos-container {
        padding: 0 20px;
    }
    
    /* Ajustes para módulo de tráfego */
    .traffic-visual-container {
        height: 400px;
        min-height: 400px;
    }
    
    .slide-item {
        width: 100%;
        height: 100%;
    }
    
    .slider-dots {
        margin-top: 10px;
        gap: 8px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dots .dot.active {
        width: 24px;
    }
    
    .performance-card {
        padding: 12px 14px;
    }
    
    .metric-label {
        font-size: 9px;
    }
    
    .metric-value {
        font-size: 20px;
    }
    
    /* Estilos antigos removidos - usando slider */
    
    .data-network-bg {
        opacity: 0.3;
    }
}

/* ============================================
   RESULTADOS SECTION
   ============================================ */

/* Seção Nichos - Carrossel Minimalista */
.nichos-phase4 {
    padding: 80px 20px;
    background: var(--color-black);
    overflow: hidden;
}

.nichos-container {
    max-width: 1400px;
    margin: 0 auto;
}

.nichos-phase4 h2 {
    font-family: var(--font-title);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.nichos-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--color-gray-light);
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.nichos-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.nichos-carousel {
    display: flex;
    gap: 30px;
    width: fit-content;
    will-change: transform;
}

.nicho-item {
    flex-shrink: 0;
    background: rgba(28, 30, 34, 0.6);
    border-radius: 10px;
    padding: 20px 30px;
    border: 1px solid rgba(225, 78, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.nicho-item:hover {
    background: rgba(28, 30, 34, 0.9);
    border-color: rgba(225, 78, 255, 0.3);
    transform: translateY(-3px);
}

.nicho-icon {
    font-size: 28px;
    line-height: 1;
}

.nicho-name {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

.nicho-metric {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-violet);
    text-align: center;
}

/* Responsive Nichos */
@media (max-width: 768px) {
    .nichos-phase4 {
        padding: 60px 20px;
    }
    
    .nichos-subtitle {
        margin-bottom: 40px;
    }
    
    .nichos-carousel {
        gap: 20px;
    }
    
    .nicho-item {
        min-width: 160px;
        padding: 15px 20px;
    }
    
    .nicho-icon {
        font-size: 24px;
    }
    
    .nicho-name {
        font-size: 12px;
    }
    
    .nicho-metric {
        font-size: 14px;
    }
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-phase4 {
    padding: 100px 20px;
    background: var(--color-gray-dark);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-phase4 h2 {
    font-family: var(--font-title);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.blog-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-gray-light);
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--color-black);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 174, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 174, 255, 0.2);
    border-color: rgba(29, 174, 255, 0.3);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--color-gray-dark);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    font-size: 12px;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-title {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    color: #fff;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--color-gray-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-link:hover {
    color: var(--color-violet);
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-phase4 {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(29, 174, 255, 0.1), rgba(123, 92, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-phase4::before {
    display: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-phase4 h2 {
    font-family: var(--font-title);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-gray-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTATO SECTION
   ============================================ */

.contato {
    padding: 100px 20px;
    background: var(--color-black);
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contato-header {
    text-align: center;
    margin-bottom: 60px;
}

.contato-header h2 {
    font-family: var(--font-title);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.contato-header p {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--color-gray-light);
}

.contato-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contato-form .form-group {
    position: relative;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(28, 30, 34, 0.8);
    border: 1px solid rgba(29, 174, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 20px rgba(29, 174, 255, 0.3);
}

.contato-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    padding: 15px 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(29, 174, 255, 0.4);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(29, 174, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-blue);
    flex-shrink: 0;
}

.info-content h3 {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--color-gray-light);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--color-gray-dark);
    border-top: 1px solid rgba(29, 174, 255, 0.1);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.footer-desc {
    color: var(--color-gray-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(29, 174, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-blue);
    color: var(--color-black);
    transform: translateY(-2px);
}

.footer-col h3 {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-blue);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--color-gray-light);
}

.footer-contact li i {
    color: var(--color-blue);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(29, 174, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom-content p {
    color: rgba(214, 217, 221, 0.5);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor,
    .cursor-follower {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-black);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(29, 174, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .hero {
        min-height: auto;
        padding: 100px 15px 30px;
        justify-content: flex-start;
    }
    
    .hero-home-flex {
        min-height: calc(100vh - 100px);
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-center {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-home-title {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 15px;
        line-height: 1.3;
        padding: 0 5px;
    }
    
    .hero-sub {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 5px;
        line-height: 1.6;
    }
    
    .hero-form-mini {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .form-group-mini {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .form-group-mini input {
        padding: 14px 18px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .telefone-group {
        width: 100%;
    }
    
    .telefone-group .iti {
        width: 100%;
    }
    
    .telefone-group input {
        padding-left: 80px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .telefone-group .iti__selected-flag {
        padding: 0 8px 0 12px;
    }
    
    .telefone-group .iti__flag-container {
        left: 0;
    }
    
    .cta-button-mini {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
        margin-top: 5px;
    }
    
    .hero-logos-footer {
        margin-top: 40px;
        padding: 0 5px;
    }
    
    .hero-logos-title {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-logos-carousel {
        gap: 25px;
    }
    
    .logo-cliente {
        font-size: 13px;
        padding: 8px 15px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .phases-timeline-horizontal {
        display: none;
    }
    
    .phases-timeline-vertical {
        display: block;
    }
    
    .metodo-subtext {
        margin-bottom: 50px;
    }
    
    .metodo-closing {
        padding: 40px 20px;
        margin-top: 50px;
    }
    
    .metodo-closing-title {
        font-size: 22px;
    }
    
    .institucional-cards,
    .servicos-grid,
    .resultados-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .cta-button-mini,
    .cta-buttons .cta-button-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 12px 25px;
    }
    
    .hero-home-flex {
        min-height: calc(100vh - 90px);
    }
    
    .hero-home-title {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .hero-sub {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-form-mini {
        gap: 10px;
        margin-bottom: 25px;
        width: 100%;
        max-width: 100%;
    }
    
    .form-group-mini {
        width: 100%;
        min-width: 100%;
    }
    
    .form-group-mini input {
        padding: 12px 16px;
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .telefone-group {
        width: 100%;
    }
    
    .telefone-group .iti {
        width: 100%;
    }
    
    .telefone-group input {
        padding-left: 75px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .telefone-group .iti__selected-flag {
        padding: 0 6px 0 10px;
    }
    
    .telefone-group .iti__flag-container {
        left: 0;
    }
    
    .cta-button-mini {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .hero-logos-footer {
        margin-top: 30px;
    }
    
    .hero-logos-title {
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .hero-logos-carousel {
        gap: 20px;
    }
    
    .logo-cliente {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .metodo-phase4 h2,
    .institucional h2,
    .servicos-growth h2,
    .nichos-phase4 h2,
    .blog-phase4 h2,
    .cta-phase4 h2,
    .contato-header h2 {
        font-size: 24px;
    }
    
    .phases-timeline {
        padding-left: 30px;
        gap: 25px;
    }
    
    .timeline-line {
        left: 10px;
    }
    
    .phase-connector {
        left: -20px;
        width: 12px;
    }
    
    .phase-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .phase-card h3 {
        font-size: 18px;
    }
    
    .phase-description {
        font-size: 14px;
    }
    
    .servico-card,
    .nicho-card,
    .blog-card,
    .phase-card {
        padding: 20px;
    }
}

