/* ==========================================================================
   TechRocket - Master Clean Stylesheet (GitHub Multi-Tenant Asset)
   Theme: Dark Tech Glassmorphic with Cyan, Violet & Green Accents
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
    --bg-dark: #07090e;
    --bg-card: rgba(18, 22, 38, 0.75);
    --bg-card-hover: rgba(26, 32, 56, 0.92);
    --bg-elevated: #111524;
    
    --accent-cyan: #00f2fe;
    --accent-blue: #3b82f6;
    --accent-purple: #7928ca;
    --accent-violet: #9d4edd;
    --accent-green: #10b981;
    --accent-orange: #ff7700;

    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;

    --border-light: rgba(255, 255, 255, 0.09);
    --border-glow: rgba(0, 242, 254, 0.35);

    --gradient-primary: linear-gradient(135deg, #00f2fe 0%, #4f46e5 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #00f2fe 50%, #9d4edd 100%);
    --gradient-text-alt: linear-gradient(135deg, #00f2fe 0%, #3b82f6 100%);

    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-full: 9999px;
}

/* --------------------------------------------------------------------------
   2. Reset & Base Setup
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: #00f2fe #07090e;
}

/* Custom Scrollbar Desktop */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #07090e;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00f2fe 0%, #7928ca 100%);
    border-radius: 9999px;
    border: 2px solid #07090e;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00f2fe 0%, #9d4edd 100%);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

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

/* Helpers */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-alt {
    background: var(--gradient-text-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-cyan { color: var(--accent-cyan); }
.text-purple { color: #d8b4fe; }
.text-green { color: var(--accent-green); }

/* Ambient Glow Orbs */
.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

#space-stars-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.45;
    animation: orbFloat 18s ease-in-out infinite alternate;
}

.orb-1 {
    top: -10%;
    left: 20%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #7928ca 0%, transparent 70%);
}

.orb-2 {
    top: 45%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00f2fe 0%, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    bottom: -10%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
    animation-delay: -10s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 60px) scale(1.1); }
    100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Glassmorphism Cards */
.glass-card, .rocket-card {
    background: var(--bg-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
}

.glass-card:hover, .rocket-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--bg-card-hover);
}

/* Section Headers */
.section-header {
    max-width: 720px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.88rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: rotate(30deg) translateY(-100%);
    transition: transform 0.8s ease;
}

.btn-glow:hover::after {
    transform: rotate(30deg) translateY(100%);
}

/* --------------------------------------------------------------------------
   3. Navbar
   -------------------------------------------------------------------------- */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

.navbar-header.scrolled {
    padding: 0.85rem 0;
    background: rgba(7, 9, 14, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.5));
}

.btn-text-mobile {
    display: none;
}

.btn-text-desktop {
    display: inline;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.4rem;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   4. Hero Section & Interactive section1_tech_rocket.png Showcase
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    background: rgba(121, 40, 202, 0.15);
    border: 1px solid rgba(121, 40, 202, 0.35);
    color: #d8b4fe;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* Interactive Image Container */
.hero-interactive-card {
    padding: 1rem;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

.card-header-dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.card-title-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-left: 0.5rem;
    font-family: monospace;
}

.interactive-image-viewport {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #07090e;
    border: 1px solid rgba(0, 242, 254, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.hero-interactive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Mouse Spotlight Cursor Light */
.mouse-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.3) 0%, rgba(121, 40, 202, 0.1) 50%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
}

/* Animated Scanner Beam */
.scan-line-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.25), transparent);
    transform: skewX(-20deg);
    animation: scanLine 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes scanLine {
    0% { left: -100%; }
    40%, 100% { left: 160%; }
}

/* Interactive Node Hotspots */
.interactive-hotspot {
    position: absolute;
    z-index: 4;
    cursor: pointer;
}

.hotspot-pulse {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
}

.pulse-cyan {
    background: #00f2fe;
    box-shadow: 0 0 12px #00f2fe;
    animation: pulseRingCyan 2s infinite;
}

.pulse-purple {
    background: #9d4edd;
    box-shadow: 0 0 12px #9d4edd;
    animation: pulseRingPurple 2s infinite 0.6s;
}

.pulse-green {
    background: #10b981;
    box-shadow: 0 0 12px #10b981;
    animation: pulseRingGreen 2s infinite 1.2s;
}

@keyframes pulseRingCyan {
    0% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(0, 242, 254, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

@keyframes pulseRingPurple {
    0% { box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(157, 78, 221, 0); }
    100% { box-shadow: 0 0 0 0 rgba(157, 78, 221, 0); }
}

@keyframes pulseRingGreen {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hotspot-tooltip {
    position: absolute;
    left: 50%;
    bottom: 130%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(11, 14, 25, 0.95);
    border: 1px solid rgba(0, 242, 254, 0.4);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    width: 230px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    pointer-events: none;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    backdrop-filter: blur(12px);
}

.hotspot-tooltip i {
    font-size: 1.3rem;
}

.hotspot-tooltip strong {
    display: block;
    font-size: 0.85rem;
    color: #fff;
}

.hotspot-tooltip p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
}

.interactive-hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1rem;
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    z-index: 3;
    animation: badgeFloat 6s ease-in-out infinite alternate;
}

.badge-top-right {
    top: 15px;
    right: 15px;
}

.badge-bottom-left {
    bottom: 15px;
    left: 15px;
    animation-delay: -3s;
}

.badge-icon-box {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
}

.badge-icon-box.cyan { background: linear-gradient(135deg, #00f2fe, #3b82f6); }
.badge-icon-box.purple { background: linear-gradient(135deg, #7928ca, #ff007f); }

.badge-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-sub {
    display: block;
    font-size: 0.72rem;
    color: var(--accent-green);
}

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

/* --------------------------------------------------------------------------
   5. Produtos Section
   -------------------------------------------------------------------------- */
.produtos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.produto-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.produto-card:hover {
    transform: translateY(-8px);
}

.produto-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #090d16;
}

.produto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.produto-card:hover .produto-img {
    transform: scale(1.06);
}

.produto-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.produto-tag {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.produto-tag.purple { background: rgba(121, 40, 202, 0.15); color: #d8b4fe; }
.produto-tag.cyan { background: rgba(0, 242, 254, 0.15); color: #7dd3fc; }

.produto-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.produto-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.produto-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.produto-features span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* --------------------------------------------------------------------------
   6. Services Section
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 242, 254, 0.15);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1.75rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.purple-gradient { background: linear-gradient(135deg, #7928ca, #9d4edd); }
.cyan-gradient { background: linear-gradient(135deg, #00f2fe, #00b4d8); }
.blue-gradient { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.orange-gradient { background: linear-gradient(135deg, #f97316, #ea580c); }

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    font-size: 0.88rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-features li i {
    color: var(--accent-cyan);
    font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   7. AI Agent Playground
   -------------------------------------------------------------------------- */
.playground-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    padding: 3.5rem;
    align-items: center;
}

.playground-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.playground-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.quick-questions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.chip-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chip-btn:hover {
    background: rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.3);
    color: var(--accent-cyan);
    transform: translateX(4px);
}

/* Chat Widget */
.chat-widget-box {
    background: #0b0e19;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 480px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.chat-header {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.agent-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.agent-details h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.agent-status {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.chat-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.msg-agent { align-self: flex-start; }
.msg-user { align-self: flex-end; }

.msg-content {
    padding: 0.85rem 1.15rem;
    border-radius: 18px;
    font-size: 0.92rem;
    line-height: 1.5;
}

.msg-agent .msg-content {
    background: rgba(255, 255, 255, 0.07);
    border-bottom-left-radius: 4px;
    color: var(--text-main);
}

.msg-user .msg-content {
    background: var(--gradient-primary);
    border-bottom-right-radius: 4px;
    color: #ffffff;
}

.msg-time {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    padding: 0 0.5rem;
}

.msg-user .msg-time { text-align: right; }

.chat-input-area {
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 0.75rem;
}

.chat-input-area input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.25rem;
    color: #fff;
    outline: none;
}

.chat-input-area input:focus { border-color: var(--accent-cyan); }

.chat-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.chat-send-btn:hover { transform: scale(1.05); }

/* --------------------------------------------------------------------------
   8. ROI Calculator Section
   -------------------------------------------------------------------------- */
.calculator-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    padding: 3.5rem;
}

.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.control-header label {
    color: var(--text-main);
    font-weight: 500;
}

.control-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-cyan);
    font-size: 1.05rem;
}

.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: var(--transition-fast);
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
    border: 2px solid #fff;
    transition: var(--transition-fast);
}

.custom-range::-webkit-slider-thumb:hover { transform: scale(1.15); }

.calculator-results {
    background: rgba(10, 14, 26, 0.85);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.result-box.primary {
    text-align: center;
    margin-bottom: 2rem;
}

.result-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.result-amount {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

.result-sub {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.results-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mini-result-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

.mini-result-box i {
    color: var(--accent-cyan);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.mini-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.mini-lbl {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. Partners Section (Single Partner: SomosTec BR)
   -------------------------------------------------------------------------- */
.parceiro-single-box {
    max-width: 780px;
    margin: 0 auto;
}

.parceiro-card.single-partner {
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    text-align: left;
}

.parceiro-logo-box {
    flex-shrink: 0;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.parceiro-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.parceiro-info-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.parceiro-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.parceiro-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. FAQ Section
   -------------------------------------------------------------------------- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item { overflow: hidden; }

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1rem;
    color: var(--accent-cyan);
    transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   11. Contact Section
   -------------------------------------------------------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.whatsapp-direct {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.whatsapp-direct:hover {
    background: rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

.contact-form {
    background: rgba(10, 14, 26, 0.8);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: #fff;
    outline: none;
    transition: var(--transition-fast);
}

.form-group select option {
    background: #0b0e19;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.05);
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: #040508;
    border-top: 1px solid var(--border-light);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 4rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.25rem;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover { color: var(--accent-cyan); }

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 1.75rem 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: #0b0e19;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9rem;
    animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .hero-grid,
    .playground-wrapper,
    .calculator-card,
    .contact-wrapper,
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .parceiro-card.single-partner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .hero-title { font-size: 2.8rem; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

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

    .section-padding {
        padding: 3.5rem 0;
    }

    .hide-mobile { display: none !important; }
    .mobile-toggle { display: block; }

    .btn-text-desktop { display: none !important; }
    .btn-text-mobile { display: inline !important; }

    /* Header & Mobile Navigation Smartphone Optimization */
    .navbar-header {
        padding: 0.6rem 0;
    }

    .logo {
        gap: 0.4rem;
    }

    .logo-img {
        height: 28px;
    }

    .logo-text {
        font-size: 1.05rem;
        white-space: nowrap;
    }

    .nav-actions {
        gap: 0.5rem;
        align-items: center;
    }

    .nav-btn-compact {
        padding: 0.45rem 0.85rem;
        font-size: 0.78rem;
        gap: 0.35rem;
    }

    .nav-btn-compact i {
        font-size: 0.75rem;
    }

    .mobile-toggle {
        font-size: 1.2rem;
        padding: 0.2rem 0.4rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        border: 1px solid var(--border-light);
    }

    .nav-menu {
        position: fixed;
        top: 58px;
        left: 0;
        width: 100%;
        height: calc(100vh - 58px);
        background: rgba(7, 9, 14, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-bottom: 1px solid var(--border-light);
        padding: 2rem 1.5rem;
        transform: translateY(-150%);
        transition: transform var(--transition-smooth);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav-menu.active { 
        transform: translateY(0); 
    }

    .nav-list { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 1.5rem; 
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        display: block;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Hero Section Mobile */
    .hero-section {
        padding-top: 7rem;
        padding-bottom: 3.5rem;
    }

    .hero-title { 
        font-size: 2.1rem; 
        line-height: 1.2;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1.75rem;
    }

    .hero-cta-group { 
        flex-direction: column; 
        align-items: stretch;
        gap: 1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
        justify-content: space-between;
    }

    .stat-divider { 
        display: none; 
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Interactive Image Viewport Mobile Fixes */
    .hero-interactive-card {
        padding: 0.75rem;
        max-width: 100%;
        overflow: hidden;
    }

    .interactive-image-viewport {
        height: 250px;
        max-width: 100%;
    }

    /* Hide floating badges on mobile to prevent clutter and overlap */
    .floating-badge {
        display: none !important;
    }

    /* Safe hotspot tooltips on mobile without screen overflow */
    .interactive-hotspot.hotspot-1 .hotspot-tooltip {
        left: 0;
        transform: translateY(10px);
        width: 170px;
    }

    .interactive-hotspot.hotspot-2 .hotspot-tooltip {
        left: auto;
        right: 0;
        transform: translateY(10px);
        width: 170px;
    }

    .interactive-hotspot.hotspot-3 .hotspot-tooltip {
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        width: 170px;
    }

    .interactive-hotspot:hover .hotspot-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .interactive-hotspot.hotspot-3:hover .hotspot-tooltip {
        transform: translateX(-50%) translateY(0);
    }

    .hotspot-tooltip {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
        bottom: 110%;
        z-index: 10;
    }

    .hotspot-tooltip i {
        font-size: 1rem;
    }

    .hotspot-tooltip strong {
        font-size: 0.75rem;
    }

    .hotspot-tooltip p {
        font-size: 0.65rem;
    }

    /* Sections Mobile Padding */
    .section-title {
        font-size: 1.85rem;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    .chip-btn {
        white-space: normal;
        word-break: break-word;
        font-size: 0.82rem;
        padding: 0.6rem 0.85rem;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .produto-img-box {
        height: 180px;
    }

    .produto-content {
        padding: 1.35rem;
    }

    .playground-wrapper {
        padding: 1.5rem 1rem;
    }

    .chat-widget-box {
        height: 400px;
    }

    .calculator-card {
        padding: 1.5rem 1rem;
    }

    .result-amount {
        font-size: 2.2rem;
    }

    .results-mini-grid {
        grid-template-columns: 1fr;
    }

    .parceiro-card.single-partner {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }

    .contact-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-form {
        padding: 1.25rem 1rem;
    }

    .form-row { 
        grid-template-columns: 1fr; 
    }

    /* Footer Mobile */
    .footer-container { 
        grid-template-columns: 1fr; 
        gap: 2.25rem;
        padding-bottom: 2rem;
    }

    .footer-bottom-flex { 
        flex-direction: column; 
        gap: 0.85rem; 
        text-align: center; 
    }

    /* Toast Container Mobile */
    .toast-container {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .toast {
        width: 100%;
        font-size: 0.82rem;
        padding: 0.85rem 1.15rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 24px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .nav-btn-compact {
        padding: 0.38rem 0.65rem;
        font-size: 0.72rem;
        gap: 0.25rem;
    }

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

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

    .interactive-image-viewport {
        height: 210px;
    }
}

@media (max-width: 380px) {
    .logo-text {
        font-size: 0.85rem;
    }

    .nav-btn-compact .btn-text-mobile {
        display: none !important;
    }

    .nav-btn-compact {
        padding: 0.35rem 0.55rem;
    }
}
