/* Generales */

:root {


  /* Colores */
  --color-1: #4a3570;
  --color-2: #6B4E9B;
  --color-3: #5a4080;
  --color-4: #f5f5f5;
  --color-5: #fff;


  /* Fuentes */
  --fuente-1: 'Cookie', cursive;
  --fuente-4: 'Bilgate', cursive;
  --fuente-2: 'Open Sans', sans-serif;

  /* Grosor de fuente */
  --weight-font-regular: 400;
  --weight-font-bold: 700;

  /* Colores de texto oscurecidos para mejor legibilidad */
  --text-dark: #2c2c2c;
  --text-normal: #333333;
  --text-light: #4a4a4a;

}

/* Estilos generales para evitar espacio blanco */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #f8f5ff 0%, #f0ebf9 100%);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  background-attachment: fixed;
  background-image: linear-gradient(180deg, #f8f5ff 0%, #f0ebf9 100%);
  overflow-x: hidden;
  color: var(--text-dark);
  font-family: var(--fuente-2);
}





/* Scroll */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--color-2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-3);
}

/* / Scroll */

.custom-control-label::before {
  height: 20px;
  width: 20px;
}

.custom-control-label::after {
  height: 20px;
  width: 20px;
}

.custom-control-input:checked~.custom-control-label::before {
  color: var(--color-3);
  border-color: var(--color-3);
  background-color: var(--color-3);
  outline: none;
}

.custom-control-input:focus~.custom-control-label::before {
  box-shadow: none !important;
}

.fancybox-bg {
  background-color: var(--color-3) !important;
}

.boton {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-bold);
  background: var(--color-3);
  color: var(--color-4);
  text-transform: uppercase;
  border-radius: 50px;
  line-height: 15px;
  font-size: 15px;
  padding: 15px 20px;

  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.40);
  -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.40);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.40);

  -webkit-transition: all 0.5s 0s ease;
  -moz-transition: all 0.5s 0s ease;
  -o-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

.boton:hover {
  background: var(--color-1);
  color: var(--color-5);
  text-decoration: none;
}

.title {
  font-family: var(--fuente-1);
  font-weight: var(--weight-font-regular);
  color: #4a3570;
  width: 100%;
  display: inline-block;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 0;
}

.subtitle {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  color: #62379b;
  width: 100%;
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
}

ul {
  list-style: none;
  padding: 0;
}


a {
  -webkit-transition: all 0.5s 0s ease;
  -moz-transition: all 0.5s 0s ease;
  -o-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

span#error-form {
  color: red;
  font-size: 13px;
}

/* Fondo modales */

.modal-backdrop {
  background-color: var(--color-4);
  opacity: 0.95 !important;
}

.backdrop-modal-musica .modal-backdrop {
  background-color: var(--color-1);
  opacity: 1 !important;
}

.modal-body {
  flex: inherit;
}

.modal-transparent .modal-content {
  background: transparent;
  border: none;
}

.modal-transparent .close {
  color: var(--color-3);
  text-shadow: none;
  opacity: 1;
  position: absolute;
  right: 35px;
  outline: none;
  padding: 0;
}

.modal-transparent .modal-header,
.modal-transparent .modal-footer {
  border: none;
  padding: 0;
}

.modal-transparent .modal-header h3 {
  color: var(--color-1);
  text-align: center;
  width: 100%;
}

.modal-transparent .boton {
  padding: 15px 50px;
}



/* Cambio de idiomas / paises */

.flags-laguages li a {
  display: inline-block;
  width: 35px;
  height: 35px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  margin: 10px 8px;
  border: 2px solid var(--color-5);
}

.flags-laguages li a:hover {
  border: 2px solid var(--color-2);
}

.flags-laguages a.reset-lang {
  width: 100%;
  text-align: center;
  color: var(--color-5);
  display: inline-block;
  font-size: 14px;
  margin-top: 30px;
}

.flags-laguages a.reset-lang:hover {
  text-decoration: underline;
}

.flags-laguages a.reset-lang img {
  width: 22px;
  height: auto;
  margin-right: 5px;
}



/* Loader */


.preloader-area {
  position: fixed;
  background: var(--color-4);
  z-index: 11000;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.preloader-area .loader {
  width: 130px;
  /* Cambiar color de verde a violeta */
  filter: hue-rotate(200deg) saturate(1.2);
}

/* ---------- */


/* Portada */
section.portada {
  width: 100%;
  padding-bottom: 40px;
  padding-top: 30px;
  background-image: url('/images/FONDO-FINAL.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--color-5);
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

section.portada::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(107, 78, 155, 0.1) 0%, rgba(155, 123, 200, 0.1) 100%);
  opacity: 0.8;
  z-index: 0;
  top: 0;
  left: 0;
}

section.portada::after {
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 30%,
      rgba(248, 245, 255, 0.5) 50%,
      rgba(248, 245, 255, 0.8) 70%,
      rgba(248, 245, 255, 0.95) 85%,
      rgb(248, 245, 255) 100%);
  position: absolute;
  content: '';
  height: 200px;
  width: 100%;
  bottom: -1px;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

section.portada .adorno {
  position: absolute;
  width: 360px;
  height: auto;
  top: -90px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

section.portada .adorno.adorno-1 {
  z-index: 1;
}

section.portada .adorno.adorno-2 {
  z-index: 2;
}

section.portada .adorno.adorno-3 {
  z-index: 3;
}

section.portada .container .row:first-child {
  height: 100vh;
  max-height: 700px;
}

section.portada .content-portada {
  width: 75%;
  z-index: 999;
  position: relative;
  min-height: auto;
}

section.portada .content-portada span.fecha {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  color: var(--color-1);
  display: table;
  white-space: nowrap;
  width: 100%;
  font-weight: 300;
  font-size: 25px;
}

section.portada .content-portada span.fecha:before {
  right: -25%;
}

section.portada .content-portada span.fecha:after {
  left: -25%;
}

section.portada .content-portada span:before,
section.portada .content-portada span:after {
  border-top: 1px solid var(--color-2);
  content: '';
  display: table-cell;
  position: relative;
  top: 0.9em;
  width: 15%;
}

section.portada .content-portada h1 {
  color: var(--color-1);
  font-family: var(--fuente-4);
  font-weight: var(--weight-font-regular);
  width: 100%;
  text-align: center;
  font-size: 110px;
  line-height: 110px;
  margin-bottom: 0;
}

section.portada .box-nombres-fecha-portada .line {
  background-color: var(--color-2);
  height: 1px;
  width: 50%;
  margin: 0 auto;
  margin-top: 20px;
}

section.portada .box-nombres-fecha-portada h1 span {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  background-color: var(--color-2);
  color: var(--color-4);
  display: inline-block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 40px;
  font-weight: 300;
}

section.portada .box-frase-portada {
  margin-top: 25px;
}

section.portada .box-frase-portada p {
  color: var(--color-1);
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  font-size: 22px;
  text-align: center;
  margin-bottom: 0;
}

section.portada .box-frase-portada p img {
  width: 30px;
  margin: 10px 0
}

section.portada .flecha-continuar {
  width: 50px;
  position: absolute;
  bottom: -80px;
}


ul.lang-inv {
  position: absolute;
  width: 100%;
  top: -65px;
}

ul.lang-inv li {
  margin: 0 5px;
}

ul.lang-inv li a {
  color: var(--color-1);
  background-color: var(--color-3);
  font-size: 14px;
  font-family: var(--fuente-2);
  font-weight: 400;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  width: 30px;
  text-align: center;
  border-radius: 50%;
}

ul.lang-inv li a:hover {
  text-decoration: none;
  background: var(--color-1);
  color: var(--color-5)
}


/* ---------- */


/* Cuenta regresiva */
section.cuenta-regresiva {
  position: relative;
  height: 360px;
  background: linear-gradient(135deg, #f8f5ff 0%, #fff 50%, #f5f0ff 100%);
}


section.cuenta-regresiva .box-aros .box-circulo {
  width: 315px;
  height: 315px;
}

section.cuenta-regresiva .box-aros .box-circulo span.falta {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  color: var(--color-2);
  width: 100%;
  text-align: center;
  display: inline-block;
  font-weight: 300;
  font-size: 40px;
  margin-top: 45px;
}


section.cuenta-regresiva .reloj {
  margin-top: 10px;
  margin-bottom: 25px;
}

section.cuenta-regresiva .reloj-col {
  width: 25%;
  border-right: 1px solid #ccc;
  padding: 0 8px;
  float: left;
}

section.cuenta-regresiva .reloj-col.no-border {
  border: none;
}

section.cuenta-regresiva .reloj-col span.number {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-bold);
  color: var(--color-1);
  display: inline-block;
  width: 100%;
  font-size: 35px;
}

section.cuenta-regresiva .reloj-col span.time {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  color: var(--color-2);
  display: inline-block;
  width: 100%;
  font-size: 20px;
  font-weight: 300;
}

section.cuenta-regresiva p.fin-cuenta {
  font-size: 30px;
  line-height: 30px;
  color: var(--color-3);
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  padding: 60px 0 0 0;
}



/* ---------- */




/* Ceremonia - Fiesta */

section.ceremonia-fiesta {
  background: url(../images/lineas01.svg) center 0 no-repeat, linear-gradient(135deg, #fff 0%, #f9f5ff 50%, #f0ebf9 100%);
  padding-bottom: 20%;
  position: relative;
}

section.ceremonia-fiesta .adorno {
  position: absolute;
  width: 200px;
  height: auto;
  top: 280px;
  left: -30px;
}

section.ceremonia-fiesta .adorno.adorno-1 {
  z-index: 1;
}

section.ceremonia-fiesta .adorno.adorno-2 {
  z-index: 2;
}

section.ceremonia-fiesta .adorno.adorno-3 {
  z-index: 3;
}


section.ceremonia-fiesta .col-ceremonia,
section.ceremonia-fiesta .col-fiesta {
  z-index: 999;
}


section.ceremonia-fiesta .col-ceremonia .anim-anillos,
section.ceremonia-fiesta .anim-fiesta {
  width: 175px;
  height: 175px;
  margin: 0 auto 20px;
  padding: 20px;
  background-color: var(--color-4);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.40);
  -moz-box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.40);
  box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.40);
}



section.ceremonia-fiesta .col-ceremonia .anim-anillos {
  padding: 25px
}

section.ceremonia-fiesta .col-fiesta .anim-fiesta {
  padding: 35px
}

section.ceremonia-fiesta .col-ceremonia h3,
section.ceremonia-fiesta .col-fiesta h3 {
  font-family: var(--fuente-1);
  font-weight: var(--weight-font-regular);
  background-color: var(--color-2);
  color: #ffffff !important;
  font-size: 50px;
  display: inline-block;
  position: relative;
  min-width: 60%;
  padding: 0;
}


section.ceremonia-fiesta .col-ceremonia h3:after,
section.ceremonia-fiesta .col-fiesta h3:after {
  background-image: url(../images/img_cinta02.svg);
  position: absolute;
  content: '';
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: left;
  height: 100%;
  width: 16px;
  right: -15px;
  top: 0;
}

section.ceremonia-fiesta .col-ceremonia h3:before,
section.ceremonia-fiesta .col-fiesta h3:before {
  background-image: url(../images/img_cinta01.svg);
  position: absolute;
  content: '';
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: right;
  height: 100%;
  width: 16px;
  left: -15px;
  top: 0;
}

section.ceremonia-fiesta .info-col {
  margin-top: 30px;
}

section.ceremonia-fiesta .info-col .info-box {
  margin-bottom: 45px;
}

section.ceremonia-fiesta .info-col .info-box h6 {
  font-family: var(--fuente-2);
  color: var(--color-2);
  font-size: 25px;
  font-weight: 700;
}

section.ceremonia-fiesta .info-col .info-box p {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  color: var(--color-2);
  font-size: 20px;
  font-weight: 400;
}

section.ceremonia-fiesta .info-col .info-box a.boton {
  margin-top: 5px;
  display: inline-block;
  width: 50%;
}

section.ceremonia-fiesta:after {
  background: url('../images/curvas02.svg') bottom center no-repeat;
  position: absolute;
  content: '';
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100%;
  width: 100%;
  bottom: 0;
}


section.ceremonia-fiesta .ondas-2 {
  position: absolute;
  top: 3%;
}

section.ceremonia-fiesta .addeventatc .nameBtn {
  color: var(--color-4);
}

section.ceremonia-fiesta .addeventatc:hover .nameBtn {
  color: var(--color-4);
}


/* ---------- */




/* Galeria */

section.galeria {
  padding-top: 30px;
  padding-bottom: 10px;
  position: relative;
  background: linear-gradient(135deg, #f8f5ff 0%, #fff 50%, #f5f0ff 100%);
}

section.galeria .anim-galeria {
  width: 70px;
  margin: 0 auto;
}


section.galeria .content-fotos {
  margin-top: 40px;
  position: relative;
}

section.galeria .content-fotos img {
  width: 100%;
}


section.galeria .content-fotos .polaroid a {
  outline: none;
}


section.galeria .content-fotos .polaroid {
  background-color: var(--color-4);
  padding: 15px;
  padding-bottom: 100px;
  margin: 5px;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.40);
  -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.432);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.40);

  -webkit-transition: all 0.5s 0s ease;
  -moz-transition: all 0.5s 0s ease;
  -o-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

section.galeria .slick-slide:focus {
  outline: none !important;
}

section.galeria .slick-center .polaroid {
  background-color: var(--color-5) !important;
}

.content-fotos .shadow-left {
  display: none;
}

.content-fotos .shadow-right {
  display: none;
}

.slick-dots {
  bottom: -30px;
}


section.galeria .slick-dots li button:before {
  font-size: 45px !important;
  color: var(--color-1) !important;
  opacity: 0.60;
}

section.galeria .slick-dots li.slick-active button:before {
  opacity: 1;
}

/* ---------- */



/* Fiesta */

section.fiesta {
  background: url('../images/lineas02.svg') center top no-repeat, linear-gradient(135deg, #fff 0%, #f9f5ff 50%, #f0ebf9 100%);
  padding-top: 14%;
  position: relative;
  padding-bottom: 17%;
}

section.fiesta .container {
  z-index: 999;
  position: relative;
}


section.fiesta .anim-musica {
  width: 75px;
  margin: 15px auto 40px auto;
}

section.fiesta .anim-vestuario {
  width: 95px;
}

section.fiesta .anim-tips {
  width: 55px;
}

section.fiesta:after {
  background: url('../images/curvas01.svg') bottom center no-repeat;
  position: absolute;
  content: '';
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100%;
  width: 100%;
  bottom: -85px;
  z-index: 99;
}

section.fiesta .item-fiesta {
  margin-top: 60px;
  padding: 0 40px;
}


section.fiesta .item-fiesta h3 {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-bold);
  color: #6B4E9B !important;
}

section.fiesta .item-fiesta p {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  color: var(--color-2);
  margin-bottom: 0;
  font-weight: 400;
}

section.fiesta .item-fiesta a.boton {
  width: 85%
}


section.fiesta .item-fiesta .content-item-fiesta {
  background-color: var(--color-4);
  padding: 40px 25px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  min-height: 400px;
}

section.fiesta .content-anim-fiesta {
  height: 80px;
}

section.fiesta .item-fiesta .adorno-1 {
  position: absolute;
  top: -115px;
  left: -60px;
  z-index: -1;
  width: 190px;
}


/* ---------- */



/* Regalos */


section.regalos {
  background: linear-gradient(135deg, #faf8ff 0%, #fff 50%, #f5f0ff 100%);
  padding-top: 14%;
  position: relative;
  padding-bottom: 10%
}

section.regalos .adorno {
  position: absolute;
  width: 200px;
  height: auto;
  top: 280px;
  left: -30px;
}

section.regalos .adorno.adorno-1 {
  z-index: 1;
}

section.regalos .adorno.adorno-2 {
  z-index: 2;
}

section.regalos .adorno.adorno-3 {
  z-index: 3;
}

section.regalos .anim-regalos {
  width: 70px;
  margin: 1px auto 40px;
}

/* ---------- */


/* Instagram */

section.instagram {
  padding-top: 16%;
  padding-bottom: 16%;
  position: relative;
  background: linear-gradient(180deg, #f0ebf9 0%, #ebe5f5 100%);
}

section.instagram .container {
  position: relative;
  z-index: 999;
}


section.instagram:before {
  background: url('../images/lineas03.svg') bottom center no-repeat;
  position: absolute;
  content: '';
  /* background-size: contain !important; */
  background-repeat: no-repeat;
  background-position: top center;
  height: 100%;
  width: 100%;
  top: -1px;
}


section.instagram .hashtag {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-bold);
  color: var(--color-3);
  text-transform: lowercase;
  font-size: 55px;
  margin-bottom: 40px;
  display: inline-block;
}

section.instagram .anim-instagram {
  width: 60px;
  margin: 0 auto 15px;
}

section.instagram:after {
  background: url('../images/lineas04.svg') bottom center no-repeat, linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(240, 235, 250, 0.3) 85%, rgba(235, 230, 245, 0.6) 95%, rgba(235, 230, 245, 1) 100%);
  position: absolute;
  content: '';
  /* background-size: contain !important; */
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 100%;
  width: 100%;
  bottom: -2px;
  z-index: 99;
}



/* ---------- */



/* Footer */

section.footer {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f9f5ff 50%, #f0ebf9 100%);
  padding-bottom: 10%;
  padding-top: 10%;
  margin-top: -2px;
}


section.footer h4 {
  font-family: var(--fuente-1);
  font-weight: var(--weight-font-regular);
  color: var(--color-1);
  width: 100%;
  text-align: center;
  font-size: 85px;
}

section.footer h4 span {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  color: var(--color-5);
  background-color: var(--color-2);
  display: inline-block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 28px;
}

section.footer .col-acciones-footer ul {
  text-transform: uppercase;
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  text-align: left;
}


section.footer .col-acciones-footer ul li {
  margin-bottom: 20px;
  text-align: right;
}


section.footer .col-acciones-footer ul a {
  color: var(--color-3);

  -webkit-transition: all 0.5s 0s ease;
  -moz-transition: all 0.5s 0s ease;
  -o-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}


section.footer .col-acciones-footer ul a:hover {
  color: var(--color-1);
  text-decoration: none;
}


section.footer .addeventatc span.nameBtn {

  color: var(--color-3) !important;
  font-weight: var(--weight-font-regular);

  -webkit-transition: all 0.5s 0s ease;
  -moz-transition: all 0.5s 0s ease;
  -o-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

section.footer .addeventatc span.nameBtn:hover {
  color: var(--color-1) !important;
}


/* ---------- */


/* Musica de fondo */

#player-musica-fondo {
  position: absolute;
  left: -99999px;
}

#controlador-musica {
  position: fixed;
  z-index: 999;
  top: 10px;
  right: 0;
}

.music-anim-icon {
  width: 100px;
  height: 100px;
  cursor: pointer;
}

/* ---------- */


/* Footer */

footer {
  background-color: var(--color-3);
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  font-weight: 400;
  padding: 20px 0;
}



/* ---------- */


/* Firma */

footer p {
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-top: 1rem;
  color: var(--color-5);
}

footer p a {
  color: var(--color-5);
  display: inline-flex;

  -webkit-transition: all 0.5s 0s ease;
  -moz-transition: all 0.5s 0s ease;
  -o-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

footer p a:hover {
  text-decoration: underline;
  color: var(--color-5)
}

footer img.firma-footer {
  width: 65px;
  height: auto;
}


/* ---------- */



/* Modal Musica */

#modalMusica .modal-content {
  background: transparent;
  border: none;
}

#modalMusica .modal-content p {
  font-size: 55px;
  font-weight: var(--weight-font-bold);
  line-height: 50px;
  font-family: var(--fuente-2);
  color: var(--color-5);
  display: inline-block;
  width: 100%;
  position: relative;
  padding-bottom: 20px;
}

#modalMusica .modal-content p::after {
  content: '';
  position: absolute;
  background-color: var(--color-4);
  width: 40%;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;

}

#modalMusica .modal-content p span {
  font-size: 20px;
  font-weight: var(--weight-font-regular);
}

#modalMusica .modal-content p+span {
  font-size: 20px;
  color: var(--color-5);
  font-weight: 300;
  margin-top: 15px;
  margin-bottom: 25px;
  display: inline-block;
  width: 100%;
}

#modalMusica .boton {
  font-size: 15px;
  font-weight: var(--weight-font-regular);
  display: inline-block;
  border: 1px solid var(--color-1);
}

#modalMusica .boton:hover {
  border: 1px solid var(--color-4);
}


/* Modales Card */

.modal-dialog {
  font-family: var(--fuente-2);
}

.modal-dialog .modal-title {
  font-weight: 700;
  color: var(--color-2);
}

.modal-dialog form label {
  color: var(--color-2);
}

.modal-dialog form input,
.modal-dialog form textarea {
  border: none;
  border-bottom: 1px solid var(--color-2);
}

.modal-dialog .modal-icon {
  width: 125px;
  height: 125px;
  margin: 0 auto;
  padding: 30px;
  background-color: var(--color-5);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.40);
  -moz-box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.40);
  box-shadow: 0px 0px 15px -1px rgba(0, 0, 0, 0.40);
  position: relative;
  top: -75px;
}

.modal-card .modal-content {
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);
  color: var(--color-2);
  cursor: pointer;
  background-color: #fff;
  text-align: center;
  border: none;
  padding: 10px 10px 30px 10px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  -webkit-box-shadow: 0px 0px 15px 0px var(--color-2);
  box-shadow: 0px 0px 15px 0px var(--color-2);

}

.modal-card input,
.modal-card textarea {
  text-align: center;
  background: none;
  resize: none;
  outline: none;
  padding-bottom: 5px;
}

.modal-card input:focus,
.modal-card textarea:focus {
  border: none;
  box-shadow: none;
}

.modal-card .modal-header {
  border: none;
  display: inline-block;
  padding: 0;
}


.modal-card .modal-header .modal-title {
  font-size: 25px;
  line-height: 28px;
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-bold);
  color: var(--color-1);
}

.modal-card .modal-footer {
  border: none;
  display: inline-block;
  padding: 0;
}

.modal-card .form-group .form-check {
  float: left;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 18px;
}

.modal-card .form-group .form-check label {
  padding-left: 5px;
}

.modal-card .boton {
  outline: none;
  border: none;
}

.modal-card .img-top-modal {
  position: relative;
  height: 65px;
}

.modal-card .img-top-modal img {
  width: 100%;
}

#modalSugerirCancion.modal-card .img-top-modal .modal-icon img {
  max-height: 60px;
}

#modalVestuario.modal-card .img-top-modal .modal-icon img {
  margin-top: 15px;
}

#modalTips.modal-card .img-top-modal .modal-icon img {
  max-height: 60px;
}

#modalRegalos.modal-card .img-top-modal .modal-icon img {
  max-height: 60px;
}


.modal-card .close {
  position: absolute;
  top: -15px;
  right: 0;
  color: var(--color-5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--color-3);
  opacity: 1;
  outline: none;
  font-size: 34px;
  font-weight: normal;
  font-family: var(--fuente-2);
  font-weight: var(--weight-font-regular);


  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.50);
  -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.50);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.50);

  -webkit-transition: all 0.5s 0s ease;
  -moz-transition: all 0.5s 0s ease;
  -o-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;

}

.modal-card .close:hover {
  background-color: var(--color-1);
  color: var(--color-5);
}

.modal-card .close span {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.modal-card .form-control {
  font-size: 15px;
}

.modal-card .img-top-modal .adorno-1 {
  position: absolute;
  width: 70%;
  max-width: 400px;
  height: auto;
  top: -140px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: -1;
}

#modalMapa.modal-card .img-top-modal {
  height: 30px;
}

#googleMap {
  height: 300px;
  width: 100%;
}


/* Modales de mensaje exito */

.modal-body.fix-height {
  height: 70%;
}

.modal-body.fix-height .msj-content {
  height: 100%;
}

.modal .msj-content {
  width: 100%;
}

.modal .msj-content h5 {
  text-align: center;
  width: 100%;
  display: inline-block;
  font-weight: 700;
  color: var(--color-1)
}

.modal .msj-content p {
  text-align: center;
  width: 100%;
  display: inline-block;
}


/* ---------- */



/* Banner para redirigir a la web */
.banner-contacto-web {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: var(--color-3);
  z-index: 9999;
  padding: 0;
  margin: 0;
}

.banner-contacto-web p {
  width: 100%;
  text-align: center;
  color: var(--color-5);
  margin: 0;
  padding: 8px 8px;
  font-family: var(--fuente-2);
  font-size: 13px;
}

.banner-contacto-web a {
  color: var(--color-5);
}

.banner-contacto-web a:first-child {
  background: var(--color-1);
  color: var(--color-5);
  border-radius: 10px;
  padding: 3px 10px;
}

.banner-contacto-web a:first-child:hover {
  text-decoration: none;
  color: var(--color-1);
  background-color: var(--color-5);
}

/* Contador con OSITO2.svg completo */
.contador-portada {
  position: relative;
  z-index: 12000;
}

.contador-con-osito {
  position: relative;
  width: 280px;
  height: 280px;
  animation: suavePequeñoFloat 4s ease-in-out infinite;
}

@keyframes suavePequeñoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.osito-globo-fondo {
  width: 100%;
  height: 100%;
  position: relative;
}

.osito-globo-fondo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(155, 123, 200, 0.4));
}

.contador-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(248, 245, 255, 0.85) 0%, rgba(240, 235, 250, 0.75) 80%);
  border-radius: 50%;
  backdrop-filter: blur(6px);
}

.contador-overlay .falta {
  color: #9B7BC8;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}

.contador-overlay .reloj {
  display: flex;
  gap: 10px;
}

.contador-overlay .reloj-col {
  text-align: center;
  padding: 0 6px;
  border-right: 1px solid rgba(155, 123, 200, 0.4);
}

.contador-overlay .reloj-col.no-border {
  border-right: none;
}

.contador-overlay .reloj-col .number {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #6B4E9B;
  margin-bottom: 3px;
  line-height: 1;
}

.contador-overlay .reloj-col .time {
  font-size: 9px;
  color: #9B7BC8;
  text-transform: uppercase;
  font-weight: 500;
}


/* Card Pergamino */
.pergamino-card-wrapper {
  position: relative;
  z-index: 100;
  margin: 40px auto;
  max-width: 800px;
}

.pergamino-card {
  background: linear-gradient(180deg,
      #f0ebf9 0%,
      #f8f5ff 10%,
      #f8f5ff 90%,
      #f0ebf9 100%);
  position: relative;
  padding: 50px 40px;
  border-radius: 5px;
  box-shadow:
    0 8px 20px rgba(107, 78, 155, 0.15),
    inset 0 -2px 5px rgba(155, 123, 200, 0.1),
    inset 0 2px 5px rgba(155, 123, 200, 0.1);
  overflow: hidden;
}

.pergamino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: repeating-linear-gradient(90deg,
      transparent,
      transparent 20px,
      rgba(184, 156, 126, 0.1) 20px,
      rgba(184, 156, 126, 0.1) 21px);
  border-top: 3px solid #9B7BC8;
}

.pergamino-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: repeating-linear-gradient(90deg,
      transparent,
      transparent 20px,
      rgba(184, 156, 126, 0.1) 20px,
      rgba(184, 156, 126, 0.1) 21px);
  border-bottom: 3px solid #9B7BC8;
}

.pergamino-content {
  position: relative;
  z-index: 1;
  font-family: var(--fuente-2);
  color: var(--color-1);
  padding: 20px;
}

.pergamino-message {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  text-align: center;
  color: #6B4E9B;
}

.pergamino-message.highlight {
  font-size: 20px;
  margin-top: 30px;
  color: #9B7BC8;
  font-style: normal;
}

.pergamino-message strong {
  color: #6B4E9B;
  font-weight: 700;
}

/* Sistema de Votación Género */
.votacion-genero {
  margin-top: 40px;
  padding: 30px 20px;
  background: rgb(252, 251, 248);
  border-radius: 15px;
}

.votacion-titulo {
  font-family: var(--fuente-1);
  color: #6B4E9B;
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
}

.votacion-contenedor {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 20px;
}

.voto-opcion {
  flex: 1;
  max-width: 250px;
  text-align: center;
}

.btn-voto {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  font-family: var(--fuente-2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-voto:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.voto-nino .btn-voto {
  background: linear-gradient(135deg, #87CEEB 0%, #6BB6D6 100%);
  color: white;
}

.voto-nino .btn-voto:hover:not(:disabled) {
  background: linear-gradient(135deg, #6BB6D6 0%, #5AA5C5 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(135, 206, 235, 0.4);
}

.voto-nina .btn-voto {
  background: linear-gradient(135deg, #FFB6C1 0%, #FFA0B4 100%);
  color: white;
}

.voto-nina .btn-voto:hover:not(:disabled) {
  background: linear-gradient(135deg, #FFA0B4 0%, #FF8FA3 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 182, 193, 0.4);
}

.voto-emoji {
  display: block;
  font-size: 48px;
  margin-bottom: 10px;
}

.voto-texto {
  display: block;
  font-size: 20px;
  font-weight: 600;
}

.voto-barra {
  position: relative;
  height: 30px;
  background: #f0f0f0;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}

.voto-progreso {
  height: 100%;
  width: 0%;
  transition: width 0.5s ease;
  border-radius: 15px;
  position: relative;
}

.voto-nino .voto-progreso {
  background: linear-gradient(90deg, #87CEEB 0%, #6BB6D6 100%);
}

.voto-nina .voto-progreso {
  background: linear-gradient(90deg, #FFB6C1 0%, #FFA0B4 100%);
}

.voto-porcentaje {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6B4E9B;
  font-weight: 600;
  font-size: 14px;
}

.voto-contador {
  display: block;
  font-size: 14px;
  color: #9B7BC8;
  font-family: var(--fuente-2);
}

.votacion-mensaje {
  text-align: center;
  color: #9B7BC8;
  font-style: italic;
  margin-top: 20px;
  font-size: 16px;
}

/* Responsive para móvil */
@media (max-width: 768px) {
  section.portada {
    padding-top: 40px;
    padding-bottom: 5px;
    min-height: auto;
  }

  section.portada::after {
    height: 120px;
    background: linear-gradient(to bottom,
        transparent 0%,
        transparent 20%,
        rgba(252, 251, 248, 0.5) 40%,
        rgba(252, 251, 248, 0.8) 60%,
        rgba(252, 251, 248, 0.95) 80%,
        rgb(252, 251, 248) 100%);
    z-index: 10;
  }

  section.portada .content-portada {
    min-height: 50vh !important;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
    padding-top: 60px;
  }

  .contador-portada {
    margin-top: 15px !important;
    margin-bottom: 5px !important;
  }

  section.portada .container .row:first-child {
    height: auto;
    max-height: none;
  }

  section.portada .box-frase-portada {
    margin-top: 15px;
    margin-bottom: 10px;
  }

  section.portada .box-frase-portada p {
    font-size: 18px;
  }

  section.portada .content-portada h1 {
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 10px;
  }

  section.portada .content-portada span.fecha {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .pergamino-card-wrapper {
    margin: 15px auto;
    padding: 15px 10px;
  }

  .pergamino-card {
    padding: 25px 20px;
  }

  .pergamino-content {
    padding: 10px;
  }

  .pergamino-message {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .pergamino-message.highlight {
    font-size: 16px;
    margin-top: 20px;
  }

  .votacion-genero {
    padding: 20px 15px;
    margin-top: 25px;
  }

  .votacion-titulo {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .votacion-contenedor {
    flex-direction: column;
    gap: 15px;
  }

  .voto-opcion {
    max-width: 100%;
  }

  .btn-voto {
    padding: 12px;
  }

  .voto-emoji {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .voto-texto {
    font-size: 16px;
  }

  .voto-barra {
    height: 25px;
  }

  .votacion-mensaje {
    font-size: 14px;
    margin-top: 15px;
  }
}

/* Filtros para cambiar colores de animaciones JSON de verde a beige */
.anim-regalos,
.anim-musica,
.anim-vestuario,
.anim-tips,
.anim-fiesta,
.anim-galeria,
.anim-ceremonia {
  filter: hue-rotate(30deg) saturate(0.8) brightness(1.1);
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .contador-con-osito {
    width: 260px;
    height: 310px;
  }

  .contador-overlay {
    width: 190px;
    height: 180px;
    top: 3%;
  }

  .contador-overlay .reloj {
    gap: 10px;
  }

  .contador-overlay .reloj-col {
    padding: 0 8px;
  }

  .contador-overlay .reloj-col .number {
    font-size: 20px;
  }

  .contador-overlay .reloj-col .time {
    font-size: 10px;
  }

  .contador-overlay .falta {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .contador-overlay .corazon-falta {
    width: 22px;
    height: 22px;
  }
}

/* ==================== FIX CONTADOR OSITO ==================== */
.contador-con-osito {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
  max-width: 100%;
}

.osito-globo-fondo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.osito-globo-fondo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Evita que se deforme */
  display: block;
}

.contador-overlay {
  position: absolute;
  top: 45%;
  /* Subimos un poco mas el contador */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  /* Sin fondo */
  backdrop-filter: none;
  /* Sin blur */
}

.contador-overlay .falta {
  font-family: var(--fuente-2);
  font-size: 18px;
  color: #6B4E9B;
  /* Color Purple */
  margin-bottom: 5px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contador-overlay .reloj {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 5px 0;
}

.contador-overlay .reloj-col {
  flex: 1;
  border-right: 1px solid #d4af37;
  /* Gold separator - kept as Gold matches theme */
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contador-overlay .reloj-col:last-child {
  border-right: none;
}

.contador-overlay .number {
  font-family: var(--fuente-2);
  font-size: 24px;
  font-weight: 700;
  color: #6B4E9B;
  /* Purple */
  line-height: 1;
}

.contador-overlay .time {
  font-family: var(--fuente-2);
  font-size: 10px;
  color: #6B4E9B;
  /* Purple */
  text-transform: uppercase;
}

.contador-overlay .corazon-falta {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%236B4E9B' d='M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  animation: latido 1.5s infinite;
}

@keyframes latido {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .contador-con-osito {
    width: 280px;
    height: 280px;
  }

  .contador-overlay {
    top: 58%;
    /* Keep aligned */
  }

  .contador-overlay .number {
    font-size: 18px;
  }

  .contador-overlay .time {
    font-size: 9px;
  }
}