/* Diseño general para la sección */
#retiro-escombros {
    background-color: #f7f7f7;
    padding: 60px 0;
  }
  
  #retiro-escombros h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #retiro-escombros p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
  }
  
  /* Estilo de las tarjetas */
  .card {
    position: relative;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  
  .card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }
  
  .card:hover .card-img-top {
    transform: scale(1.05);
  }
  
  .card-body {
    padding: 30px;
    text-align: center;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
  }
  
  .card-text {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
  }
  
  .btn {
    border-radius: 50px;
    font-weight: bold;
    padding: 12px 30px;
    text-transform: uppercase;
  }
  
  .btn-primary {
    background-color: #007bff;
    border: none;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
    
  }
  


.mpgal-section {
  background-color: #0e0e0e;
  padding: 80px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  text-align: center;
}

.mpgal-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.mpgal-header p {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.mpgal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.mpgal-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mpgal-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.mpgal-item img,
.mpgal-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mpgal-caption {
  position: absolute;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 30%, transparent 100%);
  width: 100%;
  padding: 25px;
  text-align: left;
  backdrop-filter: blur(5px);
}

.mpgal-caption h4 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.mpgal-caption a {
  background-color: #25D366;
  padding: 10px 18px;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.mpgal-caption a:hover {
  background-color: #128C7E;
}





/* Texto rotativo */
#aridos-rotating-text {
  display: inline-block;
  font-weight: bold;
  color: #ffd700;
  margin-left: 6px;
  transition: opacity 0.5s ease-in-out;
}

/* Contenedor principal del banner */
.aridos-hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagen de fondo */
.aridos-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 96%;
  object-fit: cover;
  z-index: 0;
  transition: transform 6s ease;
}

.aridos-hero-banner:hover .aridos-hero-image {
  transform: scale(1.05);
}

/* Capa oscura o superpuesta */
.aridos-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Contenedor de texto */
.aridos-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  animation: aridos-fadeIn 1.5s ease;
  padding: 0 20px;
}

.aridos-hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(10, 10, 9, 0.7);
}

.aridos-hero-content p {
  font-size: 2.1rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 8px rgba(3, 3, 3, 0.6);
  font-weight: bold;
}

/* Botón */
.aridos-hero-button {
  font-size: 1.2rem;
  padding: 14px 28px;
}

/* Animaciones */
@keyframes aridos-fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aridos-fade-in {
  animation: aridos-fadeIn 0.5s ease-in-out;
}

/* Texto con gradiente animado */
.aridos-animated-text {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: auto;
  text-align: center;
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: aridos-gradient-move 1s linear infinite;
}

@keyframes aridos-gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .aridos-hero-content h1 {
    font-size: 2.2rem;
  }
  .aridos-hero-content p {
    font-size: 1.2rem;
  }
}
.aridos-hero-content p.aridos-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: #ffd700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.aridos-hero-content h1.aridos-main-title {
  font-family: 'Raleway', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .aridos-hero-content p.aridos-subtitle {
    font-size: 1.4rem;
  }

  .aridos-hero-content h1.aridos-main-title {
    font-size: 2.5rem;
  }
}








.escombro-title-lights {
  margin: auto;
  font-size: 3.5rem;
  font-weight: 300;
  animation: escombro-lights 5s 750ms linear infinite;
  color: hsl(230, 100%, 95%);
  text-align: center;
}

/* Animación única */
@keyframes escombro-lights {
  0% {
    color: hsl(230, 40%, 80%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.2),
      0 0 0.125em hsla(320, 100%, 60%, 0.3),
      -1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
      1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }

  30% {
    color: hsl(230, 80%, 90%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 60%, 0.5),
      -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
      0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
  }

  40% {
    color: hsl(230, 100%, 95%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 90%, 0.5),
      -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2),
      0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
  }

  70% {
    color: hsl(230, 80%, 90%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 60%, 0.5),
      0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
      -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
  }

  100% {
    color: hsl(230, 40%, 80%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.2),
      0 0 0.125em hsla(320, 100%, 60%, 0.3),
      1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
      -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
}






