:root {
  --surface-color: #d0f3e9;
  --curve: 20;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f2e7c9;
  margin: 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  /* margin: 4rem 5vw; */
  padding-left: 2rem;
  padding-right: 2rem;
  list-style-type: none;
}
.card {
  position: relative;
  display: block;
  height: 100%;
  border-radius: calc(var(--curve) * 1px);
  overflow: hidden;
  text-decoration: none;
  cursor: auto;
}
.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-radius: calc(var(--curve) * 1px);
  background-color: var(--surface-color);
  transform: translateY(100%);
  transition: 0.2s ease-in-out;
}
.card:hover .card__overlay {
  transform: translateY(0);
}
.card__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: 0.2s ease-in-out;
}
.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 1;
}
.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}
.card:hover .card__header {
  transform: translateY(0);
}
.card__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.card__title {
  font-size: 1em;
  margin: 0 0 0.3em;
  color: #6a515e;
}
.card__tagline {
  display: block;
  margin: 1em 0;
  font-family: "MockFlowFont";
  font-size: 0.8em;
  color: #d7bdca;
}
.card__status {
  font-size: 0.8em;
  color: #d7bdca;
}
.card_description {
  height: min-content;
  color: black;
  list-style-type:disc;
  margin-bottom: 0.5rem;
  margin-right: 0.2rem;
}
.card_description p{
  display: none;
}
.todos_servicios {
  width: 80%;
  margin: auto;
  background-color: whitesmoke;
  padding: 0;
}
.todos_servicios h2 {
  text-align: center;
  text-decoration: underline #cfd3f0;
  margin-top: 0%;
  padding-top: 2rem;
}
.todos_servicios p {
  padding: 0rem 20% 3rem 20%;
  text-justify: distribute-all-lines;
  font-size: 1rem;
  text-align: justify;
}
.todos_servicios h2 {
  font-size: 2.5rem;
}
.mensaje_final {
  padding: 2rem 0rem;
  background-color: whitesmoke;
  text-align: center;
  font-size: 2rem;
}
.cabecera{
  border-bottom: 1rem solid rgb(243, 207, 222);
}
.cabecera_logo {
  max-width: 20rem;
  max-height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.cabecera_logo img {
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 869px) {
  .todos_servicios{
    width:100%;
    margin-left: 0;
    margin-right: 0;
  }
}