.info-section {
  background: rgb(170, 138, 34) ;
  background: rgba(170,138,34,0.5);
  padding: 80px 20px;
}

.info-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: center;
}

.info-image {
  border-radius: 28px;
  border: 4px solid #ffcc0a;
  overflow: hidden;
  background: #f7f7f7;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.info-image .swiper,
.info-image .swiper-wrapper,
.info-image .swiper-slide {
  width: 100%;
  height: 100%;
}

.info-image .swiper-slide {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f7f7f7;
}

.info-nav {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.35);
  color: #ffcc0a;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}

.info-nav::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.info-prev { left: 14px; }
.info-prev::after { transform: rotate(-135deg); }
.info-next { right: 14px; }
.info-next::after { transform: rotate(45deg); }

.info-nav:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.9);
}

.info-pagination {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.info-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.info-pagination .swiper-pagination-bullet-active {
  background: #ffcc0a;
  transform: scale(1.2);
}

.info-content h2 {
  font-size: 42px;
  color: #141947;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.info-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.info-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #141947;
  border: 2px solid #141947;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-btn:hover {
  background: #141947;
  color: #ffffff;
}

/* Animación elegante de entrada */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .info-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .info-content h2 {
    font-size: 34px;
  }
}
