/* Variables */

:root {
  --color-1: #76E1D3;
  --color-2: #B4E9E2;
  --color-3: #FFD54F;
  --color-4: #232323;
  --color-5: #F2F2F2;

  --color-6: #8673a1;
  --color-7: #29AA91;

  --color-8: #F7B719;
  --color-9: #E8A000;

  --color-bg-transparent: rgba(41, 170, 145, 0.95);

}

/* font-family: 'Poppins', sans-serif; */

/* Generales */

* {
  font-family: 'Poppins', sans-serif;
}


::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #B3B3B3 !important;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #B3B3B3 !important;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #B3B3B3 !important;
}


ul {
  list-style: none;
  margin: 0;
  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;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

.btn-transparent-white {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: #fff;
  border: 1px solid #eee;
  background-color: transparent;
  padding: 10px 25px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

.title {
  font-size: 45px;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}

p.sub-title {
  font-size: 18px;
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

p {
  font-weight: 300;
}

.boton {
  font-weight: 700;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  padding: 20px 30px;
  font-size: 18px;
  border: 2px solid transparent;
  display: inline-block;
}

.boton-primario {
  background-color: var(--color-6);
  color: #fff;
}


.boton-primario:hover {
  background-color: var(--color-7);
  color: #fff;
}


.boton-secundario {
  background-color: var(--color-8);
  color: #fff;
}


.boton-secundario:hover {
  background-color: var(--color-9);
  color: #fff;
}

.modal {
  z-index: 9999;
  background-color: var(--color-bg-transparent);
}

.modal-transparent .modal-content {
  background: transparent;
  border: none;
}


.modal-transparent .close {
  color: var(--color-8);
  text-shadow: none;
  opacity: 1;
  position: absolute;
  right: 0;
  padding: 0;
}

.modal-transparent .modal-header,
.modal-transparent .modal-footer {
  border: none;
  padding: 0;
}

.modal-transparent .modal-header,
.modal-transparent .modal-body {
  padding: 5px 0 0 0;
}


.modal-transparent .modal-header,
.modal-transparent .modal-body p.sub-title-form {
  text-align: center;
  color: #fff;
  font-size: 14px;
}

.modal-transparent .modal-header h3 {
  color: #F2F2F2;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}

.modal-transparent .boton {
  padding: 15px 50px;
}

.modal form input,
.modal form textarea,
.modal form select {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  padding: 10px 15px;
  color: #000;
  border: 3px solid transparent;
}

.modal form input,
.modal form select {
  height: calc(1.5em + .75rem + 16px);
}

#modal-form-solicitar-invitacion select {
  color: var(--color-7);
}

.modal form input:focus,
.modal form textarea:focus,
.modal form select:focus {
  border: 3px solid var(--color-8);
}

textarea {
  resize: none;
  overflow: auto;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  /*background-image: url("../images/select-arrow.svg");*/
  background-repeat: no-repeat;
  background-position-x: 97%;
  background-position-y: 15px;
  background-size: 23px;
}

.error-form {
  width: 100%;
  text-align: center;
  color: var(--color-9);
}

.msj-contacto {
  color: #fff;
  font-size: 25px;
  width: 100%;
  text-align: center;
}

.msj-error {
  color: red;
  font-size: 15px;
  width: 100%;
  text-align: center;
}

/* Cambio de idiomas / paises */

.flags-laguages {
  padding: 30px;
}

.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;
  opacity: 0.75;
  border: 2px solid #fff;
}

.flags-laguages li a:hover {
  opacity: 1;
}


/* Scroll */

::-webkit-scrollbar {
  width: 13px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--color-2);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-3);
}


/* Loader */

.preloader-area {
  position: fixed;
  background: var(--color-6);
  z-index: 11000;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.preloader-area .loader {
  width: 150px;
}

.preloader-area .loader img {
  width: 100%;
  margin-bottom: 5px;
}

/* Menu */

.outer-menu {
  position: fixed;
  z-index: 1;
  top: 40px;
  right: 125px;
  -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;
}

.outer-menu.fixed {
  top: 40px;
  right: 10px;
}

.outer-menu .menu-title{
position: relative;
  z-index: 3;
  display: inline-block;
  top: -30px;
  text-align: center;
  width: 60px;
  font-size: 15px;
  background: rgba(0,0,0,0.65);
  border-radius: 3px;
}

.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}

.outer-menu .checkbox-toggle:checked+.hamburger>div {
  transform: rotate(135deg);
}

.outer-menu .checkbox-toggle:checked+.hamburger>div:before,
.outer-menu .checkbox-toggle:checked+.hamburger>div:after {
  top: 0;
  transform: rotate(90deg);
}

.outer-menu .checkbox-toggle:checked+.hamburger>div:after {
  opacity: 0;
}

.outer-menu .checkbox-toggle:checked~.menu {
  pointer-events: auto;
  visibility: visible;
}

.outer-menu .checkbox-toggle:checked~.menu>div {
  transform: scale(1);
  transition-duration: .75s;
}

.outer-menu .checkbox-toggle:checked~.menu>div>div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}

.outer-menu .checkbox-toggle:checked:hover+.hamburger>div {
  transform: rotate(225deg);
}

.outer-menu .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: .5em 1em;
  background-color: var(--color-8);
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 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;
}

.outer-menu:hover .hamburger {
  /* -webkit-box-shadow: 0px 0px 15px 5px var(--color-3);  */
  /* box-shadow: 0px 0px 15px 5px var(--color-3); */
  background-color: var(--color-9);
}

.outer-menu input[type=checkbox]:checked+.hamburger {
  background-color: var(--color-8);
}

.outer-menu input[type=checkbox]:checked:hover+.hamburger {
  background-color: var(--color-9);
}

.outer-menu .hamburger>div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #FEFEFE;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .hamburger>div:before,
.outer-menu .hamburger>div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}

.outer-menu .hamburger>div:after {
  top: 8px;
}

.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu>div {
  width: 200vw;
  height: 200vw;
  color: #FEFEFE;
  background: var(--color-bg-transparent);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu>div>div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu>div>div>ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}

.outer-menu .menu>div>div>ul>li {
  padding: 0;
  margin: 1em;
  font-size: 24px;
  display: block;
}

.outer-menu .menu>div>div>ul>li>a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.4s ease;
  font-weight: 700;
  text-transform: capitalize;
}

.outer-menu .menu>div>div>ul>li>a:hover {
  text-decoration: none;
  color: var(--color-3);
}

.outer-menu .menu>div>div>ul>li>a:hover:after {
  width: 100%;
}

.outer-menu .menu>div>div>ul>li>a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-3);
  transition: width 0.4s ease;
}


.outer-menu .menu a {
  color: #fff;
  text-transform: uppercase;
  font-size: 35px;
}


.nav-menu {
  width: 100%;
  height: auto;
  position: relative;
  min-height: 85px;
  -webkit-transition: all ease-in .3s;
  -moz-transition: all ease-in .3s;
  -o-transition: all ease-in .3s;
  -ms-transition: all ease-in .3s;
  transition: all ease-in .3s;
}

.nav-menu.fixed {
  background-color: var(--color-negro);
  position: fixed;
  z-index: 999;
}

/* Header */

header {
  position: absolute;
  top: 0;
  color: #fff;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
}

header .container {
  padding-top: 40px;
}

header .logo {
  height: auto;
  text-align: center;
  padding-right: 35px;
}

header .logo a {
  width: 165px;
  height: auto;
  display: inline-block;
}

header .logo a img {
  width: 170%;
    height: auto;
    margin-top: -25px;
    /* filter: drop-shadow(2px 2px 4px #d4d4d4c7); */
    border-radius: 8px;
    padding: 4px;
    background: rgb(123 123 123 / 22%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


header .menu ul li:last-child a {
  font-size: 14px;
  font-weight: 300
}


header .menu ul li:last-child img {
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}


.outer-menu .menu>div>div>ul>li:last-child>a {
  font-weight: 300;
}



/* Footer */

footer {
  padding: 40px 0 50px 0;
  background-color: var(--color-5);
}

footer p.copy {
  font-size: 14px;
}

footer img.logo-footer {
  width: 60%;
  height: auto;
}

footer .slogan {
  margin-top: 15px;
  display: inline-block;
  color: #555;
  font-size: 15px;
}
.txt14px{
  text-decoration: underline;
  font-size: 14px;
}
.logoprincipal{
  width: 8%;
  text-align: center;
  margin-bottom: -20px;
  margin-top: -35px;
}
.pwadnfooter{
  margin-top: 10px;
  position: absolute;
  background-color: #d8d8d8;
  width: 100%;
  padding: 10px 10px 10px 10px;
}
.fotterimgpagos{
  width: 20%;
  margin-bottom: -45px;
  margin-top: -45px;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }

  80%,
  100% {
    opacity: 0;
  }
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}


.whatsapp-fixed {
  position: fixed;
  bottom: 70px;
  right: 105px;
  padding: 5px 9px;
  border-radius: 50px;
  z-index: 99;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 70px;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);

}

.whatsapp-fixed-right {
  right: -20px;
  bottom: 10px;
}

.whatsapp-fixed:before {
  content: '';
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  margin-left: -30px;
  margin-top: -25px;
  border-radius: 50%;
  background-color: #02AF00;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.whatsapp-fixed:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, .3);
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
  background: url("../images/wp-icon.svg") center center no-repeat #02AF00;
  background-size: 60%;
}

/* Modelos */

section.modelos {
  background-color: #fff;
  padding: 70px 0 60px;
  position: relative;
}

section.modelos .modelos-list {
  padding-top: 50px;
}


section.modelos .modelo {
  text-align: center;
  margin-bottom: 50px;
}

section.modelos .modelo img {
  width: 85%;
  height: auto;
}

section.modelos .modelo h4 {
  font-weight: 700;
  width: 100%;
  display: inline-block;
  margin-bottom: 25px;
  font-size: 23px;
  color: var(--color-1);
}


section.modelos .modelo .botones-modelo {
  width: 100%;
  padding: 0 10px;
}


section.modelos .modelo .botones-modelo a {
  width: 100%;
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 300;
  padding: 8px 20px;
}

section.modelos .modelo .botones-modelo a.boton-primario {
  padding: 0px 20px;
  color: var(--color-7);
  background: none;
  margin-top: 10px;
}

section.modelos .modelo .botones-modelo a.boton-primario:hover {
  text-decoration: underline;
}

/* Footer */

footer .input-custom-news a.boton-submit:hover {
  -webkit-box-shadow: 0px 0px 15px 8px var(--color-1);
  box-shadow: 0px 0px 15px 8px var(--color-1);
}

footer .input-custom-news p {
  font-weight: 700;
  font-size: 23px;
  padding-left: 25px;
}

footer .links-contactos {
  height: 100%
}

footer .links-contactos li {
  border-right: 1px solid var(--color-4);
  padding-right: 30px;
  padding-left: 20px;
  text-align: center;
  height: 100%;
}

footer .links-contactos li a {
  height: 100%;
  color: inherit;
}

footer .links-contactos li a:hover {
  color: var(--color-7)
}

footer .links-contactos p {
  display: inline-block;
  width: 100%;
  margin: 0;
}

footer .links-contactos img {
  max-width: 50px;
  max-height: 50px;
}

footer .links-contactos img.facebook-icon-footer {
  max-width: 25px;
}

footer .links-contactos img.instagram-icon-footer {
  max-width: 45px;
}

footer .links-contactos li:nth-child(2) img {
  min-width: 25px;
}

footer .sub-footer {
  padding-top: 80px;
}

footer .current-flag+a {
  font-size: 14px
}


/* Modal Promo */
#modal-promo .modal-content img {
  width: 100%;
  max-width: 335px;
  height: auto
}

#modal-promo .close-modal-promo {
  position: absolute;
  top: -35px;
  right: 50px;
  color: #fff;
  font-size: 30px;
}

#modal-promo .modal-content .boton{
  width: 80%;
  display: inline-block;
  margin: 0 auto;
  margin-top: 10px;
  padding: 8px 20px;
}


#footer-promo {
  position: fixed;
  width: 235px;
  left: 0;
  bottom: 0;
  background: #DF2C42;
  height: 40px;
  text-align: center;
  z-index: 999;

  -webkit-border-top-left-radius: 50px;
  -webkit-border-top-right-radius: 50px;
  -moz-border-radius-topleft: 50px;
  -moz-border-radius-topright: 50px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

#footer-promo a {
  color: #fff;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 45px
}

#footer-promo a:hover {
  text-decoration: underline;
}

#footer-promo img {
  position: absolute;
  top: -73px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 185px;
  height: auto;
}

/* Banner call to action */

.banner-call-to-action{
  padding-top: 30px;
}

.banner-call-to-action:before {
  content: "";
  width: 50px;
  height:2px;
  background-color: var(--color-3);
  margin-bottom: 15px;
}

.banner-call-to-action p{
  width: 50%;
  display: inline-block;
  text-align: center;
}

.banner-call-to-action .dropdown-menu.show {
  background-color: transparent;
  border: none;
  text-align: center;
  z-index: 999;
  width: 100%;
}


.banner-call-to-action .boton-primario {
  padding: 15px 40px;
}

.banner-call-to-action .dropdown-menu.show .dropdown-item {
  color: #fff;
  background-color: var(--color-6);
  margin-bottom: 5px;
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  width: auto;
  padding: 5px 30px;
}

.banner-call-to-action .dropdown-menu.show .dropdown-item:hover {
  background-color: var(--color-7);
}
.footer-imgcalidad{
  width: 15%;
}

/* popup */
.custom-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}

.custom-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  width: 500px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  z-index: 9999;
  animation: popupFadeIn 0.3s ease-out;
}

.custom-popup-content {
  position: relative;
  padding: 20px;
  text-align: center;
}

.custom-popup-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.custom-popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background-color: #ff4444;
  border: 2px solid #fff;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  line-height: 25px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Estilos nuevos para el countdown */
.countdown-container {
  background: linear-gradient(145deg, #f6f6f6, #e9e9e9);
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.1);
}

.countdown-title {
  color: #333;
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: bold;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}

.countdown-item {
  padding: 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.countdown-number {
  font-size: 1.8em;
  font-weight: bold;
  color: #2c3e50;
  margin: 0;
  line-height: 1;
}

.countdown-label {
  font-size: 0.8em;
  color: #7f8c8d;
  margin-top: 5px;
  margin-bottom: 5px;
}

@keyframes popupFadeIn {
  from {
      opacity: 0;
      transform: translate(-50%, -48%);
  }
  to {
      opacity: 1;
      transform: translate(-50%, -50%);
  }
}

@media (max-width: 768px) {
  .custom-popup {
      width: 95%;
  }

  .countdown-number {
      font-size: 1.5em;
  }

  .countdown-label {
      font-size: 0.7em;
  }
}
/* Fin popup y cuenta regresiva */

/* Estilos nuevos para el botón flotante */
.floating-button {
  position: fixed;
  right: -60px; /* Inicialmente oculto */
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(94deg, #9be2d3, #b3e0ff);
  border: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  z-index: 9997;
  transition: all 0.3s ease-in-out;
  display: none; /* Inicialmente no se muestra */
}

.floating-button.visible {
  right: 0;
  animation: buttonSlideIn 0.5s ease-out;
}

.floating-button:hover {
  right: 5px;
  background: linear-gradient(360deg, #34dbb9, #1082cd);
}

.floating-button::before {
  content: '🎁';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(360deg);
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.floating-button:hover::before {
  transform: translate(-50%, -50%) rotate(328deg) scale(1.2);
}

/* Animación de entrada del botón */
@keyframes buttonSlideIn {
  from {
      right: -60px;
  }
  to {
      right: 0;
  }
}

/* Pulso suave para llamar la atención */
@keyframes pulse {
  0% {
      transform: translateY(-50%) scale(1);
  }
  50% {
      transform: translateY(-50%) scale(1.05);
  }
  100% {
      transform: translateY(-50%) scale(1);
  }
}

.floating-button.pulse {
  animation: pulse 2s infinite;
}

.float-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 10px;
  background: linear-gradient(358deg, #b2ffb8, #77dd77);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

.whatsapp-icon {
  width: 55px;
  height: 55px;
  filter: drop-shadow(1px 4px 3px rgba(0, 0, 0, 0.647));
}

/* Animación de entrada */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
/* Nueva animación de salto */
@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-15px);
  }
}
.float-whatsapp {
  animation: fadeIn 0.5s ease, bounce 1s ease infinite 2s;
  animation-play-state: running, paused; /* Inicialmente el bounce está pausado */
}
/* Clase para activar la animación de salto */
.bounce-animation {
  animation-play-state: running, running !important;
}
/* Botón hamburguesa */
.hamburger-button {
  position: fixed;
  top: 30px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(119deg, #ddc2fb, #f1e5f4);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 99999;
  padding: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #777777;
}
.hamburger-button span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}
.hamburger-button.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger-button.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* Overlay del menú */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* Panel del menú */
.menu-panel {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: rgb(231 231 231 / 45%);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  color: #777777;
}
.menu-panel.active {
  right: 0;
}
/* Header del menú */
.menu-header {
  padding: 40px 0 40px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-header h2 {
  margin: 0;
  font-size: 1.5rem;
}
.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0 5px;
}
/* Navegación */
.menu-nav {
  padding: 0 0 20px 0;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-item {
  border-bottom: 1px solid #eee;
}
.menu-title {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.menu-title:hover {
  background: #f5f5f5;
}
.arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.menu-item.active .arrow {
  transform: rotate(180deg);
}
/* Submenú */
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.menu-item.active .submenu {
  max-height: 500px;
}
.submenu li a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: #666;
  text-decoration: none;
  transition: background 0.3s ease;
}
.submenu li a:hover {
  background: #f0f0f0;
  color: #333;
}
/* FIN MENÚ */
.swiper {
  width: 100%;
}
.swiper-slide {
background-position: center;
background-size: cover;
width: 180px;
display: grid;
align-content: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
}
.swiper-3d .swiper-slide-shadow-left {
border-radius:25px
}
.swiper-3d .swiper-slide-shadow-right {
  border-radius:25px
}
.texttitslider{
  font-weight: 700;
  width: 100%;
  display: inline-block;
  margin-bottom: 5px;
  font-size: 23px;
  text-align: center;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
font-size: 20px;
}
.swiper-button-next:after, .swiper-button-prev:after {
font-size: 20px !important;
}
.swiper-button-next, .swiper-button-prev {
  color: #ffffff !important;
  border-radius: 20px;
  width: 32px !important;
  height: 32px !important;
  background-color: rgba(17, 17, 17, 0.5);
  fill: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px 0px;
}
.review {
  text-align: center;
  font-size: 18px;
  background: #f2f2f2;
  height: max-content;
  padding: 24px;
  border-radius: 8px;
}
.review img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}
.swiper-pagination-bullet-active {
  color: #fff;
  background: #197bff;
}
section.modelos {
    padding: 10px 0 30px;
}

.neumorph-card {
            border-radius: 20px;
            padding: 35px;
            margin: 15px 0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .card-background {
            position: absolute;
            top: -60px;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        .card-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            
        }
        .card-content {
            position: relative;
            z-index: 3;
            background: rgb(255 255 255 / 20%);
            padding: 20px;
            border-radius: 15px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }
        .wedding-card {
            background: linear-gradient(145deg, rgba(255, 248, 232, 0.8), rgb(255 201 88 / 80%));
            box-shadow:20px 20px 60px rgb(212 184 117 / 21%), -20px -20px 60px rgba(255, 249, 229, 0.5);
        }
        .wedding-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(218, 165, 32, 0) 0%, rgb(218 165 32 / 24%) 100%);
            z-index: 2;
        }
        .xv-card {
            background: linear-gradient(145deg, rgba(243,229,255,0.8), rgba(232,208,255,0.8));
            box-shadow: 20px 20px 60px rgb(184 146 214 / 27%), -20px -20px 60px rgb(249 240 255 / 42%);
        }
        .xv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgb(147 112 219 / 0%) 45%, rgb(147 112 219 / 44%) 100%);
            z-index: 2;
        }
        .wedding-card .card-title {
            color: #b8860b;
        }
        .wedding-card .card-text {
            color: #ebebeb;
        }
        .xv-card .card-title {
            color: #663399;
        }
        .xv-card .card-text {
            color: #ebebeb;
        }
        .cumple-card {
          background: linear-gradient(145deg, rgb(211 243 211 / 80%));
          box-shadow: 20px 20px 60px rgb(184 146 214 / 27%), -20px -20px 60px rgb(249 240 255 / 42%);
      }
      .cumple-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(to bottom, rgb(147 112 219 / 0%) 45%, rgba(184, 240, 96, 0.44) 100%);
          z-index: 2;
      }
        .cumple-card .card-title {
          color: #a4ce59;
      }
      .cumple-card .card-text {
        color: #ebebeb;
    }
        .card-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .card-text {
            font-size: 18px;
            line-height: 1.6;
            font-weight: 400;
            margin-bottom: 0;
        }
        .imgbnnlg{
          border-radius: 20px 20px 20px 20px;
          width: 100% !important;
        }
        .fix-align-btn{
          display: flex;
          align-items: flex-end;
          flex-wrap: nowrap;
          flex-direction: row;
        }
/* Responsive */

@media only screen and (max-width: 767px) {
  section.como-funciona {
    padding-top: 80px;
}
section.como-funciona .step-number {
    padding-bottom: 0px;
}
section.portada-bodas .info-portada .box-info {
        padding-top: 20px;
    }
    .review {
        padding: 24px 50px;
    }
    .neumorph-card {
                height: 250px;
            }
            
            .card-title {
                font-size: 28px;
            }
            
            .card-text {
                font-size: 16px;
            }
  .floating-button {
    width: 40px;
    height: 40px;
}

.floating-button::before {
    font-size: 20px;
}

  .footer-imgcalidad{
    width: 60%;
  }
  .fotterimgpagos{
    width: 85%;
  }
  .logoprincipal{
    width: 35%;
  }
  .outer-menu {
    right: 15px;
  }
  header .logo a img {
    width: 120%;
  }
  .outer-menu .menu a {
    font-size: 28px
  }

  .outer-menu .menu>div {
    height: 300vh;
  }

  .title {
    font-size: 35px
  }

  p.sub-title {
    padding: 5px 10px;
    font-size: 15px;
  }

  section.modelos .modelo h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  section.modelos .modelo img {
    width: 90%;
  }

  section.modelos .modelo .botones-modelo {
    padding: 0 10px;
  }

  section.modelos .modelo .botones-modelo a {
    font-size: 15px;
    padding: 10px;
    font-weight: 100;
  }

  section.modelos .modelo {
    margin-bottom: 40px;
  }

  .outer-menu.fixed {
    top: 40px;
  }

  footer .links-contactos li {
    width: 50%;
    border: none;
    height: auto;
    padding: 20px 0;
  }

  footer .links-contactos p {
    margin-top: 10px;
  }

  footer .sub-footer {
    padding-top: 50px;
  }

  footer p.copy {
    font-size: 13px;
  }

  .modal-transparent .close {
    right: 25px;
  }

  .whatsapp-fixed {
    right: calc(50% - 60px);
    bottom: 5px;
  }

  .whatsapp-fixed-right {
    right: -20px;
  }

  footer {
    padding-top: 50px;
  }

  footer .links-contactos p {
    font-size: 18px
  }

  footer img.logo-footer {
    width: 50%;
  }

  .outer-menu .menu>div>div>ul>li {
    margin: 1em 0;
  }

  #modal-form-solicitar-invitacion select {
    background-position-y: 18px;
    background-size: 18px;
  }

  .modal-transparent .modal-header,
  .modal-transparent .modal-body p.sub-title-form {
    padding: 0 20px
  }


  /* Modal Promo */

  #modal-promo .modal-content img {
    max-width: 360px;
  }

  #modal-promo .close-modal-promo {
    right: 15px;
  }

  #footer-promo {
    width: 170px;
    height: 28px;
  }

  #footer-promo a {
    line-height: 30px;
    font-size: 13px;
  }

  #footer-promo img {
    top: -47px;
    width: 120px;
  }

  /* Banner call to action */

  .banner-call-to-action p{
    width: 90%;
  }

}

.bxloCP {
width: 100%;
line-height: 23px;
color: rgb(17, 17, 17);
font-size: 16px;
border-radius: 8px;
}
.YusbI {
position: relative;
overflow: hidden;
transition-duration: 0s !important;
text-align: left;
}
.fa-star{
color: #fcbf02;
}
.fa-facebook-square{
color: #197bff;
font-size: 30px;
margin-right: 5px;
}
.textrev{
font-size: 12px; 
color: rgba(17, 17, 17, 0.5);
display: table-footer-group;
line-height: 118%;
}
.nombrefb{
font-size: 16px; 
color: rgba(17, 17, 17, 0.5);
display: table-footer-group;
line-height: 118%;
}
.fotoperfilfb{
width: 40px;
height: 40px;
position: relative;
margin-right: 15px;
}
.fRYNlR {
position: relative;
width: 40px;
height: 40px;
box-shadow: rgba(17, 17, 17, 0.1) 0px 0px 2px inset;
border-radius: 50%;
overflow: hidden;
}
.gJOYgw {
width: inherit;
height: inherit;
transition: opacity 1s ease-out 0s;
background-color: rgb(210, 210, 210);
opacity: 1;
border-radius: 50%;
overflow: hidden;
}
.UobXQ {
display: inline-block !important;
position: static !important;
margin: 0px !important;
padding: 0px !important;
max-width: none !important;
height: inherit !important;
width: inherit !important;
visibility: visible !important;
}
.gtiuwG {
display: flex;
flex-wrap: wrap;
-webkit-box-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
align-items: center;
padding: 18px 24px 24px;
background-color: rgba(17, 17, 17, 0.05);
margin-bottom: 15px;
}
.eJbfvz {
margin-right: 24px;
}
.ittcQw {
width: 100%;
display: flex;
-webkit-box-align: center;
align-items: center;
white-space: nowrap;
color: rgb(17, 17, 17);
font-size: 20px;
}
.iwosRd {
margin-right: 8px;
}
.croLud > div {
width: inherit;
height: inherit;
}
.fEZcxc svg {
background: none;
}
.croLud img, .croLud svg {
display: block;
object-fit: contain;
height: 36px;
}
svg {
overflow: hidden;
vertical-align: middle;
}
.hiuJfK {
line-height: 1.8em;
}
.igxRbY {
display: flex;
flex-wrap: wrap;
-webkit-box-align: center;
align-items: center;
}
.jHuwCI {
display: flex;
-webkit-box-align: center;
align-items: center;
justify-content: left;
}
.grMzUy:first-child:not(:only-child) {
margin-right: 8px;
}
.grMzUy {
font-weight: 700;
line-height: normal;
font-size: 20px;
color: rgb(17, 17, 17);
word-break: normal !important;
}
.fIgssJ:not(:only-child) > :last-child {
margin-right: 12px;
}
.eyLxdR {
display: inline-flex;
flex-wrap: nowrap;
-webkit-box-align: center;
align-items: center;
}
.ga-dIYY:not(:last-of-type) {
margin-right: 0px;
}
.ga-dIYY {
position: relative;
width: 20px;
height: 20px;
}
.fXNqIK {
border-radius: 8px;
color: #000000;
}
.bXVxrw {
inset: 0px;
margin: auto;
line-height: 0;
}
.fEZcxc svg {
background: none;
}
.bXVxrw svg {
position: static !important;
width: 100% !important;
height: 100% !important;
}
.cHATJH path {
fill: rgb(252 191 2) !important;
}
.XXlQN {
overflow: hidden;
font-weight: 400;
line-height: 1.8;
align-self: flex-end;
font-size: 12px;
color: rgba(17, 17, 17, 0.5);
display: flex;

}
.cusKyc {
display: inline;
}
.botonazulreview{
border-radius: 4px; 
border-color: rgba(0, 0, 0, 0); 
color: rgb(255, 255, 255); 
font-family: inherit; 
font-weight: bold; 
font-size: 15px; 
background-color: rgb(25, 123, 255); 
border-width: 2px;
padding: 5px;
margin-top: 5px;
}


/* MENU TRANSPARENCIA*/
:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --menu-width: 350px;
}

/* Estilos del botón hamburguesa */
.hamburger-button {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: linear-gradient(119deg, #ddc2fb82, #f1e5f4cf);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  z-index: 1000;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.hamburger-button:hover {
  background: linear-gradient(119deg, #fbc2c2, #ff6d6d);
  transform: scale(1.05);
}

.hamburger-button span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgb(58 58 58 / 93%);
  transition: all 0.4s ease;
}

.hamburger-button.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-button.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Efecto burbuja */
.menu-bubble {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100vmax;
  height: 100vmax;
  background: radial-gradient(circle at center, 
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50%;
  z-index: 997;
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1),
              opacity 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  backdrop-filter: blur(8px);
}

.menu-bubble.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Panel del menú */
.menu-panel {
  position: fixed;
  top: 0;
  right: -350px;
  width: var(--menu-width);
  height: 100%;
  background: rgb(231 231 231 / 45%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  z-index: 999;
  transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  overflow-y: auto;
  box-shadow: -10px 0 30px var(--glass-shadow);
}

.menu-panel.active {
  right: 0;
  animation: slideIn 0.6s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

@keyframes slideIn {
  0% {
      right: -var(--menu-width);
      opacity: 0;
  }
  100% {
      right: 0;
      opacity: 1;
  }
}

/* Header del menú */
.menu-header {
  padding: 25px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.close-button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-button:hover {
  color: white;
  transform: rotate(90deg);
}

/* Navegación */
.menu-nav {
  padding: 20px 0;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  margin: 5px 15px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.menu-title {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: rgb(255 255 255);
  transition: all 0.3s ease;
}

.menu-title:hover {
  background: rgba(255, 255, 255, 0.1);
}

.arrow {
  transition: transform 0.4s ease;
}

.menu-item.active .arrow {
  transform: rotate(180deg);
}

/* Submenú */
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgb(0 0 0 / 36%);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.menu-item.active .submenu {
  max-height: 500px;
}

.submenu li a {
  display: block;
  padding: 15px 20px 15px 40px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.submenu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding-left: 45px;
}

/* Efectos de hover y focus */
.menu-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Animaciones de entrada para elementos del menú */
.menu-item {
  opacity: 0;
  transform: translateX(20px);
}

.menu-panel.active .menu-item {
  animation: slideInItems 0.5s ease forwards;
}

@keyframes slideInItems {
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Aplicar delay a cada item */
.menu-panel.active .menu-item:nth-child(1) { animation-delay: 0.2s; }
.menu-panel.active .menu-item:nth-child(2) { animation-delay: 0.3s; }
.menu-panel.active .menu-item:nth-child(3) { animation-delay: 0.4s; }
.menu-panel.active .menu-item:nth-child(4) { animation-delay: 0.5s; }
/* Añade más delays según necesites */