.page-contact {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--lite);
}
.page-contact .cover {
  display: flex;
}
.page-contact .form-container {
  display: flex;
  flex: 1;
}
.page-contact .form-container .int {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-contact .form-container .int .title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.page-contact .form-container .int .flow {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.page-contact .form-container .fc {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
}
.page-contact .form-container br {
  display: none;
}
.page-contact .form-container .form-field {
  margin-bottom: 1.5rem;
}
.page-contact .form-container .form-label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-contact .form-container .form-field.pol .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}
.page-contact .form-container .form-field.pol .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.page-contact .form-container .form-field.pol input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
  margin-bottom: 0.25rem;
}
.page-contact .form-container .form-field.pol .wpcf7-list-item-label {
  line-height: 1;
  font-size: 0.9rem;
  font-weight: 300;
  user-select: none;
}
.page-contact .form-container .form-field.pol .wpcf7-list-item-label a {
  font-family: "Gotham Rounded", sans-serif;
  color: var(--sky);
  text-decoration: underline;
}
.page-contact .form-container .form-label-text {
  line-height: 1;
  font-size: 0.9rem;
  font-family: "Gotham Rounded", sans-serif;
}
.page-contact .form-container .form-label input {
  display: flex;
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--black);
  font-size: 0.9rem;
  outline: none;
  font-weight: 300;
}
.page-contact .form-container .form-field textarea {
  resize: vertical;
  display: flex;
  width: 100%;
  min-height: 8rem;
  max-height: 15rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--black);
  font-size: 0.9rem !important;
  outline: none;
  font-weight: 300;
}
.page-contact .form-container .form-submit input {
  background-color: var(--black);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
}
.page-contact .form-container .form-submit input:hover {
  opacity: 0.8;
}
.page-contact .extra {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.page-contact .extra .ct {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 20rem;
}
.page-contact .extra .x {
  display: flex;
  gap: 1rem;
}
.page-contact .extra .x .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--black);
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  flex: 0 0 2.5rem;
}
.page-contact .extra .x .icon svg {
  width: 100%;
  height: 100%;
  color: var(--white);
}
.page-contact .extra .x .info {
  flex: 1;
  min-width: 0;
}
.page-contact .extra .x .info .title {
  font-family: "Gotham Rounded", sans-serif;
  font-size: 0.9rem;
}
.page-contact .extra .x .info .content {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.2;
}
.page-contact .extra .x .info .maps {
  display: flex;
  flex-direction: column;
}
.page-contact .extra .x .info .ln {
  position: relative;
}
.page-contact .extra .x .info .ln::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 100%;
  height: 2px;
  background-color: var(--white);
}
.page-contact .form-container .fc .wpcf7-response-output {
  background-color: #46b450;
  color: var(--white);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0 0 0;
  font-size: 0.85rem;
  animation: ocultar-mensaje 0.5s ease 3s forwards;
}

@keyframes ocultar-mensaje {
  0% {
    opacity: 1;
    max-height: 100px;
    padding: 1rem;
    margin: 1rem 0 0 0;
  }

  100% {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
}
/* RESPONSIVE */
@media (max-width: 100rem) {
  /* 1600px */
}

@media (max-width: 75rem) {
  /* 1200px */
}

@media (max-width: 62rem) {
  /* 992px */
}

@media (max-width: 48rem) {
  /* 768px */
  .page-contact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .page-contact .cover {
    flex-direction: column;
    gap: 2rem;
  }
  .page-contact .extra .ct {
    width: 100%;
  }
}

@media (max-width: 36rem) {
  /* 576px */
  .page-contact .form-container .fc {
    padding: 1.5rem;
  }
}
