:root {
    --primary-dark: #0f0f23;
    --secondary-dark: #1a1a2e;
    --accent-dark: #16213e;
    --neon-cyan: #00ffff;
    --neon-purple: #ff00ff;
    --neon-green: #39ff14;
    --neon-pink: #ff1493;
    --neon-blue: #00bfff;
    --vintage-gold: #ffd700;
    --text-primary: #e8e8e8;
    --text-secondary: #a8a8a8;
    --text-muted: #666666;
    --gradient-primary: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    --gradient-secondary: linear-gradient(45deg, var(--neon-green) 0%, var(--neon-blue) 100%);
    --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.3);
    --shadow-vintage: 0 8px 32px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

.vintage-nav {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
}

.brand-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: 1px solid var(--neon-cyan);
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300ffff" stroke-width="0.3" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    margin-bottom: 1.5rem !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.btn-neon {
    background: var(--gradient-primary);
    border: none;
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neon);
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    color: var(--primary-dark);
}

.btn-outline-neon {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-neon:hover {
    background: var(--neon-cyan);
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.neon-glow {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.neon-glow:hover {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

.neon-glow-subtle {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-section {
    background: var(--secondary-dark);
    position: relative;
}

.service-card {
    background: rgba(22, 33, 62, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.service-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.about-section {
    background: var(--primary-dark);
    position: relative;
}

.vintage-stats .stat-item {
    text-align: center;
    margin-bottom: 20px;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-section {
    background: var(--secondary-dark);
    position: relative;
}

.feature-box {
    background: rgba(15, 15, 35, 0.9);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-secondary);
    transition: left 0.5s ease;
}

.feature-box:hover::before {
    left: 0;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 15px 30px rgba(255, 0, 255, 0.3);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-header i {
    font-size: 2.5rem;
    margin-right: 15px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-header h4 {
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin: 0;
}

.testimonials-section {
    background: var(--primary-dark);
    position: relative;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: 0 15px 35px rgba(57, 255, 20, 0.2);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--neon-green);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: 'Orbitron', monospace;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border: 2px solid var(--neon-green);
}

.testimonial-author h6 {
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
}

.testimonial-author small {
    color: var(--text-secondary);
}

.contact-section {
    background: var(--secondary-dark);
    position: relative;
}

.contact-form-wrapper {
    background: rgba(15, 15, 35, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-floating > .form-control {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--text-primary);
    border-radius: 10px;
}

.form-floating > .form-control:focus {
    background: rgba(26, 26, 46, 0.9);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.form-floating > label {
    color: var(--text-secondary);
}

.contact-info {
    background: rgba(15, 15, 35, 0.9);
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-item h6 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.vintage-footer {
    background: var(--primary-dark);
    border-top: 2px solid rgba(0, 255, 255, 0.2);
    position: relative;
}

.footer-brand .brand-name {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.3rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    padding-left: 10px;
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--neon-cyan);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.copyright-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-badges .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
}

.bg-neon {
    background: var(--gradient-primary) !important;
    color: var(--primary-dark) !important;
}

.bg-outline-neon {
    background: transparent !important;
    color: var(--neon-cyan) !important;
    border: 1px solid var(--neon-cyan) !important;
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h6 {
    color: var(--text-primary);
    margin: 0 0 5px 0;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.cookie-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.cookie-text a:hover {
    text-shadow: 0 0 5px var(--neon-cyan);
}

.privacy-page {
    padding-top: 100px;
    background: var(--primary-dark);
}

.privacy-hero {
    background: var(--secondary-dark);
    position: relative;
}

.privacy-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.privacy-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.privacy-content {
    background: var(--primary-dark);
}

.privacy-text {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.privacy-text h2 {
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text h3 {
    color: var(--neon-cyan);
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-text ul {
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-left: 25px;
}

.privacy-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info-privacy {
    background: rgba(0, 255, 255, 0.1);
    border-left: 4px solid var(--neon-cyan);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.contact-info-privacy p {
    margin-bottom: 8px;
    color: var(--text-primary) !important;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.qvP {
    padding: 200px 0 !important;
}

.navbar-toggler-icon {
    background-color: #00ffff;
    border-radius: 3px;
}

#contato {
    width: 100%;
    overflow: hidden;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    margin-right: 0 !important;
}

.hero-buttons a{
    margin-right: 0 !important;
}

@media (max-width: 991.98px) {
    .hero-content {
        padding-top: 150px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(15px);
        border-left: 2px solid rgba(0, 255, 255, 0.3);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1050;
    }
    
    .navbar-collapse.show {
        right: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 1.1rem;
        padding: 10px 0 !important;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .service-card,
    .feature-box,
    .testimonial-card,
    .contact-form-wrapper,
    .contact-info {
        margin-bottom: 30px;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}