body {
  background-color: rgba(17, 22, 30, 0.9);
}

h1, h2, h3, h4, h5, h6, span {
  font-family: "Great Vibes", cursive;
  text-align: center; /* Centra los encabezados (opcional) */
  margin: 0.5em 0; /* Espaciado elegante */
  font-weight: 100 !important;
}

.btn::after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 50%;
  position: absolute;
}

.button-form {
  width: 100%;
  background-color: #c47815;
  margin-bottom: 50px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: white;
}
.button-form a {
  text-decoration: none;
  color: white;
}
.button-form a span {
  font-size: 2.5rem;
  margin: 0;
  display: flex;
  justify-content: center;
}
.button-form .subtittle {
  font-size: 1.3rem;
  margin: 0;
  display: flex;
  justify-content: center;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgb(255, 255, 255), 0 0 0 0px rgba(255, 255, 255, 0.85);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0), 0 0 0 30px rgba(255, 255, 255, 0);
  }
}
/*--------------------*/
.link-container {
  color: unset;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-container:hover {
  color: unset;
}

.header {
  margin-top: 50px;
  margin-bottom: 25px;
}
.header .title {
  margin-bottom: 30px;
  color: white;
  font-weight: 600;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.header .title h1 {
  font-size: 2rem;
  text-align: center;
}
.header .title h2 {
  color: #bf930d;
  font-size: 1.9rem;
}
.header .video-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header .video-content .video {
  border-radius: 25px;
  height: 35vw;
  max-height: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("./images/singing-2.jpeg");
  background-position-y: -325px;
  background-size: cover;
  transition: box-shadow 0.3s linear;
  box-shadow: 0 0 15px rgba(234, 190, 63, 0.404);
}
.header .video-content .video .btn {
  padding-left: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
  font-size: 4rem;
  color: white;
  cursor: pointer;
}
.header .video-content .video .btn:hover {
  border-color: white;
}
.header span {
  margin-top: 30px;
  font-size: 1.9rem;
  text-align: center;
  font-weight: bold;
  color: #bf930d;
}

.menu {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 10px;
}
.menu .menu-item {
  display: flex;
  justify-self: center;
  justify-content: flex-end;
  padding-bottom: 0px;
  align-content: center;
  flex-direction: column;
  margin-top: 20px;
  width: 100%;
  height: 201px;
  border-radius: 25px;
  box-shadow: 0 0 15px rgba(234, 190, 63, 0.404);
}
.menu .menu-item .image {
  display: flex;
  justify-content: center;
}
.menu .menu-item .title {
  display: flex;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-align: center;
}
.menu .about {
  background-image: url(./images/regalo.jpg);
  background-size: cover;
  background-position-y: -49px;
}
.menu .present {
  background-image: url(./images/ninos.jpeg);
  background-size: cover;
  background-position-y: -50px;
}
.menu .singing {
  background-image: url(./images/historia_corazones.jpeg);
  background-size: cover;
  background-position-y: -53px;
}
.menu .dates {
  background-image: url(./images/nuestras-citas.jpg);
  background-size: cover;
  background-position-y: -54px;
}
.menu .link {
  background-image: url(./images/enlaces.jpg);
  background-size: cover;
  background-position-y: -4px;
}
.menu .contact {
  background-image: url(./images/contact.jpeg);
  background-size: cover;
  background-position-y: -42px;
}

.overlflow-hidden {
  overflow: hidden !important;
}

.overflow-y {
  overflow-y: overlay;
}

.modal-window {
  max-height: 100vh;
  position: fixed;
  background-color: rgba(53, 53, 53, 0.495);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.modal-window:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-window > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  background: white;
}
.modal-window > .beauty-modal-video {
  top: 25%;
}
.modal-window header {
  font-weight: bold;
}
.modal-window .beauty-modal {
  max-height: 90vh;
  border-radius: 17px;
  background-color: rgb(40, 44, 52);
  color: white;
}
.modal-window .beauty-modal .modal-close {
  top: 10px !important;
  right: 25px !important;
  line-height: 50px;
  font-size: 40px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  color: white;
  z-index: 9999;
  text-decoration: none;
}
.modal-window .beauty-modal .modal-reload {
  top: 10px !important;
  line-height: 50px;
  font-size: 35px;
  position: absolute;
  text-align: center;
  z-index: 9999;
  color: white;
  cursor: pointer;
  text-decoration: none;
}
.modal-window .beauty-modal .link-container {
  font-size: 1.5rem;
  justify-content: left;
}
.modal-window .beauty-modal .link-container .btn-action {
  border: 2px solid;
  border-color: rgba(53, 53, 53, 0.761);
  border-radius: 15px;
  padding: 2px;
  transition: box-shadow 0.3s linear;
  box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.4509803922);
  font-size: 1.7rem;
  cursor: pointer;
}
.modal-window .beauty-modal .link-container .btn-action:hover {
  box-shadow: 0px 0px 26px 0px rgba(34, 34, 34, 0.7333333333);
}

#video-modal .beauty-modal {
  padding: unset !important;
}
#video-modal .beauty-modal .modal-close {
  color: white;
  top: 10px;
  right: 15px;
}
#video-modal .beauty-modal .modal-reload {
  color: white;
  top: 10px;
  left: 15px;
}
#video-modal .video-player {
  width: 100vw;
}

.photo {
  border-radius: 14px;
}

#about-modal .beauty-modal .about-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#about-modal .beauty-modal .about-content .photo {
  display: none;
  margin: 10px auto;
  position: relative;
  float: left;
  padding: 20px;
  justify-content: center;
}
#about-modal .beauty-modal .about-content .photo img {
  width: 80%;
  min-width: 200px;
  max-width: 496px;
  margin-top: -100px;
  border: 10px solid white;
  box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.4509803922);
}
#about-modal .beauty-modal .about-content .text span {
  font-size: 1em;
  font-weight: bold;
  color: white;
}
#about-modal .beauty-modal .about-content .text h1 {
  font-weight: bold;
  font-size: 1.9em;
}
#about-modal .beauty-modal .about-content .text p {
  font-size: 1.5rem;
}
#about-modal .beauty-modal .modal-close {
  right: 15px !important;
  bottom: 0px !important;
}

#the-present-modal .beauty-modal .about-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#the-present-modal .beauty-modal .about-content .photo {
  display: none;
  margin: 10px auto;
  position: relative;
  float: left;
  padding: 20px;
  justify-content: center;
}
#the-present-modal .beauty-modal .about-content .photo img {
  width: 80%;
  min-width: 200px;
  max-width: 496px;
  margin-top: -100px;
  border: 10px solid white;
  box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.4509803922);
}
#the-present-modal .beauty-modal .about-content .text span {
  font-size: 1em;
  font-weight: bold;
  color: white;
}
#the-present-modal .beauty-modal .about-content .text h1 {
  font-weight: bold;
  font-size: 1.9em;
}
#the-present-modal .beauty-modal .about-content .text p {
  font-size: 1.5rem;
}
#the-present-modal .beauty-modal .modal-close {
  right: 15px !important;
  bottom: 0px !important;
}

#singing-murcia-modal .beauty-modal .about-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#singing-murcia-modal .beauty-modal .about-content .photo {
  display: none;
  margin: 10px auto;
  position: relative;
  float: left;
  padding: 20px;
  justify-content: center;
}
#singing-murcia-modal .beauty-modal .about-content .photo img {
  width: 80%;
  min-width: 200px;
  max-width: 496px;
  margin-top: -100px;
  border: 10px solid white;
  box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.4509803922);
}
#singing-murcia-modal .beauty-modal .about-content .text span {
  font-size: 1em;
  font-weight: bold;
  color: white;
}
#singing-murcia-modal .beauty-modal .about-content .text h1 {
  font-weight: bold;
  font-size: 1.9em;
}
#singing-murcia-modal .beauty-modal .about-content .text p {
  font-size: 1.5rem;
}
#singing-murcia-modal .beauty-modal .modal-close {
  right: 15px !important;
  bottom: 0px !important;
}

#dates-modal .beauty-modal h1 {
  font-size: 2em;
}
#dates-modal .beauty-modal .info .item {
  padding: 1.5em 1.5em 0.2em 1.5em;
  border-bottom: 1px dashed rgb(105, 105, 105);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#dates-modal .beauty-modal .info .item .title {
  font-size: 1.5em;
  font-weight: bold;
}
#dates-modal .beauty-modal .info .item .hour {
  margin-left: 5px;
  font-size: 1.5em;
  text-align: center;
}
#dates-modal .beauty-modal .info .item .subtitle {
  font-size: 1.3em;
}
#dates-modal .beauty-modal .info .item i {
  margin-left: 10px;
  margin-top: 5px;
  font-size: 30px;
}

#link-modal .beauty-modal .link-modal-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#link-modal .beauty-modal .link-modal-content .photo {
  background-image: url(./images/links.jpg);
  width: 492px;
  height: 237px;
  margin-top: -100px;
  background-size: cover;
  background-position-y: -18px;
  border: 10px solid white;
  box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.45);
}
#link-modal .beauty-modal .link-modal-content .photo img {
  width: 80%;
  min-width: 200px;
  max-width: 496px;
  margin-top: -100px;
  border: 10px solid white;
  box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.4509803922);
}
#link-modal .beauty-modal .link-modal-content .links {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  height: 311px;
  width: 509px;
  margin-bottom: -19px;
  margin-top: 29px;
}
#link-modal .beauty-modal .link-modal-content .links .item {
  cursor: pointer;
  border-color: rgba(47, 46, 46, 0.7450980392) !important;
  border: 1px solid;
  width: 70%;
  max-width: 700px;
  min-width: 300px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  padding: 5px;
  transition: box-shadow 0.3s linear;
  box-shadow: 0 0 15px rgba(234, 190, 63, 0.404);
}
#link-modal .beauty-modal .link-modal-content .links .item i {
  margin-top: 3px;
  margin-right: 10px;
  display: flex;
  justify-self: left;
}
#link-modal .beauty-modal .link-modal-content .links .item:hover {
  box-shadow: 0 0 15px rgba(51, 48, 48, 0.885);
}
#link-modal .beauty-modal .modal-close {
  right: 15px !important;
  bottom: 0px !important;
}

#contact-modal .beauty-modal .title {
  font-size: 1.9em;
  font-weight: bold;
  margin-right: 10px;
}
#contact-modal .beauty-modal .contact-item {
  padding: 1.5em;
  border-bottom: 1px dashed rgb(105, 105, 105);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  overflow: overlay;
}
#contact-modal .beauty-modal .contact-item .title-2 {
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 10px;
}
#contact-modal .beauty-modal .contact-item .text {
  margin-left: 5px;
  font-size: 1.5em;
}
#contact-modal .beauty-modal .contact-item i {
  margin-left: 10px;
  margin-top: 5px;
  font-size: 30px;
}
#contact-modal .beauty-modal .link-container {
  justify-content: center;
}
#contact-modal .beauty-modal .link-container .btn-action {
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact-modal .beauty-modal .modal-close {
  right: 15px !important;
  bottom: 0px !important;
}
#contact-modal .beauty-modal .modal-close {
  height: 40px;
  width: 40px;
  right: 27px !important;
  bottom: 0px !important;
}

.float-container .float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 31px;
  text-decoration-line: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 49;
}
.float-container .float.whatsapp {
  background-color: #25d366;
  right: 5vw;
}
.float-container a:hover {
  color: white !important;
}
.float-container a {
  color: white !important;
}
/*
EVENTO COROS NAVIDAD
*/
.action-container {
  display: flex;
  margin-top: 10px;
}
.action-container a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  background-color: #bf930d;
  border-radius: 12px;
  padding: 4px 6px 4px 6px;
  box-shadow: 0 0 15px rgba(234, 190, 63, 0.404);
}
.action-container .first {
  margin-right: 10px;
}

@media (min-width: 534px) {
  .button-form a span {
    font-size: 3rem;
  }
  .button-form .subtittle {
    font-size: 1.6rem;
  }
  .whatsapp {
    right: 15px !important;
  }
  .menu {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
  .menu .menu-item .title {
    display: flex;
    justify-content: center;
    font-size: 2.3rem;
    font-weight: bold;
    color: white;
    text-align: center;
  }
  .menu .about {
    background-position-y: -47px;
  }
  .menu .dates {
    background-position-y: -26px;
  }
  .menu .link {
    background-position-y: -4px;
  }
  .menu .contact {
    background-position-y: -26px;
  }
  .btn {
    padding-left: 2rem !important;
    width: 9rem !important;
    height: 9rem !important;
    font-size: 7rem !important;
  }
  #video-modal .beauty-modal {
    width: 67vw;
    max-width: 1070px;
    top: 50%;
    padding: unset !important;
  }
  #video-modal .beauty-modal .modal-close {
    top: 15px;
    right: 2%;
  }
  #video-modal .beauty-modal .modal-close i {
    font-size: 60px;
  }
  #video-modal .video-player {
    width: 100vw;
  }
}
@media (min-width: 992px) {
  .menu {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
  .menu .menu-item {
    width: 100%;
    height: 301px;
  }
  .menu .menu-item .title {
    display: flex;
    justify-content: center;
    font-size: 2.3rem;
    font-weight: bold;
    color: white;
    text-align: center;
  }
  .menu .about {
    background-position-y: -94px;
  }
  .menu .dates {
    background-position-y: -63px;
  }
  .menu .link {
    background-position-y: -4px;
  }
  .menu .contact {
    background-position-y: -61px;
  }
  .btn {
    padding-left: 2rem !important;
    width: 9rem !important;
    height: 9rem !important;
    font-size: 7rem !important;
  }
  #video-modal .beauty-modal {
    padding: unset !important;
  }
  #video-modal .beauty-modal .modal-close {
    color: white;
    top: 15px;
    right: 2%;
  }
  #video-modal .beauty-modal .modal-close i {
    font-size: 60px;
  }
  #video-modal .video-player {
    width: 100vw;
  }
  #about-modal .beauty-modal .about-content .photo {
    display: flex;
    background-image: url(./images/ninos.jpeg);
    width: 492px;
    height: 237px;
    margin-top: -100px;
    background-size: cover;
    background-position-y: -1px;
    border: 10px solid white;
    box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.45);
  }
  #about-modal .beauty-modal .about-content .photo img {
    margin-top: -120px;
  }
  #the-present-modal .beauty-modal .about-content .photo {
    display: flex;
    background-image: url(./images/regalo-2.jpg);
    width: 492px;
    height: 237px;
    margin-top: -100px;
    background-size: cover;
    background-position-y: -1px;
    border: 10px solid white;
    box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.45);
  }
  #the-present-modal .beauty-modal .about-content .photo img {
    margin-top: -120px;
  }
  #singing-murcia-modal .beauty-modal .about-content .photo {
    display: flex;
    background-image: url(./images/historia_corazones.jpeg);
    width: 492px;
    height: 237px;
    margin-top: -100px;
    background-size: cover;
    background-position-y: -1px;
    border: 10px solid white;
    box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.45);
  }
  #singing-murcia-modal .beauty-modal .about-content .photo img {
    margin-top: -120px;
  }
}
@media (min-width: 1200px) {
  .menu {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
  .menu .menu-item {
    width: 100%;
    height: 301px;
  }
  .menu .menu-item .title {
    display: flex;
    justify-content: center;
    font-size: 2.3rem;
    font-weight: bold;
    color: white;
    text-align: center;
  }
  .menu .about {
    background-position-y: -101px;
  }
  .menu .dates {
    background-position-y: -82px;
  }
  .menu .link {
    background-position-y: -4px;
  }
  .menu .contact {
    background-position-y: -63px;
  }
  .btn {
    padding-left: 2rem !important;
    width: 9rem !important;
    height: 9rem !important;
    font-size: 7rem !important;
  }
  #video-modal .beauty-modal {
    padding: unset !important;
  }
  #video-modal .beauty-modal .modal-close {
    top: 15px;
    right: 2%;
  }
  #video-modal .beauty-modal .modal-close i {
    font-size: 60px;
  }
  #video-modal .video-player {
    width: 100vw;
  }
  #about-modal .beauty-modal .about-content .photo {
    background-image: url(./images/ninos.jpeg);
    width: 492px;
    height: 237px;
    margin-top: -100px;
    background-size: cover;
    background-position-y: -1px;
    border: 10px solid white;
    box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.45);
  }
  #about-modal .beauty-modal .about-content .photo img {
    margin-top: -120px;
  }
  #the-present-modal .beauty-modal .about-content .photo {
    background-image: url(./images/regalo-2.jpg);
    width: 492px;
    height: 237px;
    margin-top: -100px;
    background-size: cover;
    background-position-y: -1px;
    border: 10px solid white;
    box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.45);
  }
  #the-present-modal .beauty-modal .about-content .photo img {
    margin-top: -120px;
  }
  #singing-murcia-modal .beauty-modal .about-content .photo {
    background-image: url(./images/historia_corazones.jpeg);
    width: 492px;
    height: 237px;
    margin-top: -100px;
    background-size: cover;
    background-position-y: -83px;
    border: 10px solid white;
    box-shadow: 0px 0px 6px 0px rgba(34, 34, 34, 0.45);
  }
  #singing-murcia-modal .beauty-modal .about-content .photo img {
    margin-top: -120px;
  }
}/*# sourceMappingURL=style.css.map */