* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.exportacion {
  padding: 5rem 2rem;
  background-color: #fffaeb;
  position: relative;
  /* overflow: hidden;  ← ELIMINAR ESTO */
}

/* Imagen de fondo en esquina inferior derecha */
.exportacion::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background-image: url('../../resources/img/fondo-exportacion.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

/* Asegurar que el contenido esté por encima del fondo */
.exportacion-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* El resto del CSS permanece igual */
.export-top {
  text-align: center;
  margin-bottom: 4rem;
}

.export-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #495A1F;
  margin-bottom: 1rem;
}

.export-description {
  font-size: 1.125rem;
  color: #495A1F;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.export-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  width: 300px;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 10%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #d9c5a7;
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #495A1F;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-description {
  font-size: 0.95rem;
  color: #495A1F;
  line-height: 1.5;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .exportacion::before {
    width: 180px;
    height: 180px;
    opacity: 0.4;
    bottom: 10px;
    right: 10px;
  }
  
  .export-title {
    font-size: 1.8rem;
  }
  
  .export-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .card {
    width: 100%;
    max-width: 350px;
  }
}

/* ===============================================
   CARRUSEL PARA CARD 5 (solo esta card)
   =============================================== */

.card-carousel {
  position: relative;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

/* Indicadores del carrusel (opcional) */
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: #f5e8a6;
}