:root {
  --bg-dark: rgba(0, 0, 0, 0.45);
  --text: #fff;
  --accent: #17c1a3; /* turquesa SFITS */
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.3;
  overflow: hidden; /* evita scroll por el blur/overlay */
}

/* Fondo */
.bg {
  position: fixed;
  inset: 0;
  background: 
    linear-gradient(0deg, var(--bg-dark), var(--bg-dark)),
    url("../images/Imagen-Background.jpg") center center / cover no-repeat;
  filter: blur(0px);
  transform: scale(1.05); /* compensa bordes por blur */
  z-index: -1;
}

/* Franja superior */
.topline {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-inline: clamp(16px, 6vw, 64px);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
}

.topline .brand {
  height: clamp(25px, 4vw, 25px);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
}

.topline .left-tag {
  justify-self: start;
  opacity: .85;
  font-size: clamp(10px, 1.8vw, 14px);
  font-weight: 400;
}

.topline .right-tag {
  justify-self: end;
  opacity: .85;
  font-size: clamp(10px, 1.8vw, 14px);
  text-align: right;
  font-weight: 400;
}

/* Bloque central */
.hero {
  height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-inline: 24px;
}

.eye {
  display: block;          /* centrado con margin auto */
  margin: 0 auto;          /* sin margen que empuje el layout */
  transform: translateY(48px); /* baja SOLO el ojo, no el h1 */
  will-change: transform;  /* perf */
}
.eye-container {
  margin-top: 40px; /* Ajusta este valor según lo que necesites */
  text-align: center; /* Asegura que la imagen quede centrada */
}
h1 {
  margin: 0 0 10px 0;
  font-size: clamp(36px, 6.2vw, 72px);
  font-weight: 100;
  letter-spacing: .02em;
  text-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}

.sub {
  margin: 6px 0 28px 0;
  font-size: clamp(12px, 1.8vw, 16px);
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .95;
}

.social {
  display: flex;
  gap: 18px;
  font-size: clamp(20px, 2.6vw, 24px);
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;             /* Ajusta al tamaño del icono */
  height: auto;
  border: none;            /* Quita el borde */
  background: none;        /* Sin fondo */
  backdrop-filter: none;   /* Sin blur */
  color: white;            /* Color del icono */
  font-size: 25px;         /* Tamaño del icono */
  text-decoration: none;   /* Quita subrayado */
}

.social a i {
  line-height: 1;
}

.social a:hover {
  color: #17c1a3; /* Color al pasar el mouse */
}
/* Responsivo fino */
@media (max-width: 520px) {
  .topline {
    top: 16px;
    grid-template-columns: 1fr auto 1fr;
  }
  .social a {
    width: 40px;
    height: 40px;
  }
}