/* Guías — panel dividido teal */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap");

body.page-guias {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Sora", system-ui, sans-serif;
  background: #ecfeff;
  color: #134e4a;
}

.page-guias main {
  flex: 1;
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
@media (max-width: 880px) {
  .split-hero {
    grid-template-columns: 1fr;
  }
}

.split-hero .text {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #0d9488 0%, #115e59 100%);
  color: #ecfdf5;
}
.split-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.split-hero .intro {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.split-hero .visual {
  position: relative;
}
.split-hero .visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.steps-wrap {
  max-width: 880px;
  margin: -40px auto 0;
  padding: 0 20px 64px;
  position: relative;
  z-index: 2;
}

.steps-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(19, 78, 74, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.step-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(19, 78, 74, 0.08);
}
.step-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ccfbf1;
  color: #0f766e;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.step-row h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 600;
}
.step-row p {
  margin: 0;
  font-size: 0.92rem;
  color: #5c7a78;
  line-height: 1.6;
}
