/* Página de Cierre - Sendity */

/* Reset para eliminar scrolls no deseados */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: #f6f6f6;
}

.cierre-page {
  background-color: #f6f6f6;
  overflow: clip;
  border-radius: 16px;
  width: 100%;
  min-height: 100vh;
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cierre-logo {
  height: 32px;
  width: 90%;
  max-width: 872px;
  text-align: left;
  margin-bottom: 40px;
}

.cierre-logo img {
  width: auto;
  height: 100%;
  float: left;
}

.cierre-divider {
  background-color: #d9d9d9;
  height: 1px;
  width: 90%;
  max-width: 872px;
  margin-bottom: 41px;
}

.cierre-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 90%;
  max-width: 849px;
}

.cierre-section {
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  gap: 8px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
}

.cierre-title {
  color: #171717;
  width: 100%;
  margin: 0;
}

.cierre-text {
  color: #9b9b9b;
  width: 100%;
  margin: 0;
}

.cierre-link {
  color: #36b9d0;
  text-decoration: none;
}

.cierre-link:hover {
  text-decoration: underline;
}

.cierre-paragraph {
  margin: 0 0 16px 0;
}

.cierre-paragraph-last {
  margin: 0;
}

/* Desktop styles */
@media (min-width: 768px) {
  .cierre-page {
    padding: 80px 20px 60px;
  }

  .cierre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 32px;
  }

  .cierre-title {
    max-width: 415px;
  }

  .cierre-text {
    max-width: 415px;
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  .cierre-logo {
    height: 24px;
    margin-right: 0;
    margin-bottom: 26px;
  }

  .cierre-divider {
    margin-bottom: 30px;
  }

  .cierre-page {
    padding: 40px 20px 40px;
  }

  .cierre-content {
    gap: 24px;
  }

  .cierre-section {
    font-size: 14px;
    line-height: 22px;
  }
}
