/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #1f1f1f;
  background: #fff;
  line-height: 1.6;
}

/* ====== Layout principal ====== */
.explore {
  margin: 2.5rem auto 2rem;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 2fr 1fr;  
  gap: 2.5rem;

  align-items: start;
}

/* ---- Imagen izquierda ---- */
.explore-image img {
  width: 100%;
  height: 600px;          
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
/* ---- Columna de texto ---- */
.explore-text { padding-top: 0; }

.explore-text h1 {
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.15;

  font-size: clamp(2.2rem, 4.2vw, 3rem);
  margin-bottom: 1rem;    
}

.explore-text .lead {
  color: #555;
  max-width: 480px;
  margin-bottom: 1.2rem;
}


.btn {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  background: #222;
  color: #fff;
  border-radius: 9999px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background .25s ease;
  margin-bottom: 2rem;    
}
.btn:hover { background: #3a3a3a; }

/* ---- Puntos numerados ---- */
.points { display: grid; gap: 1.6rem; }

.point {
  display: flex;
  flex-direction: column;  
  gap: 0.3rem;             
  max-width: 520px;
}


.point .number {
  font-weight: 700;
  color: #7a7a7a;
  font-size: 1.1rem;
  line-height: 1.1;
}

.point p {
  color: #444;
  font-size: 0.98rem;
}

/* ====== Responsivo ====== */
@media (max-width: 980px) {
  .explore {
    grid-template-columns: 1fr;  
    gap: 1.8rem;
    padding: 0 1rem;
  }

  .explore-image img { height: 340px; }
  .explore-text { max-width: 680px; }
  .explore-text h1 { text-wrap: balance; }
}
