@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background-color: rgb(215, 232, 255);
  font-family: "Times New Roman", Times, serif;
  color: darkblue;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: darkblue;
  font-family: "Times New Roman", Times, serif;
  margin: 0.5rem 0;
  line-height: 1.1;
  text-align: center;
}

h1 {
  font-size: 2rem;
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
}

a {
  color: darkblue;
  font-style: italic;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
  outline: none;
}

header, footer {
  background-color: #1800ad;
  color: #fff;
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}
.header-footer a {
  color: #fff;
  font-weight: 500;
}

.container {
  width: min(1100px, 95%);
  margin-left: auto;
  margin-right: auto;
}

.enlaces-pages {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page {
  flex: 1 1 45%;
  min-width: 260px;
  border: 2px double darkblue;
  border-radius: 5px;
  padding: 0.5rem;
  background-color: rgb(215, 232, 255);
  text-align: center;
  margin: 0.5rem;
}

.sobremi {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  padding: 20px;
  max-width: 1000px;
  margin: 2rem auto;
}

.sobremi-img {
  flex: 0 0 35%;
  max-width: 320px;
}

.reseñas {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.reseña-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reseña-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.reseña-card .card-img-top {
  width: 50%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.reseña-card .puntuacion {
  font-weight: 600;
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #090042;
  text-align: center;
}

.reseña-card .enlaces a:hover {
  color: #2200ff;
}

.cenizas-contenido {
  display: flex;
  gap: 2rem;
  margin: 2%;
  align-items: center;
}

.cenizas-portada img {
  width: 250px;
  height: auto;
}

.cenizas-texto {
  flex: 1;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.form label, .form select, .form option, .form input, .form textarea {
  color: #1800ad;
}

.form input, .form textarea {
  border: 1px double #1800ad;
  padding: 0.5rem;
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .enlaces-pages {
    flex-direction: column;
    gap: 1rem;
  }
  .page {
    width: 90%;
    margin: 0.5rem auto;
    min-width: auto;
  }
  .sobremi {
    flex-direction: column;
    width: 95%;
    margin: 1rem auto;
  }
  .cenizas-contenido {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 48rem) {
  .reseñas {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=estilos.css.map */