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

body {
    background: radial-gradient(circle at 20% 30%, #0a0c1a, #03050c);
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Partículas */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 15px 60px, rgba(255, 215, 0, 0.4) 100%, transparent),
        radial-gradient(2px 2px at 75px 340px, #ff44ec 100%, transparent),
        radial-gradient(3px 3px at 660px 180px, #00ffff 100%, transparent),
        radial-gradient(2px 2px at 920px 490px, #ffb86b 100%, transparent),
        radial-gradient(4px 4px at 230px 850px, #a0e7ff 100%, transparent),
        radial-gradient(3px 3px at 1250px 700px, #ff77a9 100%, transparent),
        radial-gradient(2px 2px at 70% 90%, #c0ff8a 100%, transparent);
    background-size: 200% 200%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.9; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Header Cyberpunk - NOVO */
.cyber-header {
    background: rgba(10, 20, 40, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.25);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.cyber-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-glitch {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    animation: glitch 500ms infinite;
    letter-spacing: 2px;
    text-shadow: 0.05em 0 0 rgba(255, 0, 132, 0.75),
                 -0.05em -0.025em 0 rgba(0, 255, 255, 0.75);
}

.logo-lab {
    font-size: 0.9rem;
    color: #7effe0;
    letter-spacing: 1px;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 rgba(255, 0, 132, 0.75), -0.05em -0.025em 0 rgba(0, 255, 255, 0.75); }
    50% { text-shadow: -0.05em -0.025em 0 rgba(255, 0, 132, 0.75), 0.05em 0 0 rgba(0, 255, 255, 0.75); }
    100% { text-shadow: 0.05em 0 0 rgba(255, 0, 132, 0.75), -0.05em -0.025em 0 rgba(0, 255, 255, 0.75); }
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover, .nav-menu a.active {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid cyan;
    box-shadow: 0 0 20px cyan;
}

/* HERO SECTION NOVO */
.hero-toguro {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 68, 236, 0.2), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.badge-premium {
    display: inline-block;
    background: linear-gradient(145deg, #ff0080, #8000ff);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 2px solid gold;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.glitch-main {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    animation: glitch 1s infinite;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #7effe0;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px cyan;
}

.hero-titles {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.title-tag {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid cyan;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
}

.title-tag:hover {
    background: cyan;
    color: black;
    box-shadow: 0 0 30px cyan;
}

.hero-name {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.highlight {
    color: gold;
    font-weight: 700;
}

.hero-domain {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FF44EC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1rem 0;
}

/* Card do Toguro */
.toguro-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid;
    border-image: linear-gradient(45deg, cyan, magenta, gold) 1;
    animation: borderGlow 3s infinite;
}

.toguro-glitch {
    position: relative;
    overflow: hidden;
}

.toguro-glitch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: glitchEffect 3s infinite;
}

.toguro-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 30px magenta);
}

.toguro-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.info-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, cyan, magenta, gold);
    animation: glowWidth 2s infinite;
}

.info-name {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    color: gold;
}

.info-role {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    margin: 0.5rem 0;
}

.info-social {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-primary {
    background: linear-gradient(145deg, #ff0080, #8000ff);
    border: 2px solid gold;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary.btn-glow {
    animation: pulse 2s infinite;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px gold;
}

.btn-secondary {
    background: transparent;
    border: 2px solid cyan;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: cyan;
    color: black;
    box-shadow: 0 0 50px cyan;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: gold;
    text-shadow: 0 0 20px gold;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Features Section */
.toguro-section {
    padding: 6rem 0;
    background: rgba(0,0,0,0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-glitch {
    font-size: 3rem;
    font-weight: 800;
    animation: glitch 2s infinite;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7effe0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(15, 20, 35, 0.65);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: gold;
    box-shadow: 0 0 50px gold;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: gold;
}

/* Hits Section */
.hits-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 70% 30%, #1a0b2e, #03050c);
}

.section-title-neon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.neon-text {
    text-shadow: 0 0 10px cyan, 0 0 20px magenta, 0 0 30px gold;
}

.hits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hit-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.hit-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.hit-card.featured {
    transform: scale(1.05);
    border: 3px solid gold;
}

.hit-cover {
    aspect-ratio: 1;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.hit-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.8);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    border: 1px solid gold;
}

.hit-info {
    color: white;
    text-shadow: 0 0 10px black;
}

.hit-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hit-platforms {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Brand Section */
.brand-section {
    padding: 6rem 0;
}

.brand-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: linear-gradient(145deg, rgba(255,215,0,0.1), rgba(255,68,236,0.1));
    border-radius: 60px;
    padding: 4rem;
    border: 2px solid gold;
}

.brand-badge {
    display: inline-block;
    background: gold;
    color: black;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.brand-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: gold;
}

.brand-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d3eaff;
}

.brand-clients {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.client-tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid cyan;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
}

.client-tag:hover {
    background: cyan;
    color: black;
    box-shadow: 0 0 30px cyan;
}

.brand-stats {
    display: grid;
    gap: 1.5rem;
}

.brand-stat-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid cyan;
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.brand-stat-card:hover {
    transform: scale(1.05);
    border-color: gold;
    box-shadow: 0 0 30px gold;
}

.stat-big {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: gold;
    margin-bottom: 0.5rem;
}

/* Services Premium */
.services-premium {
    padding: 6rem 0;
}

.section-title-center {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #FFD700, #FF44EC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-premium-card {
    background: rgba(15, 20, 35, 0.65);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 40px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.service-premium-card:hover {
    transform: translateY(-10px);
    border-color: gold;
    box-shadow: 0 0 50px gold;
}

.service-premium-card.featured {
    border-color: gold;
    box-shadow: 0 0 50px gold;
    transform: scale(1.05);
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: gold;
    color: black;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.service-premium-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-premium-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: gold;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: gold;
    margin: 1rem 0;
}

.service-premium-card ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.service-premium-card li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #d3eaff;
}

.service-premium-card li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: gold;
}

.btn-service {
    background: linear-gradient(145deg, #ff0080, #8000ff);
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    color: white;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px gold;
}

/* Pipeline Showcase */
.pipeline-showcase {
    padding: 6rem 0;
    overflow: hidden;
}

.pipeline-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 60px;
    border: 2px solid cyan;
}

.pipeline-step {
    background: linear-gradient(145deg, #ff0080, #8000ff);
    padding: 1rem 1.5rem;
    border-radius: 40px;
    text-align: center;
    min-width: 100px;
    transition: all 0.3s;
}

.pipeline-step:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px gold;
}

.step-number {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
}

.step-name {
    font-weight: 700;
}

.pipeline-arrow {
    font-size: 2rem;
    color: gold;
}

/* CTA Final */
.cta-final {
    padding: 4rem 0;
}

.cta-card {
    background: linear-gradient(145deg, #ff0080, #8000ff);
    border-radius: 60px;
    padding: 4rem;
    text-align: center;
    border: 3px solid gold;
    box-shadow: 0 0 100px rgba(255,215,0,0.3);
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-card p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #d3eaff;
}

.btn-cta-giant {
    background: gold;
    color: black;
    border: none;
    border-radius: 60px;
    padding: 1.5rem 4rem;
    font-size: 2rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.btn-cta-giant:hover {
    transform: scale(1.1);
    box-shadow: 0 0 100px gold;
}

/* Grid de serviços (padrão) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: rgba(15, 20, 35, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid;
    border-radius: 32px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, cyan, magenta, gold);
    border-radius: 34px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

/* Tabela de preços */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: rgba(15, 20, 35, 0.65);
    backdrop-filter: blur(16px);
    border: 1px solid;
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 50px gold;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: gold;
    box-shadow: 0 0 50px gold;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FF44EC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1rem 0;
}

/* Footer */
.cyber-footer {
    background: rgba(10, 15, 30, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 255, 255, 0.25);
    padding: 3rem 0;
    margin-top: 4rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: gold;
    margin-bottom: 0.5rem;
}

.footer-label {
    color: #ff44ec;
    font-weight: 600;
    margin-top: 0.5rem;
}

.footer-domain {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FF44EC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px dashed rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.6);
}

/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chatbot-toggle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ff0080, #8000ff);
    border: 3px solid gold;
    cursor: pointer;
    animation: pulse 2s infinite;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px gold;
}

.chatbot-toggle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.chatbot-popup {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid cyan;
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
    display: none;
}

.chatbot-popup.active {
    display: block;
    animation: slideIn 0.3s ease;
}

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

.chatbot-header {
    background: linear-gradient(145deg, #ff0080, #8000ff);
    padding: 1rem;
    border-radius: 22px 22px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-avatar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid gold;
}

.chatbot-avatar span {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.chatbot-messages {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 18px;
    max-width: 80%;
    animation: messageIn 0.3s ease;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message.bot {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid cyan;
    align-self: flex-start;
}

.message.user {
    background: linear-gradient(145deg, #ff0080, #8000ff);
    margin-left: auto;
}

.chatbot-input-area {
    display: flex;
    padding: 1rem;
    gap: 0.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.chatbot-input-area input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid cyan;
    border-radius: 30px;
    padding: 0.8rem;
    color: white;
    font-family: inherit;
}

.chatbot-input-area input:focus {
    outline: none;
    box-shadow: 0 0 20px cyan;
}

.chatbot-input-area button {
    background: linear-gradient(145deg, #ff0080, #8000ff);
    border: none;
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.chatbot-input-area button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px gold;
}

.chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.chatbot-option-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid cyan;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.chatbot-option-btn:hover {
    background: cyan;
    color: black;
    box-shadow: 0 0 20px cyan;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Glass Panel */
.glass-panel {
    background: rgba(15, 20, 35, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

/* Keyframes adicionais */
@keyframes borderGlow {
    0%, 100% { border-color: cyan; }
    33% { border-color: magenta; }
    66% { border-color: gold; }
}

@keyframes glowWidth {
    0% { width: 0%; opacity: 0; }
    50% { width: 100%; opacity: 1; }
    100% { width: 0%; opacity: 0; }
}

@keyframes glitchEffect {
    0% { transform: translateX(-100%); }
    20% { transform: translateX(100%); }
    21% { transform: translateX(-100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 2rem;
    }
    
    .glitch-main {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-titles {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .brand-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .brand-clients {
        justify-content: center;
    }
    
    .pipeline-flow {
        flex-direction: column;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .chatbot-popup {
        width: 300px;
        right: -20px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .service-premium-card.featured {
        transform: scale(1);
    }
    
    .glitch-main {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title-glitch {
        font-size: 2rem;
    }
    
    .section-title-neon {
        font-size: 2rem;
    }
    
    .section-title-center {
        font-size: 2rem;
    }
    
    .btn-cta-giant {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .brand-showcase {
        padding: 2rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-clients {
        flex-direction: column;
    }
    
    .pipeline-step {
        width: 100%;
    }
}