/* VARIABLES DE COLORES NEÓN AUTOMATIZACIÓN Y CLOUD (CIANO) */
:root {
    --bg-dark: #060913;
    --neon-ciano: #00bfff;
    --borde-transparente: rgba(0, 191, 255, 0.2);
    --texto-gris: #a0aabf;
}

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

/* --- DESTAQUE ATIVO NO MENU (CIANO NEON) --- */
.navbar nav a.ativo {
    color: var(--neon-ciano) !important;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.8) !important;
    border-bottom: none !important;
}

.nav-path-ac {
    color: var(--neon-ciano);
    font-weight: 800;
    margin-left: 8px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
    font-size: 0.9em;
    white-space: nowrap;
}

/* 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: var(--neon-ciano); 
    margin: 0 5px; 
}

/* Títulos de Sección */
.ac-seccion-titulo {
    text-align: center;
    color: var(--neon-ciano);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 40px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-transform: uppercase;
    font-weight: bold;
}
.ac-seccion-titulo::before, .ac-seccion-titulo::after {
    content: "";
    height: 1px;
    width: 200px;
    background: linear-gradient(90deg, transparent, var(--neon-ciano), transparent);
}

.highlight-cyan {
    color: var(--neon-ciano);
}

/* =======================================
   HERO AC (3 COLUNAS - HORIZONTAL)
   ======================================= */
.ac-hero {
    padding: 80px 50px 20px; 
}
.ac-hero-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px; 
    border: 1px solid var(--borde-transparente);
    border-radius: 20px;
    padding: 60px; 
    background: linear-gradient(135deg, rgba(6, 9, 22, 0.95) 0%, rgba(0, 40, 60, 0.9) 100%),
                radial-gradient(circle at 10% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.15) inset;
}

.ac-hero-text {
    flex: 1.2; 
}

.ac-hero-text h1 { 
    font-size: 3.2rem; 
    color: #fff; 
    line-height: 1.1;
    letter-spacing: 2px;
    font-weight: 800; 
}
.ac-hero-text h2 { 
    font-size: 4.5rem; 
    line-height: 1; 
    font-weight: 900;
    color: var(--neon-ciano);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

.code-icon {
    font-family: monospace;
    font-size: 4.2rem; 
    font-weight: 400;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.8), 0 0 30px rgba(0, 191, 255, 0.4);
}

.ac-hero-text p { 
    color: #c0c0c0; 
    margin-top: 15px; 
    font-size: 1.1rem; 
    line-height: 1.4;
    font-weight: 300;
}

.hero-features-mini { 
    display: flex; 
    gap: 25px; 
    margin-top: 30px;
}
.mini-feat { text-align: center; }
.mini-feat img { height: 35px; margin-bottom: 8px; }
.mini-feat span { color: #fff; font-size: 0.8rem; }

.ac-hero-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.laptop-icon { 
    width: 100%;
    max-width: 320px; 
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.5)); 
    animation: flutuarElemento 4s ease-in-out infinite;
}

.ac-hero-right {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.logo-hero-ac { 
    width: 100%;
    max-width: 250px; 
    filter: drop-shadow(0 0 25px rgba(0, 191, 255, 0.3));
}

@keyframes flutuarElemento {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* =======================================
   GRID DE SERVICIOS (5 COLUMNAS)
   ======================================= */
.ac-servicios { padding: 30px 50px; }
.ac-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.ac-card {
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid var(--borde-transparente);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}
.ac-card:hover {
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--neon-ciano);
}
.ac-card h4 { color: #fff; font-size: 0.9rem; margin-bottom: 15px; height: 35px; }
.ac-card img { height: 60px; margin-bottom: 15px; }
.ac-card p.desc { font-size: 0.8rem; color: var(--texto-gris); margin-bottom: 20px; height: 60px; }

.ac-card ul { 
    list-style: none; 
    padding: 0; 
    text-align: left; 
    width: 100%;
    margin-bottom: 25px;
}
.ac-card ul li { font-size: 0.8rem; color: #fff; margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; }
.ac-card ul li img { height: 12px; margin: 2px 0 0 0; }

/* --- BARRA DE BENEFICIOS --- */
.ac-beneficios {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--borde-transparente);
    border-radius: 15px;
    margin: 0 50px 50px;
    padding: 25px 40px;
    background: rgba(10, 15, 30, 0.4);
}
.beneficio-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.beneficio-item img { height: 35px; }
.beneficio-item strong { color: #fff; display: block; font-size: 1rem; }
.beneficio-item p { color: var(--texto-gris); font-size: 0.8rem; margin: 0; }

/* --- PROCESO (6 PASOS) --- */
.ac-seccion-full { padding: 0 50px 50px; }
.proceso-timeline-6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.proc-step { text-align: center; width: 14%; }
.proc-step img { height: 40px; margin-bottom: 15px; }
.proc-step h5 { font-size: 0.8rem; color: var(--neon-ciano); margin-bottom: 5px; line-height: 1.4; }
.proc-step p { font-size: 0.75rem; color: var(--texto-gris); }
.seta-proceso { width: 20px; opacity: 0.5; }

/* --- PREGUNTAS FRECUENTES --- */
.ac-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.faq-columna {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-item {
    background: rgba(10, 15, 30, 0.5);
    border: 1px solid var(--borde-transparente);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}
.faq-item summary {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    color: #e0e0e0;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    transition: 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: var(--neon-ciano);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}
.faq-item[open] summary {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-item[open] summary::after {
    transform: rotate(45deg); 
}
.faq-item p {
    color: var(--texto-gris);
    font-size: 0.85rem;
    margin: 0;
    padding: 20px 25px;
    line-height: 1.6;
}

/* --- CTA BANNER FINAL --- */
.ac-cta-banner { padding: 0 50px 50px; }
.cta-content {
    background: linear-gradient(90deg, #001a33 0%, #000000 100%);
    border: 1px solid var(--neon-ciano);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.15);
}
.rocket-img { 
    height: 120px; 
    filter: drop-shadow(0 0 15px rgba(0,191,255,0.6)); 
    animation: flutuarSatelite 4s ease-in-out infinite; 
}
@keyframes flutuarSatelite {
    0% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(-2deg); }
}

.cta-text { flex: 1; margin: 0 40px 0 0; text-align: left; }
.cta-text h2 { color: #fff; font-size: 2rem; line-height: 1.2; margin-bottom: 10px;}
.cta-text p { color: var(--texto-gris); font-size: 1.1rem; }

.btn-cotizar-verde {
    background: transparent;
    border: 2px solid #00ff55;
    color: #00ff55;
    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-verde img { width: 20px; }
.btn-cotizar-verde:hover { 
    background: rgba(0,255,85,0.1); 
    box-shadow: 0 0 15px #00ff55; 
}

/* =========================================
   FOOTER (SEM DUPLICAR SETA DO STYLE.CSS)
   ========================================= */
.sys-footer {
    background-color: #000; 
    padding: 60px 8% 30px; 
    border-top: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 350px 180px 220px auto; 
    gap: 50px; 
    margin-bottom: 50px;
    justify-content: start;
}

/* 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; 
}

/* 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 - Apenas largura para não quebrar a linha, A SETA VEM DO STYLE.CSS! */
.footer-coluna.enlaces ul li { 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    width: 160px; 
    white-space: nowrap; 
}
/* REMOVIDO o ::after daqui para não gerar duas setas! */

/* 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: 1200px) {
    .ac-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .ac-beneficios { flex-wrap: wrap; gap: 20px; }
    .beneficio-item { width: 45%; }
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; justify-content: center; }
}
@media (max-width: 900px) {
    .ac-hero-box { flex-direction: column; text-align: center; }
    .ac-hero-right { justify-content: center; margin-top: 30px; }
    .hero-features-mini { justify-content: center; }
}
@media (max-width: 768px) {
    .ac-hero { padding-top: 80px; }
    .ac-grid-5 { grid-template-columns: 1fr; }
    .proceso-timeline-6 { flex-direction: column; gap: 30px; }
    .proc-step { width: 100%; }
    .seta-proceso { transform: rotate(90deg); margin: 10px 0; }
    .ac-faq-grid { grid-template-columns: 1fr; }
    .cta-content { flex-direction: column; text-align: center; gap: 30px; }
    .cta-text { margin: 0; text-align: center; } 
    
    .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.enlaces ul li::after { display: none; }
    .footer-coluna.contato ul li { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .redes-sociais-container { justify-content: center; }
}