/* Nafta Opportunities Section - Modern Responsive */
.SeccionOportunidades {
  border-radius: 2.25rem;
  margin: 3.5rem auto 2.5rem auto;
  max-width: 1200px;
  background: #181A20;
  box-shadow: 0 4px 32px rgba(21,54,242,0.06);
  padding: 2.5rem 2vw;
}
.SeccionOportunidades-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
}
.SeccionOportunidades-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.SeccionOportunidades-image img {
  border-radius: 2rem;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(21,54,242,0.08);
}
.SeccionOportunidades-content {
  flex: 2 1 320px;
  color: #F2F2F2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.SeccionOportunidades-content h2 {
  font-size: clamp(1.7rem, 6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #1536F2;
  margin-bottom: 0.5rem;
}
.SeccionOportunidades-content p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #F2F2F2;
}
.SeccionOportunidades-list {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  color: #F2F2F2;
  font-size: 1.08rem;
  padding-left: 0;
}
.SeccionOportunidades-list li {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
.SeccionOportunidades-btn {
  display: inline-block;
  border: 2px solid white;
  color: white;
  background: black;
  border-radius: 2rem;
  padding: 0.9rem 2rem;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  -webkit-transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-align: center;
  box-shadow: 0 2px 8px rgba(21,54,242,0.04);
}
.SeccionOportunidades-btn:hover {
  background: #000000;
  color: #d3d3d3;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Responsive: Tablet */
@media (max-width: 900px) {
  .SeccionOportunidades {
    padding: 2rem 2vw;
    margin: 2rem auto;
  }
  .SeccionOportunidades-grid {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .SeccionOportunidades-image img {
    max-width: 320px;
    aspect-ratio: 1/1;
    padding: 0;
  }
  .SeccionOportunidades-content h2 {
    font-size: clamp(1.3rem, 7vw, 2.1rem) !important;
  }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
  .SeccionOportunidades {
    margin: 1rem auto;
    padding: 2rem 2vw;
    border-radius: 1.2rem;
  }
  .SeccionOportunidades-grid {
    gap: 1.2rem;
    padding: 0;
  }
  .SeccionOportunidades-content {
    padding: 0 2vw;
    gap: 0.8rem;
  }
  .SeccionOportunidades-content h2 {
    font-size: clamp(1.1rem, 8vw, 2rem) !important;
    line-height: 1.15 !important;
  }
  .SeccionOportunidades-content p {
    font-size: 0.98rem;
  }
  .SeccionOportunidades-btn {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: block;
    font-size: 1rem;
    padding: 0.8rem 0;
  }
  .SeccionOportunidades-image img {
    max-width: 90vw;
    aspect-ratio: 1/1;
    height: auto;
    border-radius: 1rem;
    margin: 0 auto;
    display: block;
  }
  .SeccionOportunidades-list {
    font-size: 0.98rem;
  }
}

/* Flex gap fallback for Safari < 14 */
@supports not (gap: 1rem) {
  .SeccionOportunidades-grid > *:not(:last-child) {
    margin-right: 3.5rem; /* Matches intended gap */
  }
  .SeccionOportunidades-content > *:not(:last-child) {
    margin-bottom: 1.2rem; /* Matches vertical gap inside content column */
  }
} 