/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-blue: #0099FF;
    --secondary-cyan: #00D4FF;
    --accent-green: #00FF94;
    --dark-bg: #0A0E27;
    --darker-bg: #050814;
    --light-bg: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-secondary: #A0AEC0;
    --text-dark: #1A202C;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00D4FF 0%, #0099FF 100%);
    --gradient-secondary: linear-gradient(135deg, #00FF94 0%, #00D4FF 100%);
    --gradient-accent: linear-gradient(135deg, #0099FF 0%, #00FF94 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--secondary-cyan);
}

.btn-outline:hover {
    background: var(--secondary-cyan);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-cyan);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--secondary-cyan);
    top: 10%;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    bottom: 20%;
    left: 5%;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-green);
    top: 50%;
    left: 40%;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 148, 0.1);
    border: 1px solid rgba(0, 255, 148, 0.3);
    border-radius: 100px;
    color: var(--accent-green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Chat Mockup */
.chat-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.chat-name {
    font-weight: 600;
    font-size: 1rem;
}

.chat-status {
    font-size: 0.875rem;
    color: var(--accent-green);
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    display: flex;
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 80%;
    font-size: 0.95rem;
}

.message-bot .message-content {
    background: rgba(0, 153, 255, 0.2);
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.message-user {
    justify-content: flex-end;
}

.message-user .message-content {
    background: rgba(0, 255, 148, 0.2);
    border: 1px solid rgba(0, 255, 148, 0.3);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-cyan);
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-10px); opacity: 1; }
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.benefit-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-cyan);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   SERVICES CATALOG SECTION
   =========================== */
.services-catalog {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.service-item {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.service-item.featured-service {
    border-color: var(--accent-green);
    background: rgba(0, 255, 148, 0.03);
}

.service-item.featured-service:hover {
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(0, 255, 148, 0.2);
}

.service-badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gradient-secondary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--secondary-cyan);
    transform: scale(1.1);
}

.service-item.featured-service .service-icon-wrapper {
    background: rgba(0, 255, 148, 0.05);
    border-color: rgba(0, 255, 148, 0.3);
}

.service-item.featured-service:hover .service-icon-wrapper {
    background: rgba(0, 255, 148, 0.15);
    border-color: var(--accent-green);
}

.service-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item.featured-service .service-item-title {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-cta {
    text-align: center;
    padding: 48px 32px;
    background: rgba(0, 212, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.services-cta-text strong {
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   SOLUTIONS SECTION
   =========================== */
.solutions {
    padding: var(--section-padding);
    background: var(--darker-bg);
}

.solution-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    border-color: var(--secondary-cyan);
    color: var(--text-primary);
}

.tab-button.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.solution-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.solution-text > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.solution-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.solution-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-features strong {
    color: var(--text-primary);
}

.solution-features span {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Flow Diagram */
.flow-diagram {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.flow-node {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.node-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
}

.whatsapp-node {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.ai-node {
    background: var(--gradient-primary);
}

.automation-node {
    background: var(--gradient-secondary);
}

.success-node {
    background: linear-gradient(135deg, #00FF94 0%, #00D4AA 100%);
}

.flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-cyan);
    padding: 0;
}

/* Instagram Mockup */
.instagram-mockup {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.dm-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dm-message {
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 75%;
}

.dm-message.received {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.dm-message.sent {
    background: var(--gradient-primary);
    align-self: flex-end;
}

/* Integration Diagram */
.integration-diagram {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-hub {
    position: relative;
    z-index: 2;
}

.integration-connection {
    position: absolute;
}

.integration-point {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.connection-1 {
    top: 20%;
    left: 10%;
}

.connection-2 {
    top: 20%;
    right: 10%;
}

.connection-3 {
    bottom: 20%;
    left: 10%;
}

.connection-4 {
    bottom: 20%;
    right: 10%;
}

/* ===========================
   RESULTS SECTION
   =========================== */
.results {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.results-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.metric-card {
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid;
}

.metric-card.before {
    background: rgba(255, 100, 100, 0.05);
    border-color: rgba(255, 100, 100, 0.3);
}

.metric-card.after {
    background: rgba(0, 255, 148, 0.05);
    border-color: rgba(0, 255, 148, 0.3);
}

.metric-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    opacity: 0.7;
}

.metric-value {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.metric-value.negative {
    color: #FF6464;
}

.metric-value.positive {
    color: var(--accent-green);
}

.metric-desc {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.metric-detail {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.showcase-arrow svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 148, 0.5));
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--secondary-cyan);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    left: 24px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-name {
    font-weight: 600;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Proof Section */
.proof-section {
    margin-top: 40px;
}

.proof-title {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.proof-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-cyan);
}

.proof-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.proof-badge {
    padding: 4px 12px;
    background: rgba(0, 255, 148, 0.1);
    border: 1px solid rgba(0, 255, 148, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-green);
}

.proof-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.proof-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.proof-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.proof-stat {
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.proof-stat .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.proof-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ===========================
   PRICING SECTION (SERVIÇOS PERSONALIZADOS)
   =========================== */
.pricing {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.custom-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.service-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-card.featured {
    border-color: var(--secondary-cyan);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    margin: 0 auto 24px;
    width: 64px;
    height: 64px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 24px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Process Steps */
.pricing-process {
    margin-bottom: 60px;
}

.process-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 48px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    align-items: center;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--secondary-cyan);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.process-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-cyan);
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    padding: 60px 40px;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-cyan);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.pricing-card.featured {
    border-color: var(--secondary-cyan);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.custom-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.pricing-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    background: rgba(0, 255, 148, 0.05);
    border: 2px solid rgba(0, 255, 148, 0.2);
    border-radius: 16px;
    text-align: center;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--accent-green);
}

.guarantee-text p {
    color: var(--text-secondary);
    max-width: 600px;
}

/* ===========================
   DEMO SECTION
   =========================== */
.demo {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.demo-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.demo-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-benefits li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.demo-benefits svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.demo-benefits span {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Form */
.demo-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 10px;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
    background: #0099ff;
    color: #ffffff;
}

.form-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 60px 0 30px;
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-logo .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--secondary-cyan);
}

.legal-links span {
    color: var(--text-secondary);
    opacity: 0.5;
}

.footer-powered {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===========================
   FLOATING CTA
   =========================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.4);
    font-weight: 700;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 153, 255, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .hero-content,
    .solution-details,
    .demo-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .demo-form-container {
        padding: 30px 20px;
    }

    .btn-large {
        padding: 15px 24px;
        font-size: 1.05rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .solution-tabs {
        flex-direction: column;
    }

    .flow-diagram {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .flow-arrow {
        display: none;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .custom-services {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .pricing-cta {
        padding: 40px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .floating-cta span {
        display: none;
    }

    .floating-cta {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .btn-large {
        padding: 14px 20px;
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-large svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .btn-block {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .metric-value {
        font-size: 3rem;
    }

    .demo-form-container {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }
}

/* Media query adicional para telas muito pequenas */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .btn-large {
        padding: 12px 16px;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .demo-form-container {
        padding: 16px 12px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
