.module-8 {
  margin-top: 120px;
  background-color: black;
  color: white;
  padding-top: 100px;
  padding-bottom: 25px;
}

.module-8 .inner {
  max-width: 1860px;
  padding-inline: 160px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.module-8 .text {
  flex: 1;
}

.module-8 .text h2 {
  max-width: 690px;
  font-family: var(--font-family);
  font-size: var(--subtitle);
  font-style: normal;
  font-weight: 500;
  line-height: var(--subtitle);
}

.form-livia {
  flex: 0.8;
}

.module-8 .text .img-footer {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.module-8 .text .img-footer img {
  object-fit: contain;
  max-width: 100%;
  height: auto;
}

/* Eliminando regla vacía */

footer {
  background-color: black;
  padding-top: 25px;
  padding-bottom: 25px;
  color: #a5a5a5;
  font-family: var(--font-albert);
}

footer .inner {
  max-width: 1860px;
  padding-inline: 160px;
}

footer strong {
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

footer a {
  color: #a5a5a5;
  text-decoration: underline;
}

/* Eliminando regla vacía */

/* Media Queries para responsive */
@media screen and (max-width: 1440px) {
  .module-8 .inner,
  footer .inner {
    padding-inline: 100px;
  }
  
  .module-8 .text h2 {
    font-size: calc(var(--subtitle) * 0.9);
    line-height: calc(var(--subtitle) * 0.9);
  }
}

@media screen and (max-width: 1200px) {
  .module-8 .inner,
  footer .inner {
    padding-inline: 60px;
  }
}

@media screen and (max-width: 992px) {
  .module-8 {
    margin-top: 80px;
    padding-top: 70px;
  }
  
  .module-8 .inner,
  footer .inner {
    padding-inline: 40px;
  }
  
  .module-8 .text h2 {
    font-size: calc(var(--subtitle) * 0.8);
    line-height: calc(var(--subtitle) * 0.8);
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .module-8 {
    margin-top: 60px;
    padding-top: 50px;
  }
  
  .module-8 .inner {
    flex-direction: column;
    gap: 40px;
  }
  
  .module-8 .text,
  .form-livia {
    flex: 1 1 100%;
    width: 100%;
  }
  
  .module-8 .text .img-footer {
    margin-top: 30px;
    gap: 25px;
    justify-content: flex-start;
  }
  
  .module-8 .text .img-footer img {
    max-height: 40px;
  }
}

@media screen and (max-width: 576px) {
  .module-8 {
    margin-top: 40px;
    padding-top: 40px;
  }
  
  .module-8 .inner,
  footer .inner {
    padding-inline: 20px;
  }
  
  .module-8 .text h2 {
    font-size: calc(var(--subtitle) * 0.7);
    line-height: calc(var(--subtitle) * 0.7);
  }
  
  .module-8 .text .img-footer {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  footer p {
    font-size: 12px;
    line-height: 1.4;
  }
}
