/* Configurações Gerais do Menu */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.neon-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00d2ff;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5);
}

.neon-logo {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.neon-logo span {
    color: #00d2ff;
    font-size: 0.8rem;
    display: block;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00d2ff;
}

/* Lista de Links */
.neon-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.neon-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
    transition: color 0.3s ease;
}

.neon-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00d2ff;
    box-shadow: 0 0 10px #00d2ff, 0 0 20px #00d2ff;
    transition: width 0.3s ease;
}

.neon-menu li a:hover {
    color: #00d2ff;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
}

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

.neon-menu li a.btn-atendimento {
    border: 2px solid #00d2ff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
    transition: all 0.4s ease;
}

.neon-menu li a.btn-atendimento:hover {
    background: #00d2ff;
    color: #000000 !important;
    box-shadow: 0 0 20px #00d2ff, 0 0 40px #00d2ff;
    text-shadow: none;
}

/* Menu Hamburguer */
.neon-menu-toggle {
    display: none;
}

.neon-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.neon-burger span {
    background-color: #ffffff;
    height: 3px;
    width: 25px;
    transition: all 0.3s ease;
}

/* Configurações Globais das Seções */
.tech-section {
    padding: 80px 5% 100px 5%;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.black-bg { background-color: #000000; }
.dark-bg { background-color: #0a0a0c; }

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

.neon-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 2px;
    border-left: 4px solid #00d2ff;
    padding-left: 15px;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* --- SEÇÃO INÍCIO --- */
.hero-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 40%, rgba(0,210,255,0.1) 100%), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=1200') no-repeat center center/cover;
    height: 85vh;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
    letter-spacing: 3px;
    color: #ffffff;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: #00d2ff;
    margin-top: 5px;
    text-shadow: 0 0 15px #00d2ff;
    font-weight: 400;
    letter-spacing: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    color: #cccccc;
    margin: 25px 0 40px 0;
    line-height: 1.6;
}

.neon-btn-principal {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #00d2ff;
    border: 2px solid #00d2ff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
    transition: all 0.3s ease;
}

.neon-btn-principal:hover {
    background: #00d2ff;
    color: #000000;
    box-shadow: 0 0 25px #00d2ff;
}

/* --- SEÇÃO QUEM SOMOS --- */
.text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #dddddd;
    margin-bottom: 20px;
}

.tech-box {
    background: rgba(0, 210, 255, 0.03);
    border: 1px solid rgba(0, 210, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    box-shadow: inset 0 0 15px rgba(0, 210, 255, 0.05);
}

.tech-box h3 { color: #00d2ff; margin-top: 0; }
.tech-box ul { padding-left: 20px; line-height: 2; color: #eee; }

/* --- SEÇÃO MISSÃO --- */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-card {
    background: #000000;
    border: 1px solid #222;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: #00d2ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.1);
}

.card-icon { font-size: 2.5rem; margin-bottom: 15px; }
.tech-card h3 { color: #00d2ff; font-size: 1.4rem; margin-bottom: 15px; }
.tech-card p { color: #aaaaaa; line-height: 1.6; font-size: 0.95rem; }

/* --- SEÇÃO ATENDIMENTO --- */
.text-center { text-align: center; }
.subtitle { color: #aaa; font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px auto; line-height: 1.6; }

.atendimento-box {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0a0a0c 0%, #000000 100%);
    border: 2px solid #00d2ff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
}

.neon-btn-wpp {
    display: block;
    padding: 16px;
    background: #00d2ff;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.neon-btn-wpp:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px #00d2ff;
}

/* --- SEÇÃO LOCALIZAÇÃO & FOOTER --- */
.location-details h3 { font-size: 1.8rem; color: #00d2ff; margin-top: 0; }
.location-details p { color: #ccc; margin: 12px 0; }
.instagram-ref a { color: #00d2ff; text-decoration: none; font-weight: bold; }
.instagram-ref a:hover { text-decoration: underline; }

.map-placeholder {
    border: 2px solid #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.tech-footer {
    background-color: #000000;
    text-align: center;
    padding: 30px;
    border-top: 1px solid #111;
    color: #666;
    font-size: 0.9rem;
}

/* Responsividade Mobile e Efeito Transition-Delay */
@media (max-width: 992px) {
    .neon-burger {
        display: flex;
    }

    .neon-menu {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.95);
        border-left: 2px solid #00d2ff;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    }

    .neon-menu li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.4s ease;
    }

    .neon-menu-toggle:checked ~ .neon-menu {
        right: 0;
    }

    .neon-menu-toggle:checked ~ .neon-menu li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.1s * var(--i));
    }

    .neon-menu-toggle:checked ~ .neon-burger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
        background-color: #00d2ff;
    }
    .neon-menu-toggle:checked ~ .neon-burger span:nth-child(2) {
        opacity: 0;
    }
    .neon-menu-toggle:checked ~ .neon-burger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
        background-color: #00d2ff;
    }

    .grid-2-col { grid-template-columns: 1fr; }
    .tech-section { padding: 60px 20px; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content h2 { font-size: 1.3rem; letter-spacing: 2px; }
}
