/* === HERO SECTION PICK+ === */
.pm-hero {
  /* degradado radial desde la esquina superior izquierda */
  background: radial-gradient(
    circle farthest-corner at top left,
    #ffffff 0%,
    #c4ddff 100%
  );
  /* conserva tu padding u otras propiedades */
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.pm-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.pm-hero__text {
  flex: 1;
  max-width: 550px;
}

.pm-hero__logo {
  width: 140px;
  margin-bottom: 0px;
}

.pm-hero__title {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #0f1c2e;
    margin: 10px 0 16px;
}

.pm-hero__description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #334e68;
}

.pm-hero__btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  background-color: #0074b9;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

.pm-hero__btn:hover {
  background-color: #005f91;
}

.pm-hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.pm-hero__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .pm-hero__container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .pm-hero__title {
    font-size: 2rem;
  }

  .pm-hero__image img {
    max-width: 80%;
    margin-bottom: 24px;
  }
}

/* ==============================
   SECTION “HOW DOES PICK[+] WORK?”
   ============================== */
.pm-phases {
  padding: 80px 20px;
  background-color: #fff;
}

.pm-phases__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pm-phases__title {
  font-size: 2.2rem;
  color: #0074b9;
  margin-bottom: 16px;
}

.pm-phases__subtitle {
  font-size: 1rem;
  color: #334e68;
  margin-bottom: 48px;
  line-height: 1.5;
}

.pm-phases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;          
  align-items: stretch; 

}

.pm-phases__item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 24px;
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height:100%;
  flex-direction: row;
  overflow: hidden;
  align-items: flex-start;
}

.pm-phases__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.pm-phases__img {
  flex-shrink: 0;           
  width: 100%;
  max-width: 280px;          
  aspect-ratio: 14 / 9;   
  object-fit: cover;       
  border-radius: 12px;
}

.pm-phases__info {
  flex: 1;
  text-align: left;
  color: #334e68;
  display: flex;
  min-width: 0;   
  flex-direction: column;
  justify-content: center; 
}

.pm-phases__heading {
  font-size: 1.25rem;
  margin: 0 0 12px;
  line-height: 1.2;
  word-wrap: break-word;
  hyphens: auto; 
  color: #0f1c2e;
  display: flex;
  align-items: center;
  gap: 8px;                
  white-space: normal;   
  flex-wrap: wrap; 
}

.pm-phases__number {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0074b9;
  border-left: 4px solid #0074b9;
  padding-left: 8px;
  margin-right: 1px;
}

.pm-phases__title-small {
  font-weight: bold;
  font-size: 1.2rem;
}

.pm-phases__text {
  font-size: 0.9rem;
  color: #334e68;
  line-height: 1.6;
  word-wrap: break-word;
  hyphens: auto;  
  margin: 0;
}

@media (max-width: 900px) {
  .pm-phases__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .pm-phases__item {
    flex-direction: column;
  }
  .pm-phases__img {
    max-width: 80%;
    margin: 0 auto 12px;
  }
}
