:root {
  --accent-1: #db2777;
  --accent-2: #06d6a0;
  --neutral-100: #ffffff;
  --neutral-900: #5a6cae;
  --text-dark: #374151;
  --text-muted: #555555;
  --highlight: #fbbf24;
  --shadow: rgba(0,0,0,0.15);
  --border-radius: 1rem;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}




/* Contenedor general */
.choose-container {
  display: grid;
  padding: clamp(2rem, 6vw, 4rem) 0;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  align-items: stretch; /* 🔑 Esto iguala la altura de las columnas */
}

/* Collage de imágenes */
.choose-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 320px;
  gap: 20px;
  height: 100%; /* 🔑 Para que el collage tome toda la altura disponible */
  position: static !important;
margin-top: 50px;
}

.choose-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 20px var(--shadow);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.choose-collage img:hover {
  transform: scale(1.05);
}

/* Posiciones de las imágenes */
.c1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.c2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.c3 {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.c4 {
  display: none;
}

/* Texto descriptivo */
.choose-text {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  color: var(--text-dark);
  font-family: var(--font-primary);
  line-height: 1.7;
  text-align: justify;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100%; /* 🔑 Hace que el texto iguale la altura del collage */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Animación para el texto */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Jerarquía en textos */
.choose-text h1 {
  font-size: 40px;
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .choose-text h1 {
    font-size: 32px;
  }
}

/* Párrafos */
.choose-text p {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
  text-indent: 1.2em;
  transition: color 0.3s ease;
  background: #fff9e6;
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius);
  box-shadow: inset 0 0 6px rgba(255 140 0 / 0.1);
}

/* Resaltar palabras clave */
.choose-text p strong {
  font-weight: 700;
  color: var(--accent-2);
  cursor: default;
}




/* Responsive */
@media (max-width: 768px) {
  .choose-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .choose-collage {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    height: auto !important;
    gap: 1.5rem;
  }
  .choose-collage img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .c1, .c2, .c3, .c4 {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
  }
  .c4 {
    display: block !important;
  }
  .choose-text {
    height: auto;
    display: block;
  }
}

