/* VARIABLES SOBRE NOSOTROS (ROJO NEÓN) */
:root {
    --bg-dark: #060913;
    --neon-red: #ff003c;
    --texto-gris: #a0aabf;
    --borde-transparente-red: rgba(255, 0, 60, 0.2);
}

body { background-color: var(--bg-dark); }

/* --- UTILIDADES --- */
.text-red { color: var(--neon-red); }

/* --- DESTAQUE ATIVO NO MENU (Borda Vermelha) --- */
.navbar nav a.ativo {
    color: #fff !important;
    border-bottom: 2px solid var(--neon-red) !important;
    padding-bottom: 5px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 50px; 
    font-size: 0.8rem; 
    color: var(--texto-gris); 
    text-transform: uppercase;
}
.breadcrumbs a { color: var(--texto-gris); text-decoration: none; margin: 0 5px; }
.breadcrumbs span { color: #fff; margin: 0 5px; }

/* Títulos de Sección Reutilizables */
.sn-seccion-titulo {
    color: var(--neon-red);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}
.sn-seccion-titulo.center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}
.sn-seccion-titulo.center::before, .sn-seccion-titulo.center::after {
    content: "";
    height: 1px;
    width: 250px;
    background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
}
.sn-seccion-titulo-left {
    color: var(--neon-red);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

/* =======================================
   HERO SOBRE NOSOTROS
   ======================================= */
.sn-hero { padding: 50px 50px 20px; }

.sn-hero-content {
    display: flex;
    justify-content: center; /* Centraliza o bloco na tela */
    align-items: center;
    gap: 60px; /* Define uma distância exata e curta entre texto e logo */
    padding: 20px 0;
    max-width: 1100px; /* Limita a largura pra não espalhar no monitor */
    margin: 0 auto;
}

.sn-hero-text { 
    flex: 1; 
    max-width: 550px; /* Evita que o texto estique demais */
}

.sn-hero-text h1 { 
    font-size: 4rem; 
    color: #fff; 
    line-height: 1;
    font-weight: 900; 
    margin-bottom: 20px;
}
.sn-hero-text h1 .text-red { text-shadow: 0 0 15px rgba(255, 0, 60, 0.5); }
.sn-hero-text .subtitle {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 15px;
}
.sn-hero-text .desc {
    color: var(--texto-gris);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Logo Círculos Neón */
.sn-hero-logo { 
    flex: 1; 
    display: flex; 
    justify-content: flex-start; /* Puxa o logo pra esquerda, colando no texto */
}

.rings-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 0, 60, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.15) inset, 0 0 20px rgba(255, 0, 60, 0.15);
}
.ring-1 { width: 100%; height: 100%; animation: pulseRing 4s infinite; }
.ring-2 { width: 80%; height: 80%; animation: pulseRing 4s infinite 1s; }
.ring-3 { width: 60%; height: 60%; animation: pulseRing 4s infinite 2s; }
.logo-center {
    position: relative;
    z-index: 10;
    width: 200px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 60, 0.5));
}

@keyframes pulseRing {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

/* =======================================
   HISTORIA
   ======================================= */
.sn-historia {
    display: flex;
    gap: 50px;
    padding: 50px;
    align-items: flex-start;
}
.sn-hist-left { flex: 1; display: flex; justify-content: center;}
.laptop-img { width: 100%; max-width: 500px; filter: drop-shadow(0 0 20px rgba(255, 0, 60, 0.3)); }

.sn-hist-right { flex: 1.2; }
.sn-hist-right h2 { color: #fff; font-size: 2rem; margin-bottom: 15px; }
.hist-intro { color: var(--texto-gris); font-size: 0.95rem; line-height: 1.6; margin-bottom: 30px; }

/* Timeline vertical */
.hist-timeline {
    border-left: 2px dashed rgba(255, 0, 60, 0.4);
    margin-left: 20px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hist-item {
    position: relative;
}
.hist-icon {
    position: absolute;
    left: -61px; /* Posiciona exatamente em cima da linha dashed */
    top: 0;
    background: var(--bg-dark);
    border: 2px solid var(--neon-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.4);
}
.hist-icon img { height: 20px; }
.hist-item p { color: var(--texto-gris); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* =======================================
   MISIÓN Y VISIÓN
   ======================================= */
.sn-mision-vision {
    display: flex;
    gap: 30px;
    padding: 20px 50px 50px;
}
.mv-card {
    flex: 1;
    border: 1px solid var(--borde-transparente-red);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(10, 15, 30, 0.4);
}
.mv-icon-wrapper {
    min-width: 80px;
    height: 80px;
    border: 2px solid var(--neon-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.3) inset;
}
.mv-icon-wrapper img { height: 40px; }
.mv-text h3 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.mv-text p { color: var(--texto-gris); font-size: 0.9rem; line-height: 1.5; margin: 0; }

/* =======================================
   NUESTROS VALORES (GRID 6)
   ======================================= */
.sn-seccion { padding: 0 50px 50px; }
.sn-valores-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}
.valor-card {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    background: rgba(255,255,255,0.02);
}
.valor-card img { height: 40px; margin-bottom: 15px; }
.valor-card h4 { color: #fff; font-size: 0.9rem; margin-bottom: 10px; }
.valor-card p { color: var(--texto-gris); font-size: 0.75rem; line-height: 1.4; margin: 0; }

/* =======================================
   NÚMEROS
   ======================================= */
.sn-numeros-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}
.num-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.num-item img { height: 40px; }
.num-text { display: flex; flex-direction: column; }
.num-val { font-size: 1.8rem; font-weight: bold; line-height: 1; margin-bottom: 5px;}
.num-desc { color: #fff; font-size: 0.8rem; max-width: 120px; line-height: 1.2;}

/* =======================================
   SERVICIOS (GRID 8 COLUNAS)
   ======================================= */
.sn-servicios-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}
.srv-item {
    text-align: center;
    border: 1px solid var(--borde-transparente-red);
    border-radius: 10px;
    padding: 20px 10px;
    background: rgba(10, 15, 30, 0.4);
}
.srv-item img { height: 35px; margin-bottom: 15px; }
.srv-item h5 { color: #fff; font-size: 0.75rem; margin-bottom: 8px; min-height: 25px; }
.srv-item p { color: var(--texto-gris); font-size: 0.65rem; line-height: 1.3; margin: 0; }

/* =======================================
   PROCESO TIMELINE HORIZONTAL
   ======================================= */
.sn-proceso-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    padding: 0 20px;
}
.p-step-red {
    text-align: center;
    width: 14%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.step-head img { height: 30px; }
.step-num { color: var(--neon-red); font-size: 1.2rem; font-weight: bold; }
.p-step-red h5 { color: #fff; font-size: 0.8rem; margin-bottom: 8px; }
.p-step-red p { color: var(--texto-gris); font-size: 0.75rem; line-height: 1.3; margin: 0; }
.arrow-dashed { width: 12px; margin-top: 15px; opacity: 0.8; }

/* =======================================
   CTA BANNER
   ======================================= */
.sn-cta-banner { padding: 0 50px 50px; }
.cta-red-box {
    background: transparent;
    border: 1px solid var(--neon-red);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.15) inset;
}
.cta-rocket-img { height: 100px; filter: drop-shadow(0 0 15px rgba(255,0,60,0.5)); animation: floatRocket 4s infinite;}
.cta-red-text { flex: 1; }
.cta-red-text h2 { color: #fff; font-size: 1.8rem; line-height: 1.3; margin-bottom: 10px; }
.cta-red-text p { color: var(--texto-gris); font-size: 1rem; margin: 0; }

.btn-cotizar-blanco {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    white-space: nowrap;
}
.btn-cotizar-blanco img { width: 20px; }
.btn-cotizar-blanco:hover { background: rgba(255,255,255,0.1); box-shadow: 0 0 15px rgba(255,255,255,0.3); }

@keyframes floatRocket {
    0% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(-5deg); }
}

/* =========================================
   FOOTER (IDÊNTICO À PRIMEIRA IMAGEM DOS SISTEMAS - INTOCÁVEL)
   ========================================= */
.sys-footer {
    background-color: #000; 
    padding: 60px 8% 30px; 
    border-top: none;
}

.footer-top {
    display: grid;
    /* Grid com largura fixa/proporcional correta pra distanciar os itens e dar respiro */
    grid-template-columns: 380px 200px 260px auto; 
    gap: 30px; 
    margin-bottom: 50px;
    justify-content: space-between;
}

/* Coluna 1: Logo e Descrição */
.col-logo { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}

.logo-footer-container { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 25px; 
}

.footer-logo { 
    width: 70px; 
    filter: none; 
}

.footer-logo-texto { 
    width: 160px; 
}

.footer-desc {
    color: var(--texto-gris);
    font-size: 15px; 
    line-height: 1.6;
    margin: 0;
    max-width: 330px; /* Quebra no lugar exato da foto */
}

/* Títulos das colunas */
.footer-coluna h4 { 
    color: #fff; 
    font-size: 15px; 
    margin-bottom: 25px; 
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Listas Links */
.footer-coluna ul { 
    list-style: none; 
    padding: 0; 
    margin: 0;
}

.footer-coluna ul li { 
    margin-bottom: 18px; 
    font-size: 14px; 
    color: var(--texto-gris); 
}

.footer-coluna ul li a { 
    color: var(--texto-gris) !important; 
    text-decoration: none; 
    transition: 0.3s; 
}

.footer-coluna ul li a:hover { 
    color: #fff !important; 
}

/* Coluna 2: ENLACES - Seta > separada na direita sem quebrar a linha */
.footer-coluna.enlaces ul li { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    width: 170px; /* Garante que a seta fique cravada lá na direita */
    white-space: nowrap;
}

/* A SETA > É HERDADA DO STYLE.CSS GLOBAL, ENTÃO NÃO PRECISAMOS REDECLARAR AQUI PARA NÃO DUPLICAR */

/* Coluna 4: Contato com ícones */
.footer-coluna.contato ul li { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.footer-coluna.contato ul li img { 
    width: 18px; 
}

/* --- Linha de Baixo (Copyright e Redes) --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
    padding-top: 25px;
}

.copyright { 
    font-size: 13px; 
    color: var(--texto-gris); 
    margin: 0;
}

.redes-sociais-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.siguenos-text {
    color: var(--texto-gris); 
    font-size: 14px;
}

.redes-sociais { 
    display: flex; 
    gap: 12px; 
}

.redes-sociais img { 
    width: 24px; 
    height: 24px;
    transition: 0.3s; 
    cursor: pointer; 
    filter: none; 
}

.redes-sociais img:hover { 
    transform: translateY(-3px); 
}

/* --- RESPONSIVO --- */
@media (max-width: 1400px) {
    .sn-servicios-grid { grid-template-columns: repeat(4, 1fr); }
    .sn-valores-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1200px) {
    .sn-mision-vision { flex-direction: column; }
    .sn-historia { flex-direction: column; align-items: center; text-align: center; }
    .hist-timeline { text-align: left; }
    .sn-numeros-container { flex-wrap: wrap; justify-content: center; gap: 30px; }
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; justify-content: center; }
}
@media (max-width: 900px) {
    .sn-hero-content { flex-direction: column; text-align: center; }
    .sn-hero-logo { justify-content: center; margin-top: 40px; padding-right: 0;}
    .sn-proceso-timeline { flex-wrap: wrap; justify-content: center; gap: 20px;}
    .p-step-red { width: 30%; }
    .arrow-dashed { display: none; }
}
@media (max-width: 768px) {
    .sn-hero { padding-top: 80px; }
    .sn-valores-grid { grid-template-columns: repeat(2, 1fr); }
    .sn-servicios-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-red-box { flex-direction: column; text-align: center; }
    .p-step-red { width: 100%; }
    
    .sys-footer { padding: 50px 5% 30px; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .col-logo { align-items: center; max-width: 100%;}
    .footer-desc { text-align: center; max-width: 100%; }
    .footer-coluna.enlaces ul li { justify-content: center; width: 100%; gap: 10px;}
    .footer-coluna.contato ul li { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .redes-sociais-container { justify-content: center; }
}