/* Variáveis Globais */
:root {
    --primary-color: #00b8ff;
    --secondary-color: #0076ff;
    --accent-color: #64ffda;
    --dark-color: #0a192f;
    --darker-color: #050c17;
    --light-color: #e6f1ff;
    --text-color: #cad2e0;
    --text-light: #8892b0;
    --gray-bg: #0e2240;
    --darker-bg: #061325;
    --gradient-primary: linear-gradient(135deg, #00b8ff 0%, #0074d9 100%);
    --gradient-secondary: linear-gradient(135deg, #ff3e70 0%, #e6205d 100%);
    --gradient-dark: linear-gradient(135deg, #0a192f 0%, #061325 100%);
    --box-shadow: 0 10px 30px rgba(0, 184, 255, 0.3);
    --glow-effect: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --holo-border: 1px solid rgba(0, 184, 255, 0.2);
    --holo-bg: rgba(0, 184, 255, 0.05);
    --error-color: #ff5f56;
    --success-color: #64ffda;
    --circuit-color: rgba(0, 184, 255, 0.05);
    --scanner-opacity: 0.5;
}

/* Efeitos Globais e Animações */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 184, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 184, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 255, 0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 184, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
    }
}

@keyframes scan {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Estilos Gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--dark-color);
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(0, 184, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(0, 184, 255, 0.05) 0%, transparent 20%),
        linear-gradient(to bottom, var(--dark-color) 0%, var(--darker-bg) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Estilos para o floating-numbers */
.floating-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.floating-number {
    position: absolute;
    color: var(--primary-color);
    font-size: 14px;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite;
    text-shadow: 0 0 5px var(--primary-color);
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 184, 255, 0.3);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 184, 255, 0.5);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 184, 255, 0.7);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(62, 87, 255, 0.3);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-success {
    background-color: #25d366;
    border-color: #25d366;
}

.btn-success:hover {
    background-color: #1fbd59;
    border-color: #1fbd59;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 189, 89, 0.3);
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.img-fluid {
    border-radius: 10px;
}

/* Navbar */
.navbar {
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 184, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 184, 255, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    box-shadow: 0 0 8px var(--primary-color);
}

.navbar-brand:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link {
    font-weight: 600;
    color: var(--light-color);
    margin: 0 12px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -3px;
    left: 0;
    transition: var(--transition);
    box-shadow: 0 0 8px var(--primary-color);
}

.nav-link:hover:after {
    width: 100%;
}

/* Hero Section com efeito Jarvis */
.hero-section {
    background: var(--gradient-dark);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 184, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 184, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 184, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 184, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--light-color);
    text-shadow: 0 0 15px rgba(0, 184, 255, 0.5);
    overflow: hidden;
    border-right: 0.15em solid var(--primary-color);
    white-space: nowrap;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

.hero-section .subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-section .tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(0, 184, 255, 0.5);
}

.hero-buttons {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 184, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: -1;
}

.hero-buttons .btn:hover::before {
    animation: rotate 1s linear;
}

.hero-img {
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 184, 255, 0.3);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.hero-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0, 184, 255, 0.5) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 184, 255, 0.5) 50%, transparent 52%);
    background-size: 30px 30px;
    animation: scan 3s linear infinite;
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
    border-radius: 20px;
}

/* Cards de Recursos/Funcionalidades */
.feature-card, .solution-card, .agent-card, .benefit-card {
    background: var(--holo-bg);
    border: var(--holo-border);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card:hover, .solution-card:hover, .agent-card:hover, .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-effect);
}

.feature-card::before, .solution-card::before, .agent-card::before, .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before, .solution-card:hover::before, .agent-card:hover::before, .benefit-card:hover::before {
    opacity: 1;
}

.feature-icon, .solution-icon, .agent-icon, .benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 184, 255, 0.5);
}

.feature-card h3, .solution-card h3, .agent-card h3, .benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
}

.feature-card p, .solution-card p, .agent-card p, .benefit-card p {
    color: var(--text-light);
}

.solution-card .btn-link, .agent-card .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.solution-card .btn-link:hover, .agent-card .btn-link:hover {
    text-shadow: 0 0 8px var(--primary-color);
}

.btn-link .fa-arrow-right {
    transition: transform 0.3s ease;
}

.btn-link:hover .fa-arrow-right {
    transform: translateX(5px);
}

/* Calculadora */
.calculator-section {
    background-color: var(--gray-bg);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 184, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 184, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.calculator-form, .calculator-results {
    background: var(--holo-bg);
    border: var(--holo-border);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
    height: 100%;
    overflow: hidden;
}

.calculator-form::after, .calculator-results::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scan 2s linear infinite;
}

.calculator-form h3, .calculator-results h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.3);
}

.calculator-form h3:after, .calculator-results h3:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    bottom: -8px;
    left: 0;
    box-shadow: 0 0 8px var(--primary-color);
}

.form-label {
    font-weight: 600;
    color: var(--light-color);
    margin-bottom: 8px;
}

.form-control, .form-select {
    background-color: rgba(10, 25, 47, 0.7);
    color: var(--light-color);
    border: 1px solid rgba(0, 184, 255, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 184, 255, 0.5);
    background-color: rgba(10, 25, 47, 0.9);
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 184, 255, 0.2);
}

.result-item span:first-child {
    font-weight: 600;
    color: var(--light-color);
}

.result-item span:last-child {
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
}

.result-value {
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.result-value:hover {
    transform: scale(1.2);
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 184, 255, 0.8);
    z-index: 10;
}

.result-value:hover::after {
    content: attr(data-value);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(10, 25, 47, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(0, 184, 255, 0.7);
    z-index: 10;
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: 12px;
    padding: 25px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 184, 255, 0.3);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: rotate 8s linear infinite;
}

.cta-box h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-box .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-box .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Gráficos */
.chart-card {
    background: var(--holo-bg);
    border: var(--holo-border);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(5px);
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.chart-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    animation: scan 3s linear infinite;
}

.chart-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.3);
}

.chart-info h5 {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
}

/* Estilos para as seções com fundo grid */
.futuristic-section {
    position: relative;
    overflow: hidden;
}

.futuristic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 184, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 184, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(0, 184, 255, 0.3);
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Benefícios com efeito de partículas */
.beneficios-section, .agentes-section, .vantagem-section {
    position: relative;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    box-shadow: 0 0 10px var(--primary-color);
    z-index: 0;
}

/* Sobre Nós */
.sobre-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.sobre-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 184, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 184, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.sobre-content {
    padding: 20px 0 20px 30px;
    position: relative;
    z-index: 1;
}

.sobre-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    text-shadow: 0 0 8px rgba(0, 184, 255, 0.3);
}

.sobre-content h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
    box-shadow: 0 0 10px var(--primary-color);
}

.sobre-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-card {
    background: var(--holo-bg);
    border: var(--holo-border);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-effect);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scan 2s linear infinite;
}

.team-img img {
    transition: transform 0.5s ease;
    width: 100%;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
    background: var(--holo-bg);
    backdrop-filter: blur(5px);
}

.team-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--light-color);
}

.team-info p {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.3);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0zODcuNCwxNzguOWM0Ni43LDY3LjIsNzMuOSwxNDkuOCw0MS4yLDIwMy45Yy0zMi43LDU0LjEtMTI1LjIsNzkuNi0yMDcuOSw2Ny42QzEzOCw0MzguNCw2NS4yLDM4OC45LDI4LjksMzI0LjVDLTcuNCwyNjAsMC43LDE4MC42LDU3LjIsMTI1LjFDMTEzLjgsNjkuNywyMTguOCwzOC4zLDI5Niw1NC44QzM3My4zLDcxLjQsNDIzLDEzNS42LDQzNy42LDE3MC42QzQ1Mi4yLDIwNS43LDQzNC4xLDI0Ni4xLDM4Ny40LDE3OC45eiIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIi8+Cjwvc3ZnPg==');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Planos */
.planos-section {
    background-color: var(--gray-bg);
    position: relative;
}

.planos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 184, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 184, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.price-card {
    background: var(--holo-bg);
    border: var(--holo-border);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-effect);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 184, 255, 0.5);
    position: relative;
    z-index: 2;
}

/* Rótulo "Mais Popular" */
.price-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-bottom-left-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

/* Glow effect */
.price-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 15px var(--primary-color);
    animation: glow 2s infinite;
    z-index: -1;
    pointer-events: none;
}

/* Estilos do cabeçalho para cartão featured */
.price-card.featured .price-header {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    z-index: 1;
}

.price-card.featured .price-header h3,
.price-card.featured .price-header .price,
.price-card.featured .price-header p {
    color: white;
    position: relative;
    z-index: 2;
}

/* Estilos para corpo e rodapé do cartão featured */
.price-card.featured .price-body,
.price-card.featured .price-footer {
    background: rgba(10, 25, 47, 0.7);
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

/* Estilos para os itens da lista no cartão featured */
.price-card.featured .price-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-card.featured .price-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 184, 255, 0.2);
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
}

.price-card.featured .price-body ul li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
}

.price-header {
    background: var(--gradient-primary);
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: scan 3s infinite linear;
}

.price-header h3 {
    color: white;
    margin: 0 0 15px;
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.price-body {
    padding: 30px 25px;
    flex-grow: 1;
    background: var(--holo-bg);
    position: relative;
    z-index: 1;
}

.price-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 184, 255, 0.2);
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
}

.price-body ul li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
}

.price-footer {
    padding: 20px 25px 30px;
    background: var(--holo-bg);
    position: relative;
    z-index: 1;
}

/* Contato Section */
.contato-section {
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.contato-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 184, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 184, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.contact-info {
    padding: 30px;
    background: var(--holo-bg);
    border: var(--holo-border);
    border-radius: 15px;
    height: 100%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    box-shadow: 0 0 15px rgba(0, 184, 255, 0.5);
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--light-color);
}

.info-item p, .info-item a {
    color: var(--text-light);
    margin-bottom: 0;
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
}

.contact-form {
    padding: 30px;
    background: var(--holo-bg);
    border: var(--holo-border);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    animation: scan 3s linear infinite;
}

/* Footer */
.footer-section {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 184, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 184, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    bottom: -8px;
    left: 0;
    box-shadow: 0 0 8px var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 30px;
    position: relative;
}

.footer-contact li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 4px;
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
}

.footer-section .social-icons {
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.social-icons a {
    color: white;
    background: rgba(0, 184, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 184, 255, 0.5);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 184, 255, 0.1);
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .calculator-form, .calculator-results, .contact-info {
        margin-bottom: 30px;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .sobre-content {
        padding: 30px 0 0;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .solution-card, .agent-card, .benefit-card, .vantagem-card, .team-card {
        margin-bottom: 25px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .video-container .corner-effect {
        width: 22px;
        height: 22px;
    }
    
    .video-title {
        font-size: 11px;
        padding: 4px 8px;
        top: 10px;
        left: 10px;
    }
    
    .video-container:after {
        font-size: 9px;
        padding: 2px 6px;
        top: 10px;
        right: 10px;
    }
    
    .video-wrapper {
        margin: 0 -2px;
        padding-top: 60%; /* Ligeiramente menor em tablets */
    }
}

@media (max-width: 576px) {
    .video-container {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .hero-section .col-lg-6 {
        display: flex;
        flex-direction: column;
    }
    
    .hero-section .col-lg-6 .video-container {
        order: 1;
    }
    
    .hero-section .col-lg-6 .hero-img {
        order: 2;
        margin-top: 15px !important;
    }
    
    .video-wrapper {
        margin: 0 -1px;
        padding-top: 58%; /* Um pouco menor em celulares */
    }
}

/* Efeitos de Scanner Jarvis */
.jarvis-scanner {
    position: relative;
    overflow: hidden;
}

.jarvis-scanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(0deg, var(--circuit-color) 1px, transparent 1px) 0 0 / 40px 40px,
        linear-gradient(90deg, var(--circuit-color) 1px, transparent 1px) 0 0 / 40px 40px;
    opacity: 0.3;
    z-index: -1;
}

/* Efeito de Borda Holográfica */
.holo-border {
    position: relative;
    border: 1px solid rgba(0, 184, 255, 0.3);
    border-radius: 10px;
    background-color: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.holo-border:hover {
    border-color: rgba(0, 184, 255, 0.7);
    box-shadow: 0 0 15px rgba(0, 184, 255, 0.5), inset 0 0 10px rgba(0, 184, 255, 0.2);
}

.holo-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(0, 184, 255, 0) 0%, 
        rgba(0, 184, 255, 0.3) 50%, 
        rgba(0, 184, 255, 0) 100%
    );
    border-radius: 12px;
    z-index: -1;
    animation: holo-rotate 3s linear infinite;
}

@keyframes holo-rotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Hover de buttons com efeito Jarvis */
.btn-primary,
.btn-outline-primary,
.btn-light {
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.btn-primary::after,
.btn-outline-primary::after,
.btn-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 184, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
}

.btn-primary:hover::after,
.btn-outline-primary:hover::after,
.btn-light:hover::after {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}

/* Efeito 3D para Cards */
.feature-card,
.benefit-card,
.agent-card,
.price-card,
.team-card,
.chart-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 1px solid rgba(0, 184, 255, 0.2);
    background: rgba(10, 25, 47, 0.7);
    border-radius: 10px;
    overflow: hidden;
}

.feature-card:hover,
.benefit-card:hover,
.agent-card:hover,
.price-card:hover,
.team-card:hover,
.chart-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 184, 255, 0.3);
    border-color: rgba(0, 184, 255, 0.5);
}

/* Adicionando efeito de foco para inputs */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 184, 255, 0.25);
    animation: pulse 2s infinite;
}

/* Efeito de digitação aprimorado */
.hero-section h1 {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-right-color: transparent }
    50% { border-right-color: var(--primary-color) }
}

/* Adicionar blur dinâmico */
.holo-border:hover {
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 184, 255, 0.5);
}

.price-card .btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transition: all 0.3s ease !important;
}

.price-card .btn:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 0 20px rgba(0, 184, 255, 0.7) !important;
}

.price-card .btn i {
    display: inline-block !important;
    margin-right: 0.5rem !important;
}

/* Estilos específicos para o plano em destaque usando ID */
#featured-plan {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 184, 255, 0.5);
    position: relative;
    z-index: 2;
    background: transparent !important;
}

#featured-plan::before {
    content: 'Mais Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-bottom-left-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

#featured-plan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 15px var(--primary-color);
    animation: glow 2s infinite;
    z-index: -1;
    pointer-events: none;
}

#featured-plan .price-header {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    z-index: 1;
}

#featured-plan .price-header h3,
#featured-plan .price-header .price,
#featured-plan .price-header p {
    color: white;
    position: relative;
    z-index: 2;
}

#featured-plan .price-body {
    background: rgba(10, 25, 47, 0.7);
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

#featured-plan .price-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#featured-plan .price-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 184, 255, 0.2);
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
    display: block;
    visibility: visible;
}

#featured-plan .price-body ul li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 184, 255, 0.5);
}

#featured-plan .price-footer {
    background: rgba(10, 25, 47, 0.7);
    padding: 20px 25px 30px;
    position: relative;
    z-index: 1;
}

#featured-plan .btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

#featured-plan, 
#featured-plan .price-header, 
#featured-plan .price-body, 
#featured-plan .price-footer,
#featured-plan .price-body ul,
#featured-plan .price-body ul li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#featured-plan {
    overflow: visible !important;
    z-index: 10 !important;
    background-color: rgba(10, 25, 47, 0.7) !important;
}

#featured-plan .price-body ul li {
    color: var(--text-light) !important;
    text-shadow: none !important;
    position: relative !important;
}

#featured-plan .price-body {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: rgba(10, 25, 47, 0.7) !important;
    color: var(--text-light) !important;
    padding: 30px 25px !important;
    flex-grow: 1 !important;
}

/* Estilos para o container de vídeo */
.video-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 25, 50, 0.7);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 184, 255, 0.6);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    border: none;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 62%; /* Proporção um pouco mais alta que 16:9 */
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(0, 184, 255, 0.2) 0%, transparent 100%),
        linear-gradient(to right, rgba(0, 50, 100, 0.3) 0%, transparent 20%, transparent 80%, rgba(0, 50, 100, 0.3) 100%),
        linear-gradient(to bottom, rgba(0, 50, 100, 0.3) 0%, transparent 20%, transparent 80%, rgba(0, 50, 100, 0.3) 100%);
    pointer-events: none;
    z-index: 2;
}

.video-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 184, 255, 0.1) 50%, transparent 100%);
    z-index: 3;
    pointer-events: none;
    animation: scanVideo 3s linear infinite;
}

@keyframes scanVideo {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.video-container .corner-effect {
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 3;
    border-width: 3px;
}

.video-container .corner-effect.top-left {
    top: 0;
    left: 0;
    border-top: 3px solid #00b8ff;
    border-left: 3px solid #00b8ff;
}

.video-container .corner-effect.top-right {
    top: 0;
    right: 0;
    border-top: 3px solid #00b8ff;
    border-right: 3px solid #00b8ff;
}

.video-container .corner-effect.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 3px solid #00b8ff;
    border-left: 3px solid #00b8ff;
}

.video-container .corner-effect.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid #00b8ff;
    border-right: 3px solid #00b8ff;
}

/* Animação de pulso nas bordas - mais intensa */
.video-container.border-scanner .corner-effect {
    animation: cornerPulse 2s infinite alternate;
}

@keyframes cornerPulse {
    0% {
        box-shadow: 0 0 8px rgba(0, 184, 255, 0.7);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 184, 255, 1);
    }
}

/* Efeito de fluxo de dados para o vídeo */
.video-data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.video-data-stream .code-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 184, 255, 0.8), transparent);
    opacity: 0.5;
    animation: codeLineFade 4s infinite linear;
}

@keyframes codeLineFade {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Adicionar decoração visual ao vídeo */
.video-container:after {
    content: "IA AVANÇADA";
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(0, 184, 255, 0.9);
    font-size: 11px;
    font-weight: bold;
    font-family: monospace;
    background: rgba(0, 25, 50, 0.9);
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 5;
    border: 1px solid rgba(0, 184, 255, 0.5);
    box-shadow: 0 0 8px rgba(0, 184, 255, 0.3);
    letter-spacing: 1px;
}

/* Efeito de escaneamento para o vídeo */
@keyframes scanningLight {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.video-container .video-overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 184, 255, 0.15) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: scanningLight 4s infinite linear;
    z-index: 3;
}

/* Título do vídeo */
.video-title {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: monospace;
    font-size: 13px;
    color: #00b8ff;
    background: rgba(0, 25, 50, 0.9);
    padding: 5px 10px;
    border-radius: 3px;
    border-left: 3px solid #00b8ff;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(0, 184, 255, 0.3);
}

.video-status {
    color: #00ff7f;
    animation: blinkStatus 1.5s infinite;
}

@keyframes blinkStatus {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.video-label {
    letter-spacing: 1px;
} 