/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-green: #00ff9d;
    --neon-green-light: #39ff14;
    --neon-green-dark: #00c853;
    --black: #000000;
    --dark: #0a0a0a;
    --dark-gray: #111111;
    --gray: #1a1a1a;
    --light-gray: #333333;
    --white: #ffffff;
    --text-muted: #888888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green), 0 0 60px var(--neon-green);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.loading-text {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-muted);
    letter-spacing: 3px;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-green);
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--neon-green);
    animation: float-particle 15s infinite linear;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 157, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-green);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--neon-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--neon-green) !important;
    color: var(--black) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.nav-cta:hover {
    box-shadow: 0 0 20px var(--neon-green);
}

.nav-cta::after {
    display: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 50px;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 157, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

.hero-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 157, 0.01) 2px,
        rgba(0, 255, 157, 0.01) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 30px;
}

.logo-svg {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 20px var(--neon-green));
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-gradient {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-light), var(--neon-green-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--neon-green);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 2px;
    animation: scroll-wheel 1.5s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--neon-green), 0 0 60px rgba(0, 255, 157, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
}

.btn-secondary:hover {
    background: var(--neon-green);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
}

.btn-outline:hover {
    background: rgba(0, 255, 157, 0.1);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}

.btn-instagram:hover {
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.5);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Sections */
.section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.2);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    color: var(--neon-green);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.card-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--neon-green);
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: var(--black);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 20px;
    color: var(--neon-green);
    margin-top: 5px;
}

.amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 50px;
    font-weight: 900;
    color: var(--neon-green);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 5px;
}

.price-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--white);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--neon-green);
    font-weight: bold;
}

/* Demo Banner */
.demo-banner {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(0, 200, 83, 0.1));
    border: 1px solid var(--neon-green);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.demo-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
}

.demo-content p {
    color: var(--text-muted);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 157, 0.2);
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.coming-soon-badge {
    background: var(--light-gray);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 3px;
    font-size: 12px;
    color: var(--neon-green);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.portfolio-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
}

.portfolio-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Contato Section */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contato-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.contato-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contato-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contato-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
}

.detail-item svg {
    width: 20px;
    height: 20px;
    color: var(--neon-green);
}

/* Form */
.contato-form {
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--gray);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--light-gray);
    padding: 60px 20px 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--neon-green);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Float Button */
.float-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 5px 30px rgba(225, 48, 108, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-button 2s infinite;
}

.float-button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 40px rgba(225, 48, 108, 0.7);
}

.float-button svg {
    width: 30px;
    height: 30px;
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green); }
    50% { text-shadow: 0 0 30px var(--neon-green), 0 0 60px var(--neon-green), 0 0 80px var(--neon-green); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

@keyframes pulse-button {
    0%, 100% { box-shadow: 0 5px 30px rgba(225, 48, 108, 0.5); }
    50% { box-shadow: 0 5px 40px rgba(225, 48, 108, 0.8); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Videos IA Section */
.videos {
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 157, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.video-showcase {
    display: grid;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Main Video Container */
.main-video-container {
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 255, 157, 0.1);
    transition: all 0.3s ease;
}

.main-video-container:hover {
    box-shadow: 0 15px 60px rgba(0, 255, 157, 0.2);
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--black);
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mantém proporção sem cortar */
    background: var(--black);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--neon-green);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--neon-green);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px var(--neon-green);
}

.play-btn svg {
    width: 30px;
    height: 30px;
    color: var(--black);
    margin-left: 4px;
}

.video-info {
    padding: 30px;
    background: var(--dark-gray);
}

.video-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}

.video-info p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Video Thumbnails Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.video-thumb {
    background: var(--dark-gray);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.video-thumb:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
}

.video-thumb.active {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.4);
}

.video-thumb video {
    width: 100%;
    height: 180px;
    object-fit: contain; /* Mantém proporção sem cortar */
    background: var(--black);
    display: block;
}

.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumb:hover .thumb-overlay {
    opacity: 1;
}

.thumb-overlay svg {
    width: 40px;
    height: 40px;
    color: var(--neon-green);
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.thumb-info {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.thumb-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.thumb-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--white);
    margin: 0;
}

/* Video CTA */
.video-cta {
    text-align: center;
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 50px 30px;
    margin-top: 50px;
}

.video-cta h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
}

.video-cta p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid Improvements */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-gray);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 157, 0.2);
}

.service-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 255, 157, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--neon-green);
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--text-muted);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

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

/* Responsive */
@media (max-width: 992px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .float-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .float-button svg {
        width: 25px;
        height: 25px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-thumb video {
        height: 200px; /* Mais altura em mobile para vídeos verticais */
    }
    
    .thumb-overlay {
        height: 200px;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .video-cta {
        padding: 40px 20px;
    }
    
    .video-cta h3 {
        font-size: 24px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .contato-form {
        padding: 25px;
    }
}