@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
:root {
  --azul-apagado: #536F97;
  --verde-claro: #E3E8E1;
  --naranja-apagado: #DAB27F;
  --verde-yerba: #7B9838;
  --naranja-claro: #FBEDD2;
  --logo-paisaje: #527096;
  --logo-alpaso: #000000;
  --maharlika: "Maharlika", serif;
  --corm-gara: "Cormorant Garamond", serif;
}

@font-face {
  font-family: "Maharlika";
  src: url("/assets/fonts/Maharlika-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

body main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 20px 0;
}
body main .about {
  min-width: 350px;
  width: 80%;
  max-width: 900px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
}
body main .about .artista {
  font-family: var(--maharlika);
  color: var(--azul-apagado);
}
body main .about .sobre {
  font-family: var(--corm-gara);
  font-weight: 600;
  font-size: 20px;
}
body main .about .d-inline-flex .btn {
  background-color: var(--azul-apagado);
  border: none;
}
body main .about .collapse .card {
  border: 1px solid var(--verde-yerba);
}
body main .obras {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
  display: flex;
  justify-content: center;
}
body main .obras .obras-content {
  width: 1200px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
body main .obras .obras-content .card {
  border: 1px solid var(--verde-yerba);
}
body main .obras .obras-content .card .zoomable {
  padding: 20px;
  cursor: pointer;
  transition: transform 0.2s;
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
body main .obras .obras-content .card .zoomable:hover {
  transform: scale(1.05);
}
body main .obras .obras-content .card .card-body .card-title,
body main .obras .obras-content .card .card-body .card-text {
  color: var(--azul-apagado);
}
body main .obras .obras-content .card .card-body .btn {
  background-color: var(--azul-apagado) !important;
  border: none;
}
body main .obras .obras-content .card .list-group .list-group-item {
  color: var(--azul-apagado);
  font-weight: bold;
}
body main .obras .obras-content .card .list-group .first {
  border-bottom: 1px solid var(--verde-yerba);
}
body main .modal .modal-dialog .modal-content {
  overflow: hidden;
}
body main .modal .modal-dialog .modal-content .modal-header .modal-title {
  color: var(--azul-apagado);
}
body main .modal .modal-dialog .modal-body {
  height: 150px;
  background-color: var(--azul-apagado);
  display: flex;
  flex-direction: column;
}
body main .modal .modal-dialog .modal-body .btn-mp,
body main .modal .modal-dialog .modal-body .btn-wp {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  gap: 25px;
}
body main .modal .modal-dialog .modal-body .btn-mp p,
body main .modal .modal-dialog .modal-body .btn-wp p {
  font-size: 20px;
  font-family: var(--maharlika);
  color: #fff;
}
body main .modal .modal-dialog .modal-body .btn-mp a,
body main .modal .modal-dialog .modal-body .btn-wp a {
  height: 100%;
}
body main .modal .modal-dialog .modal-body .btn-mp a img,
body main .modal .modal-dialog .modal-body .btn-wp a img {
  height: 80%;
}
body main .img-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
}
body main .img-modal .cerrar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
body main .img-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}/*# sourceMappingURL=mariella.css.map */