/* ============================================
   🎨 TIPOGRAFÍA Y VARIABLES CORPORATIVAS
   (Híbrido Cisco + Palo Alto)
=============================================== */
:root {
  --color-primary: #003a70;          /* Azul corporativo Cisco */
  --color-secondary: #005fa3;        /* Azul más vivo */
  --color-accent: #00a3e0;           /* Palo Alto style accent */
  --color-text: #1a1a1a;
  --color-light: #f4f6f8;
  --color-dark: #0d1b2a;

  --radius-sm: 6px;                 /* Bordes suaves premium */
  --radius-md: 10px;

  --shadow-soft: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-medium: 0 6px 18px rgba(0,0,0,0.12);

  --transition: 0.25s ease;
  --fade-duration: 0.9s;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background-color: white;
  line-height: 1.5;
  overflow-x: hidden;
}


/* ============================================
   🔵 NAVBAR PREMIUM
=============================================== */
.navbar {
  width: 100%;
  padding: 30px 0%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255,255,255,0.95);
  position: fixed;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo img {
  height: 60px;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.menu a {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: 0.25s ease;
}

.menu a:hover,
.menu .active {
  background-color: rgba(0, 58, 112, 0.10);
  color: var(--color-primary);
}


/* Dropdown */
.dropdown .submenu {
  display: none;
  position: absolute;
  background: white;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  margin-top: 6px;
  z-index: 9999;
}

.dropdown:hover .submenu {
  display: block;
}

.submenu li {
  padding: 8px 18px;
}

.submenu li:hover {
  background-color: var(--color-light);
}


/* ============================================
   🔵 BOTÓN CONTACTO
=============================================== */

.btn-contacto {
  padding: 10px 22px;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.25s ease;
}

.btn-contacto:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
}



/* ============================================
   🔵 MENÚ MÓVIL (SLIDE-IN Palo Alto Style)
=============================================== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--color-dark);
  border-radius: 4px;
  transition: var(--transition);
}

.menu {
  transition: transform 0.35s ease;
}

.menu-open {
  right: 0 !important;
}

@media (max-width: 920px) {
  .mobile-toggle {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 260px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 20px;
    box-shadow: var(--shadow-medium);
  }

  .menu ul {
    flex-direction: column;
    gap: 18px;
  }
}


/* ============================================
   🔥 HERO SLIDER PREMIUM
=============================================== */
.hero-slider {
  width: 100%;
  height: 90vh;
  margin-top: 80px;
  position: relative;
}

.swiper-slide {
  position: relative;
}

.slide-video {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  filter: brightness(0.65);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.55)
  );
}

.hero-content {
  position: absolute;
  bottom: 18%;
  left: 6%;
  max-width: 520px;
  color: white;
  animation: fadeInUp var(--fade-duration) ease forwards;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.btn-primary {
  margin-top: 18px;
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-accent);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
}


/* ============================================
   🎨 SERVICIOS (Cards premium)
=============================================== */
.services-section {
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 40px;
}

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

.service-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.service-card img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.btn-link {
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.btn-link:hover {
  color: var(--color-accent);
}


/* ============================================
   🎨 EMPRESAS CLIENTES
=============================================== */
.clients-grid img {
  height: 78px;
  filter: grayscale(1);
  opacity: 0.8;
  transition: var(--transition);
}

.clients-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
}


/* ============================================
   🎨 BENEFICIOS
=============================================== */
.benefit-card {
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}


/* ============================================
   🎨 CTA
=============================================== */
.cta-section {
    text-align: center;
    padding: 70px 40px;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #ffffff;
    border-radius: 18px;
    margin: 60px auto;
    max-width: 1100px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.20);
    position: relative;
    overflow: hidden;
}

/* Efecto Glow Moderno */
.cta-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.15);
    top: -250px;
    left: -250px;
    border-radius: 50%;
    animation: ctaGlow 6s infinite alternate ease-in-out;
}

@keyframes ctaGlow {
    from { transform: scale(1); opacity: 0.3; }
    to { transform: scale(1.3); opacity: 0.6; }
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 26px;
    opacity: 0.95;
}

/* Botón mejorado */
.cta-section .btn-primary {
    background-color: #ffffff;
    color: #0d47a1;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.cta-section .btn-primary:hover {
    background-color: #e1ecff;
    box-shadow: 0 10px 26px rgba(0,0,0,0.35);
    transform: translateY(-3px);
}


/* ============================================
   🎨 BLOG
=============================================== */
.blog-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.blog-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.blog-card img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}


/* ============================================
   🎨 FOOTER
=============================================== */
.footer {
  background-color: var(--color-dark);
  color: white;
  padding: 60px 5% 30px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column h4 {
  margin-bottom: 10px;
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  opacity: 0.8;
}


/* ============================================
   🔵 WHATSAPP FLOTANTE
=============================================== */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  animation: float 3s ease-in-out infinite;
}

.wa-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
}

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

/* ============================================
   ✨ ANIMACIONES (Palo Alto Style)
=============================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--fade-duration), transform var(--fade-duration);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}



.clients-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}


.footer-title {
  font-size: 1.8rem;
  font-weight: 800;
}

.footer-text {
  font-size: 1.05rem;
  opacity: 0.85;
}

.footer-social img {
  width: 32px;
  margin-right: 14px;
  transition: 0.3s;
}

.footer-social img:hover {
  transform: scale(1.15);
}

/* ==========================
   MARCAS ALIADAS (scroll infinito)
========================== */

.section--band {
  padding: 60px 5%;
  background-color: #f8fbff;
}

.brands-fullwidth {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  height: auto; /* ← RESTABLECE EL ALTO REAL */
}


.brands-scroll {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollMarcas 22s linear infinite;
}

.brands-scroll img {
  height: 55px;
  opacity: 0.9;
  transition: 0.3s ease;
}

.brands-scroll img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Animación */
@keyframes scrollMarcas {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.benefits-animated {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.benefit-box {
  padding: 30px 20px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.benefit-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  margin-bottom: 5px;
}

.section--accent {
    padding: 60px 5%;
    background-color: #f2f7fc;
}

.empresas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.empresa-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.empresa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.empresa-logo img {
  height: 70px;
  margin-bottom: 10px;
  filter: grayscale(1);
  opacity: 0.85;
  transition: .3s ease;
}

.empresa-card:hover .empresa-logo img {
  filter: grayscale(0);
  opacity: 1;
}

/* ======================
   NAVBAR – AJUSTE POSICIÓN
====================== */

.navbar nav {
    margin-left: 100px; /* mueve el menú hacia la izquierda */
}

/* ======================
   NAVBAR – AJUSTE LOGO
====================== */

.navbar-logo img {
    height: 100px !important;  /* tamaño más visible */
}

/* ==============================
   🔵 BENEFICIOS – ESTILO PREMIUM
============================== */

.benefits-section {
    text-align: center;
    padding: 60px 0;
}

.benefits-animated {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-box {
    background: linear-gradient(145deg, #ffffff, #f4f8fd);
    padding: 28px;
    border-radius: 16px;
    width: 240px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

/* Hover Premium */
.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.18);
    border-color: #0a4c8c;
}

/* EMOJI ESTILO CORPORATIVO */
.benefit-icon-emoji {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 12px;
    filter: saturate(1.1) brightness(1.05); /* mejora visual */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover del Emoji */
.benefit-box:hover .benefit-icon-emoji {
    transform: scale(1.15);
    opacity: 0.95;
}

/* Número */
.benefit-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: #003c71;
    margin-bottom: 10px;
}


/* ==========================
   SECCIÓN NOSOTROS (ORIGINAL RESTAURADA)
============================== */

.nosotros-section {
  position: relative;
  padding: 80px 0;
  background: url('img/nosotros-bg.jpg') center/cover no-repeat;
  color: #fff;
}

.nosotros-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.nosotros-section .container {
  position: relative;
  z-index: 2;
}

.nosotros-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.nosotros-contenido {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.nosotros-contenido .texto h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.nosotros-contenido .texto p {
  font-size: 1rem;
  color: #e9e9e9;
  line-height: 1.7;
}

/* ==========================
   QUIÉNES SOMOS – AISLADO
============================== */

.quienes-somos-section {
  background: #e6f3fc;
  padding: 100px 0 60px;
}

.quienes-somos-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #003c71;
  margin-bottom: 40px;
}

/* Tarjetas internas – AHORA AISLADAS */
.qs-card {
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto 45px;
  padding: 45px 35px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.qs-card h3 {
  color: #007bce;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.qs-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  max-width: 740px;
  margin: 0 auto;
}

/* Fundadores */
.qs-card .founders {
  margin-top: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.qs-card .founders span {
  display: block;
  margin-bottom: 6px;
}

/* ANIMACIÓN */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =======================================================
   SECCIÓN: QUÉ NOS DIFERENCIA
========================================================== */

.diferenciadores {
    padding: 80px 20px;
    background: #f4faff;
    text-align: center;
}

.diferenciadores .section-title {
    font-size: 34px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
}

.diferenciadores .intro-text {
    max-width: 850px;
    margin: 0 auto 45px auto;
    font-size: 18px;
    color: #444;
}

/* ===== GRID ===== */
.grid-diferenciadores {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding: 0 40px;
}

/* ===== TARJETAS ===== */
.grid-diferenciadores .item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    min-height: 230px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: .25s ease;
}

.grid-diferenciadores .item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===== ICONOS ===== */
.grid-diferenciadores .icono {
    font-size: 48px;
    margin-bottom: 12px;
}

/* ===== TITULOS ===== */
.grid-diferenciadores h3 {
    font-size: 20px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
}

/* ===== TEXTOS ===== */
.grid-diferenciadores p {
    font-size: 15px;
    color: #444;
    line-height: 1.45;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .grid-diferenciadores {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}
@media (max-width: 600px) {
    .grid-diferenciadores {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

/* =======================================================
   ANIMACIÓN FADE-UP
========================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SECCIÓN: HITOS (TIMELINE)
=============================================== */
.timeline {
    padding: 50px 20px;
}

.timeline-item {
    margin-bottom: 30px;
}

.timeline-item h4 {
    font-size: 22px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 16px;
    color: #444;
}
/* ============================================
   SECCIÓN: NUESTROS VALORES
=============================================== */
.valores-section {
  padding: 80px 20px;
  background: #f4faff;
  text-align: center;
}

.valores-section .section-title {
  font-size: 34px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 12px;
}

.valores-section .intro-text {
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
  font-size: 17px;
}

/* GRID */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 40px;
}

/* TARJETAS */
.valor {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
  min-height: 230px;
}

.valor:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ÍCONOS */
.valor-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

/* TITULOS */
.valor h3 {
  color: #003366;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXTO */
.valor p {
  color: #444;
  font-size: 15px;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .valores-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ============================================
   TIMELINE HORIZONTAL PREMIUM – CIBERNEX
============================================ */

.timeline-horizontal {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
}

.timeline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
}

/* Cada hito */
.timeline-step {
    min-width: 220px;
    background: #f4faff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* El punto */
.timeline-step .dot {
    width: 16px;
    height: 16px;
    background: #003a70;
    border: 3px solid #00a3e0;
    border-radius: 50%;
    margin: 0 auto 12px auto;
    box-shadow: 0 0 10px rgba(0,163,224,0.5);
}

/* Conector entre hitos */
.timeline-connector {
    flex: 1;
    height: 4px;
    background: #00a3e0;
    border-radius: 10px;
    min-width: 60px;
    box-shadow: 0 0 5px rgba(0,163,224,0.4);
}

/* Títulos */
.timeline-step h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 8px;
}

/* Texto */
.timeline-step p {
    font-size: 14px;
    color: #444;
}

/* RESPONSIVE: en móvil se vuelve vertical */
@media (max-width: 768px) {
    .timeline-wrapper {
        flex-direction: column;
        overflow: visible;
    }
    .timeline-connector {
        width: 4px;
        height: 40px;
        min-width: unset;
    }
}
/* ===============================
   LÍNEA DE TIEMPO CORPORATIVA
=============================== */

.timeline-cibernex {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f4f6f8, #ffffff);
  text-align: center;
}

.timeline-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.timeline-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  border-top: 5px solid #0073FF;
  transition: 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.timeline-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.timeline-connector {
  width: 80px;
  height: 4px;
  background: #0073FF;
  border-radius: 50px;
  box-shadow: 0 0 8px rgba(0,115,255,0.6);
}

.timeline-cibernex h3 {
  font-size: 22px;
  color: #0A0F1F;
  margin-bottom: 5px;
}

.timeline-cibernex h4 {
  font-size: 16px;
  color: #0073FF;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .timeline-track {
    flex-direction: column;
  }
  .timeline-connector {
    height: 40px;
    width: 4px;
  }
}

/* ==========================
   FOOTER – ESTILOS PROFESIONALES
============================== */

.footer {
  background: #0B1A2A;
  padding: 50px 0 0;
  color: #e4e4e4;
  font-size: 15px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 40px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 260px;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.footer-text {
  margin-bottom: 18px;
  max-width: 360px;
  line-height: 1.5;
}

/* Redes Sociales – FIX DEFINITIVO */
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

.footer-social a {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.footer-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover img {
  transform: scale(1.15);
  opacity: 0.85;
}

.footer-column h4 {
  color: #00A3FF;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #d7d7d7;
  transition: color .2s ease;
}

.footer-column ul li a:hover {
  color: #00A3FF;
}

.footer-bottom {
  text-align: center;
  padding: 18px;
  margin-top: 30px;
  border-top: 1px solid #123049;
  color: #cfcfcf;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    padding: 0 20px;
  }
}

/* ===== ICONOS SVG PROFESIONALES – NUESTROS VALORES ===== */

.valor-icon svg {
  width: 48px;
  height: 48px;
  stroke: #003366;
  transition: transform .2s ease;
}

.valor-item:hover svg {
  transform: scale(1.15);
}

/* ================================
   🔵 ESTILO GLOBAL PARA TITULOS PRINCIPALES
   Se aplica a TODOS los títulos de sección
================================== */

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #003E73;
  margin-top: 60px;
  margin-bottom: 10px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #0073FF;
  margin: 8px auto 0 auto;
  border-radius: 50px;
}

/* Para subtítulos tipo "frases debajo del título" */
.section-subtitle {
  text-align: center;
  color: #4a4a4a;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

body {
  font-family: 'Inter', sans-serif;
}

/* ===============================
   🔵 SECCIONES DE SERVICIOS
   =============================== */

.section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #0d2b4d;
  margin-bottom: 1rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00aaff);
  margin: 0.5rem auto 1rem;
  border-radius: 3px;
}

/* Feature principal */
.feature {
  margin: 2rem 0;
}

.feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    #f4f8fd 0%,
    #ffffff 60%,
    #eef4fb 100%
  );
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature.alt .feature-card {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-size: 2rem;
  letter-spacing: -0.5px;
  color: #0d2b4d;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-text p {
  font-size: 1rem;
  color: #334155;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.feature-media img {
  width: 420px;
  max-width: 100%;
  border-radius: 12px;
}

/* Tarjetas secundarias */
.servicios-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.servicio-card {
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform .25s ease;
}

.servicio-card:hover {
  transform: translateY(-6px);
}

.servicio-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.servicio-card h3 {
  color: #0d2b4d;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.servicio-card p {
  color: #555;
  font-size: .95rem;
  line-height: 1.4;
}

/* ==========================
   MAPA DE ATAQUES – ESTILO CORPORATIVO
========================== */

.mapa-ataques {
  padding: 60px 20px;
  background: #f4f7fb;
  text-align: center;
}

.mapa-ataques .section-title {
  margin-bottom: 10px;
}

.mapa-ataques .section-subtitle {
  margin-bottom: 25px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  color: #334155;
}

.mapa-container {
  width: 100%;
  height: auto;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* === CIBERSEGURIDAD – SVG & ANIMACIÓN === */
.service-icon {
  color: #0073ff;
  margin-bottom: 16px;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Fondo animado tipo enterprise */
.ciber-bg {
  background: linear-gradient(120deg, #0a0f1f, #0e2a47, #0a0f1f);
  background-size: 400% 400%;
  animation: bgFlow 12s ease infinite;
}

@keyframes bgFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.security-layers {
  background: linear-gradient(180deg, #f4f8fc, #ffffff);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
}

.security-layers .layer {
  background: #ffffff;
  border-left: 4px solid #0073ff;
  padding: 14px 18px;
  font-weight: 500;
  font-size: 15px;
  color: #0a0f1f;
  border-radius: 8px;
}


.animate-layer {
  opacity: 0;
  transform: translateX(20px);
  animation: layerIn 0.6s ease forwards;
}

.animate-layer:nth-child(1) { animation-delay: 0.1s; }
.animate-layer:nth-child(2) { animation-delay: 0.25s; }
.animate-layer:nth-child(3) { animation-delay: 0.4s; }
.animate-layer:nth-child(4) { animation-delay: 0.55s; }
.animate-layer:nth-child(5) { animation-delay: 0.7s; }

@keyframes layerIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.security-layers .layer {
  transition: all 0.3s ease;
  cursor: default;
}

.security-layers .layer:hover {
  background: linear-gradient(90deg, #0073ff15, #ffffff);
  transform: translateX(6px);
  box-shadow: 0 12px 28px rgba(0,115,255,0.15);
}

.highlight-layer {
  border-left-color: #0a0f1f;
  font-weight: 600;
  background: #f0f4fa;
}
.feature-text ul li {
  margin-bottom: 8px;
  color: #0f172a;
}

.cta-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
  color: #0073ff;
  text-decoration: none;
  position: relative;
}

.cta-link::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.cta-link:hover::after {
  transform: translateX(6px);
}

/* ==========================
   CONTACTO – ESTILO PREMIUM
========================== */

.contact-page {
  padding-top: 120px;
}

/* HERO */
.contact-hero-modern {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0d1b2a, #003a70);
  color: white;
}

.contact-hero-modern h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.contact-hero-modern p {
  opacity: 0.9;
  font-size: 1.1rem;
}

/* LOCACIONES */
.contact-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 60px 5%;
  background: #f4f7fb;
}

.location-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.location-card h3 {
  color: #003a70;
  margin-bottom: 8px;
}

.location-card iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 12px;
  margin-top: 10px;
}

/* FORMULARIO */
.contact-form-section {
  padding: 70px 20px;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 2rem;
  color: #003a70;
}

.contact-form {
  max-width: 700px;
  margin: 30px auto 0;
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

.contact-form textarea {
  margin-top: 16px;
}

.contact-form button {
  margin-top: 20px;
}

/* WhatsApp Contact CTA */
.whatsapp-contact {
  margin-top: 30px;
  text-align: center;
}

.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}
/* CONTACTO – MEJORA VISUAL SIN ROMPER */
.contact-box {
  max-width: 900px;
  margin: 60px auto;
  padding: 45px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 40, 120, 0.12);
  border: 1px solid #e6eef5;
}
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SERVICIOS – ICONOS SVG */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.servicio-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 20px 45px rgba(0,40,120,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,40,120,0.15);
}

.servicio-icon {
  margin-bottom: 18px;
}

.servicio-icon svg {
  display: block;
  margin: 0 auto;
}

/* ==========================
   SVG – ANIMACIÓN PROFESIONAL
========================== */

.servicio-icon svg {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.servicio-card:hover .servicio-icon svg {
  transform: scale(1.12);
  filter: drop-shadow(0 8px 18px rgba(0,115,255,0.35));
}

