/* =======================
   ESTILOS GENERALES
   ======================= */
body {
  background-color: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

/* =======================
   HERO PRINCIPAL
   ======================= */
.quees__hero {
  background: linear-gradient(135deg, #cd212a 0%, #000 100%);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem 5rem;
  position: relative;
}

.quees__logo {
  width: 240px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: brightness(0) invert(1); /* asegura blanco puro si es SVG negro */
  padding-top: 1rem;
}

.quees__hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  /* margin-bottom: 1.5rem; */
  position: relative;
  display: inline-block;
  padding-top: -2rem;
}

.quees__hero h1::after {
  content: '';
  width: 160px;
  height: 4px;
  background: linear-gradient(to right, #000, #cd212a);
  display: block;
  margin: 2rem auto 1rem;
  border-radius: 2px;
}

.quees__hero p {
  max-width: 980px;
  margin: 0 auto 0;
  font-size: 1.3rem;
  color: #ccc;
}

/* =======================
   SECCIONES DE CONTENIDO
   ======================= */
.quees__contenido {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  gap: 3rem;
}

/* Bloque individual dentro de la sección */
.quees__contenido-bloque {
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

/* Título de bloque */
.quees__contenido h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
}

.quees__contenido h2::after {
  content: '';
  width: 160px;
  height: 4px;
  background: linear-gradient(to right, #cd212a, #707070);
  display: block;
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Párrafos */
.quees__contenido p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Enfasis */
.quees__contenido strong {
  font-weight: 700;
  color: #000;
}

/* =======================
   LISTA DE HABILIDADES
   ======================= */
.quees__lista {
  list-style: none;
  padding: 0;
  margin: 3rem auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.quees__lista li {
  background: #f4f4f4;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #cd212a;
  text-align: center;
  /* transition: transform 0.2s ease; */
}

/* =======================
   CTA FINAL NEGRO
   ======================= */
.quees__cta-final {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 0.5rem 4rem;
  margin-top: 2rem;
  position: relative;
}

.quees__cta-contenido {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.quees__cta-final h2 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.quees__cta-final h2::after {
  content: '';
  width: 160px;
  height: 4px;
  background: linear-gradient(to right, #cd212a, #707070);
  display: block;
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.quees__cta-final p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2.5rem;
}

/* =======================
   BOTÓN ROJO INTENSO
   ======================= */
.btn-rojo {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: #e50914;
  color: #fff;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  margin-bottom: 4rem;
}

.btn-rojo:hover {
  background: linear-gradient(to right, #757576, #cd212a);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(205, 33, 42, 0.3);
}

/* =======================
   RESPONSIVE MÓVIL
   ======================= */
@media (max-width: 768px) {
  /* HERO */
  .quees__hero {
    padding: 5rem 1.5rem;
    min-height: auto;
  }

  .quees__logo {
    width: 220px;
    padding-top: 4rem;
  }

  .quees__hero h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
  }

  .quees__hero h1::after {
    width: 120px;
    margin: 1.5rem auto 0.8rem;
  }

  .quees__hero p {
    font-size: 1.05rem;
    padding: 0 1rem;
  }

  /* CONTENIDO GENERAL */
  .quees__contenido {
    padding: 0 1rem;
    gap: 2rem;
  }

  .quees__contenido-bloque {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }

  .quees__contenido h2 {
    font-size: 1.8rem;
  }

  .quees__contenido h2::after {
    width: 120px;
    height: 3px;
    margin-top: 1rem;
  }

  .quees__contenido p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    padding: 0;
  }

  /* LISTA DE HABILIDADES */
  .quees__lista {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .quees__lista li {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }

  /* CTA FINAL */
  .quees__cta-final {
    padding: 1rem 1.5rem 2rem;
  }

  .quees__cta-final h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .quees__cta-final h2::after {
    width: 120px;
    height: 3px;
    margin-top: 1rem;
  }

  .quees__cta-final p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 0.5rem;
  }

  .btn-rojo {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
