/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   VARIABLES
========================= */
:root {
  --purple: #7f2f8f;
  --yellow: #ffc107;
  --white: #ffffff;
  --pink: #e8a3ff;
}

/* =========================
   BASE
========================= */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--purple);
  overflow: hidden;
}

/* =========================
   SHAPES
========================= */
.shape {
  position: absolute;
  z-index: 1;
  max-width: 35vw;
}

.shape-top {
  top: 0;
  left: 0;
}

.shape-bottom {
  bottom: 0;
  right: 0;
}


/* =========================
   CONTENIDO
========================= */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  max-width: 1400px;
  margin: auto;
  padding: 3rem;
}

/* =========================
   GAMER
========================= */
.hero-image {
  position: absolute;
  bottom: 0;
  left: 0;          /* all the way left */
  z-index: -2;
}

.hero-image img {
  width: 780px;     /* keep it big */
  max-width: none;
  display: block;
}

/* =========================
   TEXTO
========================= */
.hero-text {
  color: var(--white);
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.hero-text h2 {
  font-size: 2.2rem;
  font-weight: 400;
}

.hero-text h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 300; /* light elegante */
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

/* =========================
   LINEAS DE VELOCIDAD
========================= */
.speed-lines {
  display: block;
  width: 120px;
  height: 2px;
  background: white;
  margin-bottom: 1rem;
  position: relative;
}

.speed-lines::before,
.speed-lines::after {
  content: "";
  position: absolute;
  height: 2px;
  background: white;
  left: 0;
}

.speed-lines::before {
  width: 90px;
  top: 10px;
}

.speed-lines::after {
  width: 60px;
  top: 20px;
}

/* =========================
   LOGO TELCA
========================= */
.telca-inline {
  width: 320px;
  margin: 0.8rem 0 2.5rem;
}

/* =========================
   INPUT CONTRATO
========================= */
.contract-box {
  display: flex;
  align-items: center;
  max-width: 380px;
  background: linear-gradient(90deg, #d58cff, #7f6fff);
  border-radius: 999px;
  padding: 0.4rem;

  margin: 1.5rem auto; /* centers it */
}
.contract-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 1rem;
  padding: 0.7rem 1rem;

  text-transform: uppercase; /* MAYÚSCULAS */
  text-align: center;        /* CENTRADO */
}


.contract-box input::placeholder {
  color: #f1e6ff;
}

.contract-box button {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 1rem;
  z-index: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 700px) {

  .hero-content {
    padding: 2rem;
  }

  .hero-image {
      position: absolute;
      bottom: 0;
      left: 0;        /* bottom-left */
      z-index: -1;
    }

    .hero-image img {
      width: 360px;   /* scale for mobile */
      max-width: none;
        z-index: -1;
    }


    /* =========================
       LOGO TELCA
    ========================= */
    .telca-inline {
      width: 220px;
      margin: 0.8rem 0 2.5rem;
    }


  .hero-text {
    margin-left: 0;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 3.2rem;
  }

  .shape {
    width: 60vw;
  }
}
