:root {
    --verde-neon: #008B00;
    --dark-bg: #050805;
    --card-bg: #080c08;
}

/* RESET TOTAL PARA MATAR ROXO/AZUL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    
}
a, a:visited { color: inherit; }

body {
    background-color: var(--dark-bg);
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.header {
    background: #000;
    border-bottom: 1px solid #002b00;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.container-header {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.navbar-brand {
    color: var(--verde-neon) !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* MENU PC */
.menu {
    display: flex;
    gap: 20px;
    align-items: center;
}
.menu a {
    color: #eaeaea !important;
    font-size: 0.9rem;
    transition: 0.3s;
}
.menu a:hover {
    color: var(--verde-neon) !important;
}

/* BOTÕES ESTILO ADMIN (TRANSPARÊNCIA) */
.btn-header, .btn-principal, .btn-plano {
    border: 1px solid var(--verde-neon) !important;
    background: rgba(0, 255, 65, 0.05) !important;
    color: var(--verde-neon) !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-header:hover, .btn-principal:hover {
    background: var(--verde-neon) !important;
    color: #eaeaea !important;
}

/* ESCONDER HAMBURGUER NO PC */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--verde-neon);
    font-size: 28px;
}

/* --- HERO SECTION (A MÁGICA INICIAL) --- */
.hero {
    position: relative;
    padding: 150px 0 120px;
    background: #000;
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.08) 0%, transparent 70%);
    z-index: 1; /* Fica no fundo */
    pointer-events: none; /* O clique "atravessa" ela */
}

.hero-content {
    position: relative;
    z-index: 10; /* Fica na frente da overlay */
}

.badge-tech {
    background: rgba(0, 255, 65, 0.1);
    color: var(--verde-neon);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid #008b00;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 25px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--verde-neon);
    display: block;
}

.hero p {
    font-size: 1.2rem;
    color: #eaeaea;
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-secundario {
    border: 1px solid #008b00;
    padding: 12px 30px;
    color: #fff !important;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-secundario:hover {
    border-color: var(--verde-neon);
    color: var(--verde-neon) !important;
}

/* --- SEÇÃO HEADER TITLES --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.section-header p { color: #eaeaea ; font-size: 1rem; }

/* --- SERVIÇOS HOME --- */
.servicos-home { padding: 100px 0; background: #050805; }

.card-icon {
    font-size: 2.5rem;
    color: var(--verde-neon);
    margin-bottom: 20px;
}

/* --- PLANOS HOME (GLASS) --- */
.planos-home { padding: 100px 0; background: #000; }

.plano {
    position: relative;
    background: rgba(10, 15, 10, 0.5);
    border: 1px solid #008b00;
    padding: 40px;
    border-radius: 8px;
    transition: 0.4s;
}

.plano-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #111;
    color: #008b00;
    padding: 5px 15px;
    font-size: 0.7rem;
    border: 1px solid #008b00;
    border-radius: 4px;
}

.plano.destaque {
    border-color: var(--verde-neon);
    background: rgba(0, 255, 65, 0.02);
    transform: scale(1.05);
}

.plano.destaque .plano-tag {
    background: var(--verde-neon);
    color: #fff;
    border-color: var(--verde-neon);
    font-weight: bold;
}

.plano h3 { margin-bottom: 10px; font-size: 1.5rem; }

.plano ul {
    text-align: left;
    margin: 25px 0;
    padding: 0;
}

.plano li {
    list-style: none;
    color: #eaeaea;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.plano li i { color: var(--verde-neon); margin-right: 10px; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .plano.destaque { transform: scale(1); margin: 20px 0; }
}


/* HERO */
.hero {
    color:#eaeaea;
    text-align: center;
}
.hero h1{
    color: #fff;
}

/* GRIDS E CARDS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}
.cards, .planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: var(--card-bg);
    border: 1px solid #008b00;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    color: #eaeaea;
}

.card h3 {
    color: #fff;
}

.plano {
    background: var(--card-bg);
    border: 1px solid #002b00;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
}
.plano.destaque {
    border-color: var(--verde-neon);
    box-shadow: 0 0 15px rgba(0,255,65,0.1);
}
.preco {
    color: var(--verde-neon);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0;
}

/* FOOTER CENTRALIZADO */
.footer {
    background: #000;
    padding: 50px 20px;
    border-top: 1px solid #002b00;
    text-align: center;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-logo img {
    display: block;
    margin: 0 auto;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.footer-links a {
    color: #555 !important;
    font-size: 0.8rem;
}

/* CHAT SÓLIDO */
.floating-support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
.chat-body {
    display: none;
    background: #0a0a0a;
    border: 1px solid var(--verde-neon);
    padding: 20px;
    border-radius: 8px;
    width: 260px;
    margin-bottom: 10px;
}
.chat-body.ativo {
    display: block;
}
.float-chat-btn {
    background: var(--verde-neon);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* --- PÁGINA DE SERVIÇOS (PADRÃO TECHNOSIQ) --- */
.servicos-page {
    padding: 100px 0;
    background: radial-gradient(circle at top, #0a0f0a 0%, #050805 100%);
}

.servicos-page .titulo-principal {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.servicos-page .titulo-principal span {
    color: var(--verde-neon);
}

.servicos-page .subtitulo {
    text-align: center;
    color: #eaeaea;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

/* GRID DE SERVIÇOS DINÂMICOS */
.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.card-servico {
    background: var(--card-bg) !important;
    border: 1px solid #002b00 !important;
    padding: 40px 30px;
    border-radius: 4px; /* Padronizado com Admin */
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-servico:hover {
    border-color: var(--verde-neon) !important;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.05);
    background: rgba(0, 43, 0, 0.2) !important;
}

/* ÍCONES */
.card-servico .icone {
    font-size: 40px;
    color: var(--verde-neon);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
}

.card-servico h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-servico p {
    color: #eaeaea;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1; /* Garante que os botões fiquem alinhados embaixo */
}

/* BOTÃO INTERNO DOS CARDS */
.btn-saiba-mais {
    border: 1px solid var(--verde-neon) !important;
    background: rgba(0, 255, 65, 0.05) !important;
    color: var(--verde-neon) !important;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    width: 100%;
}

.btn-saiba-mais:hover {
    background: var(--verde-neon) !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.aviso-vazio {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    border: 1px dashed #002b00;
    color: #555;
}

/* --- PÁGINA DE PORTFÓLIO --- */
.portfolio-page {
    padding: 100px 0;
    background: radial-gradient(circle at bottom, #0a0f0a 0%, #050805 100%);
}

.portfolio-page .titulo-secao {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-page .subtitulo-secao {
    text-align: center;
    color: #eaeaea;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

/* GRID DO PORTFÓLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.portfolio-card {
    background: var(--card-bg);
    border: 1px solid #002b00;
    border-radius: 4px;
    overflow: hidden; /* Garante que a imagem não saia das bordas */
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    border-color: var(--verde-neon);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 255, 65, 0.1);
}

/* TRATAMENTO DE IMAGEM RESPONSIVA */
.portfolio-img {
    width: 100%;
    aspect-ratio: 16 / 9; /* Proporção de cinema */
    overflow: hidden;
    position: relative;
    background: #000;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* A imagem preenche o espaço sem distorcer */
    transition: 0.5s;
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1); /* Efeito de zoom no hover */
}

/* ÍCONE DE PLAY NO VÍDEO */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--verde-neon);
    font-size: 4rem;
    opacity: 0.8;
    transition: 0.3s;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.portfolio-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* CONTEÚDO DO CARD */
.portfolio-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-content h3 {
    color: var(--verde-neon);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.portfolio-content p {
    color: #eaeaea;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* BOTÕES PORTFÓLIO */
.portfolio-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-portfolio {
    flex: 1;
    text-align: center;
    border: 1px solid var(--verde-neon);
    background: rgba(0, 255, 65, 0.05);
    color: var(--verde-neon);
    padding: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    min-width: 120px;
}

.btn-portfolio:hover {
    background: var(--verde-neon);
    color: #000;
}

.btn-video {
    background: rgba(204, 0, 0, 0.1);
    border-color: #cc0000;
    color: #ff4d4d;
}

.btn-video:hover {
    background: #cc0000;
    color: #fff;
}

/* --- PÁGINA DE ORÇAMENTO --- */
.orcamento-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #0a0f0a 0%, #000 100%);
}

.orcamento-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.orcamento-info h2 {
    font-size: 2.5rem;
    color: #fff;
    margin: 20px 0;
}

.orcamento-info h2 span { color: var(--verde-neon); }
.orcamento-info p { color: #eaeaea; margin-bottom: 30px; }

.contato-direto .item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #eaeaea;
}

.contato-direto i { color: var(--verde-neon); font-size: 1.2rem; }

/* CARD DO FORMULÁRIO */
.orcamento-card {
    background: rgba(10, 15, 10, 0.8);
    border: 1px solid #002b00;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    color: var(--verde-neon);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-group label i { margin-right: 5px; opacity: 0.7; }

/* INPUTS ESTILO GLASS */
.form-technosiq input, 
.form-technosiq select, 
.form-technosiq textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid #1a1a1a !important;
    color: #fff !important;
    padding: 12px 15px;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.form-technosiq input:focus, 
.form-technosiq select:focus, 
.form-technosiq textarea:focus {
    border-color: var(--verde-neon) !important;
    background: rgba(0, 255, 65, 0.02) !important;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
}

/* BOTÃO DE ENVIO */
.btn-enviar-orcamento {
    width: 100%;
    background: var(--verde-neon) !important;
    color: #fff !important;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-enviar-orcamento:hover {
    box-shadow: 0 0 25px rgba(0, 255, 65, 0.4);
    transform: translateY(-2px);
}

/* ALERTS PERSONALIZADOS */
.alert-status {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-status.sucesso { background: rgba(0, 255, 65, 0.1); border: 1px solid var(--verde-neon); color: var(--verde-neon); }
.alert-status.erro { background: rgba(255, 0, 0, 0.1); border: 1px solid #ff4141; color: #ff4141; }

/* MOBILE */
@media (max-width: 992px) {
    .orcamento-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}


/* MOBILE */
@media (max-width: 768px) {
    .menu {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        padding: 20px;
        border-bottom: 1px solid var(--verde-neon);
    }
}