/* Urban Theme Variables */
:root {
    --bg-deep: #050608;
    --bg-surface: #121418;
    --asphalt: #1c1e22;
    --neon-orange: #ff5500;
    --neon-orange-dim: rgba(255, 85, 0, 0.2);
    --neon-blue: #00e5ff;
    --neon-blue-dim: rgba(0, 229, 255, 0.2);
    --text-primary: #e2e8f0;
    --text-muted: #94a3b8;
    --border-glow: rgba(255, 85, 0, 0.5);
    
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Typography & Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-neon {
    color: var(--neon-orange);
    text-shadow: 0 0 10px var(--neon-orange-dim), 0 0 20px var(--neon-orange-dim);
}

.highlight-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-dim);
}

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

.section {
    padding: 100px 0;
    position: relative;
}

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

/* Alert Strip (Marquee) */
.marquee-alert {
    background: var(--neon-orange);
    color: #000;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 5px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 100;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 6, 8, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 90px; /* Logo muito maior conforme solicitado */
    max-width: 250px;
    object-fit: contain;
    border-radius: 15px; /* Bordas arredondadas no cabeçalho */
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.3));
    transition: transform 0.3s ease;
}
.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-blue);
}

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

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

/* Buttons */
.btn-urban {
    background: transparent;
    color: var(--neon-orange);
    border: 1px solid var(--neon-orange);
    padding: 10px 25px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 10px var(--neon-orange-dim);
}

.btn-urban:hover {
    background: var(--neon-orange);
    color: #000;
    box-shadow: 0 0 20px var(--neon-orange), 0 0 40px var(--neon-orange-dim);
}

.btn-pulse {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 var(--border-glow); }
    70% { box-shadow: 0 0 0 15px rgba(255, 85, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 85, 0, 0); }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--neon-orange);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('assets/truck-bg-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(100deg, rgba(5,6,8,0.95) 0%, rgba(5,6,8,0.7) 45%, rgba(5,6,8,0.1) 100%),
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cyber-badge {
    display: inline-block;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 5px 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 8px var(--neon-blue-dim);
}

.glitch-text {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Services */
.border-bottom-urban {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.services h2 {
    font-size: 3.5rem;
}

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

.urban-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.card-glow {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.urban-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.urban-card:hover .card-glow {
    transform: translateX(100%);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.urban-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.urban-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.urban-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        var(--asphalt),
        var(--asphalt) 2px,
        var(--bg-deep) 2px,
        var(--bg-deep) 10px
    );
    opacity: 0.3;
    z-index: 0;
}

.about-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glass-cyber-card {
    background: rgba(18, 20, 24, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 85, 0, 0.3);
    padding: 50px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.about-logo {
    width: 250px;
    height: auto;
    border-radius: 30px; /* Bordas arredondadas conforme solicitado */
    margin-bottom: 30px;
    border: 2px solid var(--neon-orange);
    box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 0 25px rgba(255, 85, 0, 0.6);
    background: #000;
    transition: transform 0.4s ease;
}

.about-logo:hover {
    transform: scale(1.05);
}

.cyber-timer {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--neon-orange);
    text-shadow: 0 0 15px var(--neon-orange-dim);
    margin: 10px 0;
}

.sharp-title {
    font-size: 3rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--neon-blue);
    margin: 20px 0 30px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.cyber-list {
    list-style: none;
}

.cyber-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cyber-list span {
    color: var(--neon-orange);
    font-weight: 900;
    margin-right: 10px;
}

/* Coverage */
.coverage h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.urban-box {
    background: var(--bg-surface);
    border-left: 4px solid var(--neon-blue);
    padding: 40px;
}

.urban-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.urban-box h3 i {
    color: var(--neon-blue);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-blue);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tag:hover {
    background: var(--neon-blue);
    color: #000;
}

.tech-list {
    list-style: none;
}

.tech-list li {
    margin-bottom: 12px;
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Footer & Maps */
.map-cyber-wrap {
    position: relative;
    height: 300px;
}

.map-cyber-wrap iframe {
    filter: invert(100%) hue-rotate(180deg) brightness(80%) contrast(120%);
}

.scanline {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: rgba(0, 229, 255, 0.5);
    opacity: 0.4;
    animation: scan 4s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.footer {
    background: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    width: 160px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.mission-text {
    font-family: monospace;
    color: var(--text-muted);
    margin-top: 15px;
}

.neon-line-bottom {
    font-size: 1.5rem;
    color: #fff;
    border-bottom: 2px solid var(--neon-orange);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.contact-line {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: color 0.3s;
}

.contact-line:hover { color: var(--neon-orange); }

.social-links-urban {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.cyber-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px; height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cyber-btn:hover {
    border-color: var(--neon-orange);
    color: var(--neon-orange);
    box-shadow: 0 0 15px var(--neon-orange-dim);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px dashed rgba(255,255,255,0.1);
    font-family: monospace;
    color: #a1a1aa;
}

.blink { animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }

/* FAB */
.fab-urban {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--neon-orange);
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px; height: 70px;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 0 20px var(--neon-orange-dim);
    text-decoration: none;
    transition: transform 0.3s;
    border: 2px solid #000;
}

.fab-urban i { font-size: 1.8rem; }
.fab-urban span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 900;
    margin-top: 2px;
}

.fab-urban:hover {
    transform: scale(1.1) rotate(-5deg);
    background: #fff;
}

/* Animations JS classes */
.slide-up-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s ease-out;
}

.slide-up-anim.visible, .reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; margin-top: 50px; }
    .hero-content { padding-right: 0; margin-bottom: 50px; max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-image-wrapper { width: 100%; }
    
    .about-container { grid-template-columns: 1fr; }
    .about-content { order: -1; } /* Text above image on mobile */
    .coverage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .glitch-text { font-size: 3.5rem; }
    .nav-btn { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--bg-deep);
        flex-direction: column;
        padding: 0; gap: 0;
        max-height: 0; overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .nav-links.active { max-height: 300px; border-bottom: 2px solid var(--neon-orange); }
    .nav-links a { padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links-urban { justify-content: center; }
}
