* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 50% 20%,
      #3a3247 0%,
      #201a29 40%,
      #120f18 75%,
      #08060a 100%
    );
  color: #c9bfdb;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
  min-height: 100vh;
}

/* FONDO DE LA ENTRADA */

.entrance {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 40px;

  background-image:
    url("/treeview.jpg"),
    url("/im-violeta.png");

  background-size: 100% auto, 2050px auto;
  background-position: center;
  background-repeat: no-repeat, no-repeat;
  background-color: #0d0a14;
}

/* PAISAJE CENTRAL */

.entrance .treeview-bg {
  position: absolute;

  top: 320px;
  left: 50%;
  transform: translateX(-50%);

  width: 600px;
  height: 100%;

  background-image: url("/im-treeview.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 700px auto;

  z-index: 1;
  pointer-events: none;
}

/* LUNA */

.moon {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);

  width: 90px;
  height: 90px;

  background: #e3b94f;
  border-radius: 50%;

  box-shadow:
    0 0 10px #f7d978,
    0 0 25px #d4a93f,
    0 0 45px rgba(212, 169, 63, 0.6);

  z-index: 2;
}

.moon::after {
  content: "";

  position: absolute;

  top: -8px;
  left: 25px;

  width: 90px;
  height: 90px;

  background: #0d0a14;
  border-radius: 50%;
}

/* LETRERO */

.gate-sign {
  position: relative;
  z-index: 10;

  display: inline-block;

  margin-top: 0;
  transform: translateY(100px);

  padding: 15px 55px;

  border: 3px double #c9a85b;
  background: rgba(10, 7, 12, 0.92);

  box-shadow:
    0 0 15px #5d4720,
    inset 0 0 20px #21180b;
}

.gate-sign h1 {
  margin: 0;
  color: #e3c56f;
  font-size: 42px;
  letter-spacing: 9px;
  text-shadow:
    0 0 8px #d6b65e,
    2px 2px 4px #000;
}

.gate-sign p {
  margin: 5px 0 0;
  color: #a88b4b;
  letter-spacing: 5px;
  font-size: 12px;
}

/* PORTÓN */

.gate {
  position: relative;
  z-index: 3;
  width: 650px;
  max-width: 90%;
  height: 350px;
  margin: 190px auto 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* COLUMNAS */

.gate-post {
  width: 55px;
  height: 100%;

  position: relative;
  z-index: 8;

  background:
    linear-gradient(
      90deg,
      #4b3515,
      #d0a94f,
      #f0d47b,
      #9a742d,
      #493313
    );

  border: 2px solid #e2c36b;

  box-shadow:
    0 0 15px #8b6826,
    inset 0 0 10px #2b1c08;
}

.gate-post::after {
  content: "";

  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  bottom: -18px;

  width: 100px;
  height: 32px;

  background:
    linear-gradient(
      180deg,
      #4e4f4a 0%,
      #30312e 55%,
      #171816 100%
    );

  border: 3px solid #20211e;

  box-shadow:
    0 8px 15px rgba(0,0,0,0.9),
    inset 0 2px 3px rgba(255,255,255,0.08);
}

.gate-post::before {
  content: "";

  position: absolute;

  left: 50%;
  transform: translateX(-50%);

  top: -18px;

  width: 100px;
  height: 30px;

  background:
    linear-gradient(
      180deg,
      #777870 0%,
      #50514c 45%,
      #292a27 100%
    );

  border: 3px solid #242522;

  box-shadow:
    0 6px 10px rgba(0,0,0,0.8),
    inset 0 2px 3px rgba(255,255,255,0.12);
}

/* PUNTAS DE HIERRO */

.gate-door {
  overflow: visible;
}

.gate-door {
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 24px,
      #8f6b2d 25px,
      #d3ae59 27px,
      #8f6b2d 30px,
      transparent 31px,
      transparent 50px
    );
}

/* PUERTAS */

.gate-doors {
  display: flex;
  width: 650px;
  height: 100%;
  perspective: 800px;
}

.gate-door {
  position: relative;
  width: 50%;
  height: 100%;

  background:
  repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 24px,
    #8f6b2d 25px,
    #d3ae59 27px,
    #8f6b2d 30px,
    transparent 31px,
    transparent 50px
  ),
  linear-gradient(
    180deg,
    transparent 0%,
    transparent 94%,
    #c39b45 94%,
    #8d6929 100%
  );

  border-top: 8px solid #c39b45;
  border-bottom: 8px solid #8d6929;

  box-shadow:
    inset 0 0 20px #000,
    0 0 10px #6b4d1c;

  transition: all 1s ease;
}

/* ARCOS DE LAS REJAS */

.gate-door:before,
.gate-door:after {
  content: "";
  position: absolute;
  left: 15%;
  width: 70%;
  border: 3px solid #d3ae59;
  border-bottom: none;
  border-radius: 50% 50% 0 0;
}

.gate-door:before {
  top: 15%;
  height: 25%;
}

.gate-door:after {
  top: 45%;
  height: 20%;
}

.gate-door {
  overflow: visible;
}

.gate-door::marker {
  content: "";
}

/* ORNAMENTOS */

.ornament {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  color: #e2c267;
  font-size: 55px;
  text-shadow:
    0 0 8px #b68c38,
    2px 2px 3px #000;
  z-index: 4;
}

.left-door {
  border-right: 2px solid #d6b15b;
}

.right-door {
  border-left: 2px solid #d6b15b;
}

/* TEXTO Y BOTÓN */

.entrance-text {
  position: relative;
  z-index: 10;
  margin-top: 25px;
}

.entrance-text p {
  color: #9285a8;
  font-style: italic;
}

.enter-button {
  display: inline-block;
  margin-top: 10px;
  padding: 13px 30px;

  color: #d1c1e8;
  text-decoration: none;

  border: 1px solid #7d639c;
  background: #110c17;

  letter-spacing: 3px;
  font-size: 14px;

  box-shadow:
    0 0 10px #3d2857,
    inset 0 0 10px #181024;

  transition: all 0.4s ease;
}

.enter-button:hover {
  color: #f1ebfa;
  background: #231833;
  box-shadow:
    0 0 25px #8c6eb3,
    0 0 50px #41295e;

  transform: scale(1.05);
}


/* NIEBLA Y ESTRELLAS */

.entrance::before {
  content: "✦   ·     ✧        ·   ✦       ·        ✧   ·     ✦";
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  color: rgba(201, 185, 224, 0.35);
  font-size: 18px;
  letter-spacing: 18px;
  white-space: nowrap;
  animation: stars 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes stars {
  from { opacity: 0.35; }
  to { opacity: 0.75; }
}

.entrance::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: 0;
  width: 120%;
  height: 180px;

  background:
    radial-gradient(
      ellipse at center,
      rgba(130, 115, 155, 0.15) 0%,
      rgba(70, 60, 90, 0.08) 35%,
      transparent 70%
    );

  filter: blur(18px);
  animation: fog 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 4;
}

@keyframes fog {
  from {
    transform: translateX(-3%);
    opacity: 0.5;
  }
  to {
    transform: translateX(3%);
    opacity: 0.8;
  }
}

/* DIAMANTES SOBRE LA REJA */

.spikes {
  position: absolute;
  top: -38px;
  left: 60px;

  width: 540px;
  height: 130px;

  z-index: 10;

}

.spikes::before {
  content: "◆ ◆ ◆ ◆ ◆ ◆ ◆  ◆ ◆ ◆ ◆ ◆ ◆ ◆"; 
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  color: #d3ae59;

  font-size: 25px;
  letter-spacing: 4px;
  line-height: 30px;

  text-shadow:
    0 0 3px #8f6b2d,
    0 0 7px #c9a85b,
    1px 1px 2px #000;

  white-space: nowrap;
}
/* FAROLES — A LOS LADOS DEL PORTÓN */

.lantern {
  position: absolute;
  top: 600px;
  z-index: 100;
  font-size: 70px;
}

.left-lantern {
  left: calc(50% - 490px);
}

.right-lantern {
  right: calc(50% - 490px);
}

.entrance {
  overflow: hidden;
}

.graveyard-page {
  overflow: visible;
}

/* =========================
   GRAVEYARD PAGE
   ========================= */

.graveyard-page {
  min-height: 100vh;
  padding: 40px 20px 60px;

  background-image: url("/im-stars.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.graveyard-header {
  text-align: center;
  margin-bottom: 70px;
}

.small-moon {
  font-size: 70px;
  color: #e5e0f0;
  text-shadow:
    0 0 15px #fff,
    0 0 35px #9d8abf;
}

.graveyard-header h1 {
  margin: 10px 0;
  color: #cbb8e3;
  font-size: 38px;
  letter-spacing: 7px;
  text-shadow:
    0 0 8px #684f87,
    2px 2px 4px #000;
}

.graveyard-header p {
  color: #8c7e9e;
  font-style: italic;
}

/* EL CEMENTERIO */

.graveyard-page .graveyard {
  position: relative;
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;

  display: grid;
 grid-template-columns: repeat(4, 220px);
grid-template-rows: 250px auto;
  justify-content: center;
  align-items: end;

  column-gap: 35px;
  row-gap: 60px;

  padding: 50px 20px 80px;

  background:
    radial-gradient(
      ellipse at center,
      #1c1726 0%,
      #0e0a14 45%,
      #050308 100%
    );

  border-top: 1px solid #322642;
  border-bottom: 1px solid #322642;

  box-shadow:
    inset 0 20px 40px #000,
    inset 0 -20px 40px #000;
}

/* TUMBAS */

.graveyard-page .grave {
  position: relative;

  width: 200px;
  min-height: 270px;
  padding: 25px 15px;

  background:
    linear-gradient(
      180deg,
      #352f3d 0%,
      #201b26 45%,
      #110d17 100%
    );

  background-image:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.08) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 70% 65%,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 2px
    ),
    linear-gradient(
      180deg,
      #352f3d 0%,
      #201b26 45%,
      #110d17 100%
    );

  border: 2px solid #5d4a75;
  outline: 1px solid rgba(160, 130, 200, 0.15);
  outline-offset: -7px;

  border-radius: 100px 100px 12px 12px;

  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(95, 65, 130, 0.28),
    inset 0 0 25px rgba(0, 0, 0, 0.75);
  transition: all 0.4s ease;
}

.graveyard-page .grave:hover {
  transform: translateY(-12px);

  border-color: #b99a52;

  box-shadow:
    0 20px 35px #000,
    0 0 12px #8c7440,
    0 0 25px #c9a85b;
}

.graveyard-page .stone {
  width: 70px;
  height: 55px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9b6e0;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow:
    0 0 5px #6e5091,
    0 0 12px #382452,
    2px 2px 3px #000;
}

.graveyard-page .grave h2 {
  margin: 5px 0 8px;
  color: #bdabbd;
  font-size: 18px;
  text-shadow: 1px 1px 3px #000;
}

.graveyard-page .grave p {
  color: #7a708a;
  font-size: 14px;
}

.graveyard-page .epitaph {
  margin-top: 18px;
  color: #a093b5 !important;
  font-size: 13px !important;
  font-style: italic;
  line-height: 1.5;
}

.graveyard-page .grave-date {
  display: inline-block;
  margin: 4px 0 12px;
  padding: 3px 12px;
  border: 1px solid #5a4473;
  color: #beadd4 !important;
  background: rgba(16, 11, 23, 0.7);
  letter-spacing: 2px;
  font-size: 12px !important;
  box-shadow:
    inset 0 0 5px #08050e,
    0 0 5px rgba(100, 70, 140, 0.2);
}

.grave-flowers {
  margin-top: 18px;
  color: #8c73ab;
  font-size: 16px;
  letter-spacing: 4px;
  text-shadow: 0 0 5px #402c57;
}



/* =========================
   MAUSOLEUM — TUMBAS
   ========================= */

.mausoleum-graves {
  position: relative;

  width: 1500px;
  max-width: 85%;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(5, 200px);
  grid-template-rows: 270px 270px;

  justify-content: center;
  align-items: end;

  column-gap: 20px;
  row-gap: 60px;

  padding: 80px 30px 90px;

  background:
    radial-gradient(
      ellipse at center,
      #1c1726 0%,
      #0e0a14 50%,
      #050308 100%
    );

  border-top: 1px solid #322642;
  border-bottom: 1px solid #322642;

  border-left: 1px solid #322642;
  border-right: 1px solid #322642;

  box-shadow:
    inset 0 20px 40px #000,
    inset 0 -20px 40px #000,
    0 15px 35px rgba(0, 0, 0, 0.8);
}


/* SOLEDAD */
.mausoleum-graves .grave:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

/* HUMBERTO */
.mausoleum-graves .grave:nth-child(2) {
  grid-column: 4;
  grid-row: 1;
}

/* WILLIAM */
.mausoleum-graves .grave:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

/* MARIA ELENA */
.mausoleum-graves .grave:nth-child(4) {
  grid-column: 3;
  grid-row: 2;
}

/* LUIS */
.mausoleum-graves .grave:nth-child(5) {
  grid-column: 5;
  grid-row: 2;
}
/* =========================
   PASTITO ENTRE LAS TUMBAS
   ========================= */

.grave:nth-of-type(4)::after,
.grave:nth-of-type(6)::after,
.grave:nth-of-type(8)::after,
.grave:nth-of-type(11)::after {
  content: "⌁⌁⌁";
  
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);

  color: #4f6042;
  font-size: 24px;
  letter-spacing: 2px;

  text-shadow:
    0 0 4px #202819,
    1px 1px 2px #000;

  z-index: 2;
}

/* =========================
   MAUSOLEO VICTORIANO
   ========================= */

.mausoleum {
 grid-column: 2 / 4;
grid-row: 1;
  justify-self: center;
  width: 300px;
  height: 250px;
  padding: 30px 25px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;

  background:
    linear-gradient(
      90deg,
      #1f1a26 0%,
      #3b3345 12%,
      #292333 50%,
      #3b3345 88%,
      #1f1a26 100%
    );

  border: 3px solid #5d4a75;

  box-shadow:
    0 20px 35px rgba(0, 0, 0, 0.95),
    0 0 22px rgba(95, 65, 130, 0.25),
    inset 0 0 30px rgba(0, 0, 0, 0.75);

  outline: 1px solid rgba(160, 130, 200, 0.15);
  outline-offset: -9px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.mausoleum:hover {
  transform: translateY(-12px);
  border-color: #7b6299;
  box-shadow:
    0 20px 35px #000,
    0 0 25px #523770,
    inset 0 0 30px rgba(0, 0, 0, 0.75);
}

.mausoleum::before {
  content: "";
  position: absolute;
  top: -48px;
  left: -3px;
  width: calc(100% + 6px);
  height: 50px;

  background:
    linear-gradient(
      180deg,
      #51465e 0%,
      #342d3d 45%,
      #1d1824 100%
    );

  border: 3px solid #6c548a;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  box-shadow: 0 -4px 15px rgba(95, 65, 130, 0.25);
  z-index: 1;
}

.mausoleum::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 155px;
  border-left: 9px solid #43394f;
  border-right: 9px solid #43394f;
  box-shadow:
    inset 3px 0 4px rgba(255, 255, 255, 0.06),
    inset -3px 0 4px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: 1;
}

.mausoleum-top {
  color: #c9b6e0;
  font-size: 30px;
  text-shadow:
    0 0 6px #6e5091,
    0 0 12px #382452;
}

.mausoleum h2 {
  margin: 10px 0 6px;
  color: #bdabbd;
  font-size: 20px;
  letter-spacing: 3px;
  text-shadow: 1px 1px 3px #000;
}

.mausoleum p {
  color: #8c7e9e;
  font-size: 12px;
  letter-spacing: 3px;
}

.mausoleum-door {
  position: relative;
  z-index: 4;
  margin: 20px auto 0;
  width: 65px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #5d4a75;
  border-radius: 35px 35px 0 0;
  color: #7d659c;
  font-size: 30px;
  background: #08050c;
  box-shadow:
    inset 0 0 15px #000,
    0 0 8px rgba(95, 65, 130, 0.2);
}

/* =========================
   MINI MAUSOLEO — GUEST BOOK
   ========================= */

.guest-book {
  grid-column: 4;
  grid-row: 1;

  justify-self: center;
  align-self: center;

  position: relative;

  width: 180px;
  height: 190px;

  padding: 25px 15px 15px;

  text-align: center;
  text-decoration: none;

  background:
    linear-gradient(
      90deg,
      #1f1a26 0%,
      #3b3345 15%,
      #292333 50%,
      #3b3345 85%,
      #1f1a26 100%
    );

  border: 2px solid #5d4a75;

  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(95, 65, 130, 0.25),
    inset 0 0 25px rgba(0, 0, 0, 0.75);

  outline: 1px solid rgba(160, 130, 200, 0.15);
  outline-offset: -7px;

  transition: all 0.4s ease;
}

/* TECHO */

.guest-book::before {
  content: "";

  position: absolute;

  top: -38px;
  left: -2px;

  width: calc(100% + 4px);
  height: 40px;

  background:
    linear-gradient(
      180deg,
      #51465e 0%,
      #342d3d 50%,
      #1d1824 100%
    );

  border: 2px solid #6c548a;

  clip-path: polygon(
    50% 0,
    100% 100%,
    0 100%
  );

  box-shadow:
    0 -4px 15px rgba(95, 65, 130, 0.25);

  z-index: 1;
}

/* CRUZ / ORNAMENTO */

.guest-book-top {
  position: relative;
  z-index: 3;

  color: #c9b6e0;

  font-size: 25px;

  text-shadow:
    0 0 6px #6e5091,
    0 0 12px #382452;
}

/* TÍTULO */

.guest-book h2 {
  position: relative;
  z-index: 3;

  margin: 8px 0 5px;

  color: #bdabbd;

  font-size: 16px;
  letter-spacing: 2px;

  text-shadow:
    1px 1px 3px #000;
}

/* TEXTO */

.guest-book p {
  position: relative;
  z-index: 3;

  margin: 0;

  color: #8c7e9e;

  font-size: 11px;
  letter-spacing: 1px;
}

/* PUERTITA */

.guest-book-door {
  position: relative;
  z-index: 4;

  width: 50px;
  height: 60px;

  margin: 15px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #08050c;

  border: 2px solid #5d4a75;

  border-radius: 25px 25px 0 0;

  color: #9f88bf;

  font-size: 22px;

  box-shadow:
    inset 0 0 15px #000,
    0 0 8px rgba(95, 65, 130, 0.25);
}

/* HOVER */

.guest-book:hover {
  transform: translateY(-8px);

  border-color: #8268a1;

  box-shadow:
    0 20px 35px #000,
    0 0 25px #523770,
    inset 0 0 25px rgba(0, 0, 0, 0.75);
}

/* =========================
   GUEST BOOK PAGE
   ========================= */

.guestbook-page {
  min-height: 100vh;
  padding: 40px 20px 60px;

  background:
    radial-gradient(
      ellipse at center,
      #1f1929 0%,
      #100c17 45%,
      #06040a 100%
    );

  color: #c9bfdb;
}


/* HEADER */

.guestbook-header {
  text-align: center;
  margin-bottom: 60px;
}

.guestbook-header .small-moon {
  font-size: 70px;
  color: #e5e0f0;

  text-shadow:
    0 0 15px #fff,
    0 0 35px #9d8abf;
}

.guestbook-header h1 {
  margin: 10px 0;

  color: #cbb8e3;

  font-size: 38px;
  letter-spacing: 7px;

  text-shadow:
    0 0 8px #684f87,
    2px 2px 4px #000;
}

.guestbook-header p {
  color: #8c7e9e;
  font-style: italic;
}


/* CONTENEDOR */

.atabook-container {
  width: 99%;
  max-width: 1500px;
  margin: 30px auto;
}

.atabook-container iframe {
  width: 100%;
  height: 1000px;
  border: none;
  display: block;
}


/* MINI MAUSOLEO */



/* FOOTER */

.guestbook-footer {
  margin-top: 70px;
  text-align: center;
}

.guestbook-footer a {
  color: #9f88bf;

  text-decoration: none;

  letter-spacing: 2px;

  transition: all 0.3s ease;
}

.guestbook-footer a:hover {
  color: #f0e6ff;

  text-shadow:
    0 0 10px #9f88bf;
}

.guestbook-footer p {
  margin-top: 20px;

  color: #5d506a;

  font-size: 12px;
}







/* =========================
   MINI MAUSOLEO — PET CEMETERY
   ========================= */

.pet-entrance {
  grid-column: 1;
  grid-row: 1;

  justify-self: center;
  align-self: center;

  position: relative;

  width: 180px;
  height: 210px;

  padding: 30px 15px 15px;

  text-align: center;
  text-decoration: none;

  background:
    linear-gradient(
      90deg,
      #1f1a26 0%,
      #3b3345 12%,
      #292333 50%,
      #3b3345 88%,
      #1f1a26 100%
    );

  border: 3px solid #5d4a75;

  box-shadow:
    0 20px 35px rgba(0, 0, 0, 0.95),
    0 0 22px rgba(95, 65, 130, 0.25),
    inset 0 0 30px rgba(0, 0, 0, 0.75);

  outline: 1px solid rgba(160, 130, 200, 0.15);
  outline-offset: -8px;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* TECHO TRIANGULAR */

.pet-entrance::before {
  content: "";

  position: absolute;

  top: -48px;
  left: -3px;

  width: calc(100% + 6px);
  height: 50px;

  background:
    linear-gradient(
      180deg,
      #51465e 0%,
      #342d3d 50%,
      #1d1824 100%
    );

  border: 3px solid #6c548a;

  clip-path:
    polygon(
      50% 0,
      100% 100%,
      0 100%
    );

  box-shadow:
    0 -4px 15px rgba(95, 65, 130, 0.25);

  z-index: 1;
}


/* ORNAMENTO */

.pet-entrance-top {
  position: relative;
  z-index: 3;

  color: #c9b6e0;

  font-size: 30px;

  text-shadow:
    0 0 6px #6e5091,
    0 0 12px #382452;
}


/* TITULO */

.pet-entrance h2 {
  position: relative;
  z-index: 3;

  margin: 8px 0 12px;

  color: #bdabbd;

  font-size: 17px;
  letter-spacing: 3px;

  text-shadow:
    1px 1px 3px #000;
}


/* PUERTA */

.pet-entrance-door {
  position: relative;
  z-index: 4;

  width: 60px;
  height: 75px;

  margin: 12px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #08050c;

  border: 2px solid #5d4a75;

  border-radius: 30px 30px 0 0;

  color: #9f88bf;

  font-size: 28px;

  box-shadow:
    inset 0 0 15px #000,
    0 0 8px rgba(95, 65, 130, 0.25);
}


/* HOVER */

.pet-entrance:hover {
  transform: translateY(-10px);

  border-color: #8268a1;

  box-shadow:
    0 25px 40px #000,
    0 0 28px #523770,
    inset 0 0 30px rgba(0, 0, 0, 0.75);
}






.graveyard-footer a {
  color: #9f88bf;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.graveyard-footer a:hover {
  color: #f0e6ff;
  text-shadow: 0 0 10px #9f88bf;
}

.graveyard-footer p {
  margin-top: 20px;
  color: #5d506a;
  font-size: 12px;
}

.atabook-container {
  width: 100%;
  margin: 20px auto;
}

.atabook-container iframe {
  display: block;
  width: 100%;
  height: 800px;
  border: none;
}

.pet-entrance {
  border: 3px solid #5d4a75 !important;
  outline: none !important;
}

.pet-entrance::before {
  border: none !important;
}

.pet-entrance,
.pet-entrance:hover {
  border: 3px solid #5d4a75 !important;
  outline: none !important;
  box-shadow:
    0 20px 35px rgba(0, 0, 0, 0.95),
    0 0 22px rgba(95, 65, 130, 0.25),
    inset 0 0 30px rgba(0, 0, 0, 0.75) !important;
}

.pet-entrance::before {
  border-color: #6c548a !important;
}

.pet-entrance {
  border: 3px solid #5d4a75 !important;
  outline: none !important;
}

.pet-entrance::after {
  display: none !important;
}

.pet-entrance::before {
  border: 3px solid #6c548a !important;
}

/* ELIMINAR CUALQUIER BORDE O RESPLANDOR DEL MAUSOLEO */
.pet-entrance,
.pet-entrance:hover {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.pet-entrance::before,
.pet-entrance::after {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.pet-entrance,
.pet-entrance:hover,
.pet-entrance:focus,
.pet-entrance:active,
.pet-entrance:visited {
  border: 3px solid #5d4a75 !important;
  outline: none !important;
  box-shadow:
    0 20px 35px rgba(0, 0, 0, 0.95),
    0 0 22px rgba(95, 65, 130, 0.25),
    inset 0 0 30px rgba(0, 0, 0, 0.75) !important;
}

.pet-entrance::before {
  border: 3px solid #6c548a !important;
  outline: none !important;
}

.pet-entrance,
.pet-entrance:hover,
.pet-entrance:focus,
.pet-entrance:active,
.pet-entrance:visited {
  border: 3px solid #5d4a75 !important;
  outline: none !important;
  box-shadow:
    0 20px 35px rgba(0, 0, 0, 0.95),
    0 0 22px rgba(95, 65, 130, 0.25),
    inset 0 0 30px rgba(0, 0, 0, 0.75) !important;
}

.pet-entrance::before {
  border: 3px solid #6c548a !important;
  outline: none !important;
}

#portrait-overlay {
  display: none;

  position: fixed;
  inset: 0;

  z-index: 9999;

  align-items: center;
  justify-content: center;

  background: rgba(5, 3, 8, 0.88);
}

.portrait-window {
  position: relative;

  width: 320px;
  max-width: 85%;

  padding: 25px;

  text-align: center;

  background:
    radial-gradient(
      ellipse at center,
      #302838 0%,
      #15101c 70%,
      #08050c 100%
    );

  border: 2px solid #5d4a75;

  box-shadow:
    0 0 35px rgba(95, 65, 130, 0.5),
    0 20px 50px #000;
}

.portrait-window img {
  display: block;

  width: 100%;
  max-height: 500px;

  object-fit: contain;

  border: 1px solid #6c548a;
}

.portrait-window h2 {
  margin: 15px 0 5px;

  color: #cbb8e3;

  font-size: 20px;
}

.portrait-window p {
  color: #8c7e9e;
}

.portrait-window button {
  position: absolute;

  top: 8px;
  right: 10px;

  background: none;
  border: none;

  color: #c9b6e0;

  font-size: 20px;

  cursor: pointer;
}

