@charset "utf-8";
/* =============================== */
/* INTELSYSNET LAYOUT CONTENIDO */
/* =============================== */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #e5e7eb;
  font-family: Arial, sans-serif;
}

/* WRAPPER */
.wrapper {
  max-width: 1400px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* ================= HEADER ================= */

.zona-1 {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  z-index: 1000;
  transition: all 0.35s ease;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.zona-1.header-scrolled {
  background: #0f172a;
}

.header-container {
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img { height: 75px; }

.menu-area a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: #0f172a;
  transition: 0.3s;
}

.zona-1.header-scrolled .menu-area a { color: #ffffff; }
.menu-area a:hover { color: #38bdf8; }

/* ================= HERO ================= */

.zona-2 {
  height: 560px;
  background: url("../img/hero-infraestructura.jpg") center center / cover no-repeat;
  margin-top: 110px;
  position: relative;
}

.zona-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), rgba(0,0,0,0.25));
}

/* ================= HUB ================= */

.zona-3 {
  padding: 80px 0 140px 0;
  margin-top: -60px;
  background: url("../img/bg-network.jpg") center center / cover no-repeat;
}

.hub-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: left;   /* 🔥 centrado real */
}

/* TITULO */
.hub-title {
  font-family: 'Audiowide', sans-serif;
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hub-subtitle {
  font-size: 18px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 80px;
}
/* GRID */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* HUB ITEM */
.hub-item {
  position: relative;
  cursor: pointer;
  transition: 0.4s ease;
}

.hub-item img {
  width: 100%;
  border-radius: 16px;
  transition: 0.4s ease;
}

.hub-item:hover {
  transform: translateY(-18px) scale(1.05);
  z-index: 30;
}

.hub-item:hover img {
  box-shadow: 0 0 40px rgba(255,106,0,0.6);
}

/* ===== MENÚ FLUIDO FINAL ===== */

.hub-menu {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 100%;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(5px);
  padding: 18px 22px;
  border-radius: 0 0 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(-25px);
  transition: opacity 0.6s ease, transform 0.7s ease;
}

.hub-item:hover .hub-menu {
  opacity: 1;
  transform: translateY(0);
}

.hub-menu a {
  color: #ff6a00;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-15px);
  opacity: 0;
  transition: all 0.6s ease;
}

.hub-item:hover .hub-menu a {
  transform: translateY(0);
  opacity: 1;
}

.hub-item:hover .hub-menu a:nth-child(1) { transition-delay: 0.15s; }
.hub-item:hover .hub-menu a:nth-child(2) { transition-delay: 0.28s; }

.hub-menu a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px #ff6a00;
  transform: translateX(8px);
}
/* ================= HERO CONTENT ================= */

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 600px;
}

.hero-content h1 {
  font-family: 'Audiowide', sans-serif;
  font-size: 38px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* BOTONES HERO */

.btn-hero {
  position: relative;
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.35s ease;
  overflow: hidden;
  border: 2px solid #ff6a00;
  color: #ffffff;
  backdrop-filter: blur(4px);
}

/* curva del logo simulada */
.btn-hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,106,0,0.25), transparent 60%);
  top: -50%;
  left: -50%;
  transition: 0.5s ease;
}

.btn-hero:hover::before {
  transform: scale(1.1);
}

.btn-hero:hover {
  background: rgba(255,106,0,0.15);
  box-shadow:
    0 0 15px rgba(255,106,0,0.6),
    0 0 35px rgba(255,106,0,0.4);
}
/* ================= HERO LAYOUT ================= */

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  height: 100%;
  color: #ffffff;
}

.hero-left h1 {
  font-family: 'Audiowide', sans-serif;
  font-size: 46px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.hero-left p {
  letter-spacing: 4px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.hero-right {
  display: flex;
  align-items: center;
}

.contact-module {
  display: flex;
  gap: 40px;
}

/* ===== CONTACT ITEM ===== */

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

/* texto colores funcionales */
.contact-item.whatsapp span { color: #25D366; }
.contact-item.email span { color: #4ea1ff; }
.contact-item.ticket span { color: #ff6a00; }

/* ===== ISOTIPO BASE ===== */

.iso-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #ff6a00;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

/* flecha superior simulada */
.iso-btn::before {
  content: "";
  position: absolute;
  top: 18%;
  left: -40%;
  width: 180%;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.9),
    #ff6a00,
    transparent
  );
  animation: shine 1.8s ease-in-out infinite;
}

/* glow base */
.iso-btn:hover {
  box-shadow:
    0 0 15px rgba(255,106,0,0.6),
    0 0 30px rgba(255,106,0,0.4);
  transform: translateY(-4px);
  transition: 0.3s ease;
}

/* animación continua tipo “hey me ves” */
@keyframes shine {
  0% { transform: translateX(-60%); opacity: 0; }
  20% { opacity: 1; }
  50% { transform: translateX(60%); opacity: 1; }
  80% { opacity: 0.6; }
  100% { transform: translateX(120%); opacity: 0; }
}