@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap");

/* =========================
   ESTILOS GENERALES
========================= */
body {
  background: url("img/fondo.jpg") repeat;
  background-position: center;
  background-size: cover;
  background-color: #f8f8f8;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.max-inicio {
  width: 100%;
  max-height: 528px;
  object-fit: cover;
}

h2,
h3 {
  color: #333;
  margin-top: 0;
}

p {
  color: #666;
}

a {
  color: #007bff;
  text-decoration: none;
}

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

/* =========================
   HEADER / NAV
========================= */
header {
  background-color: #ffffff;
  padding: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav {
  background-color: #ffffff;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  padding: 10px;
}

.menu-hamburgesa {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0154bc;
  height: 48px;
}

.logo img {
  width: 100px;
  height: auto;
  animation: aparecer 1s ease-in-out forwards;
}

.navbarGabita {
  background-color: white;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.nav-list {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 10px;
  position: relative;
  animation: aparecer 1s ease-in-out forwards;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.nav-link img,
.nav-link i {
  font-size: 24px;
  max-width: 35px;
  max-height: 24px;
  margin-bottom: 5px;
  color: #0154bc;
}

.nav-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background-color: #999;
}

.nav-item:last-child::after {
  display: none;
}

.nav-link:hover {
  transform: translateY(-8px);
}

/* Menú desplegable */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-menu li {
  padding: 12px 16px;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* =========================
   SOBRE MÍ
========================= */
.about-wrapper {
  height: 100vh;
}

.about-left {
  background: #007bff60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.about-left-content > div {
  background: #489efa;
  padding: 4rem 4rem 2.5rem 5rem;
  border-radius: 15px 15px 0 0;
  text-align: center;
}

.about-left-content {
  border-radius: 15px;
  box-shadow: 0 0 18px -1px rgba(0, 0, 0, 0.39);
  -webkit-box-shadow: 0 0 18px -1px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: 0 0 18px -1px rgba(0, 0, 0, 0.39);
}

.about-img img {
  display: block;
  width: 200px;
}

.about-img {
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.shadow {
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: relative;
}

.shadow::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  height: 7px;
  width: 50px;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  opacity: 0;
  transition: all 0.6s ease;
}

.shadow:hover .about-img {
  transform: translateY(-10px);
}

.shadow:hover::after {
  opacity: 1;
}

.about-left-content h2 {
  font-size: 2rem;
  margin: 2.2rem 0 0.6rem 0;
  line-height: 1.2;
  padding-bottom: 1rem;
  border-bottom: 2px solid #edffec;
}

.about-left-content h3 {
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 5px;
  margin-top: 1.2rem;
}

.icons {
  background: #fff;
  border-radius: 0 0 15px 15px;
  display: flex;
  justify-content: center;
  padding: 0.8rem 0;
}

.icons li a {
  text-decoration: none;
}

.icons li a i {
  background: #007bff;
  color: #fff;
  width: 40px;
  height: 40px;
  margin: 0 0.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.icons li a i:hover {
  background: #edffec;
  color: #000;
}

.about-right {
  background: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5rem;
  text-align: center;
}

.about-right h1 {
  font-size: 7rem;
  text-transform: uppercase;
}

.about-right h1 span {
  color: #007bff;
}

.about-right h2 {
  font-weight: 600;
}

.about-btns {
  display: flex;
  margin: 2rem 0;
}

.btn {
  border: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: 2px solid #000;
  border-radius: 20px;
  padding: 0.55rem 0;
  width: 160px;
  font-weight: 600;
  background: transparent;
  margin: 10px 0.5rem;
  cursor: pointer;
}

.btn.btn-pink {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
  transition: all 0.5s ease-in-out;
}

.btn.btn-pink:hover {
  background: transparent;
  border-color: #007bff;
  color: #000;
}

.btn.btn-white {
  transition: all 0.5s ease-in-out;
}

.btn.btn-white:hover {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
}

.about-para p {
  color: #333;
  font-weight: 300;
  padding: 0.5rem;
  opacity: 0.8;
}

.color_parrafo {
  font-size: 1.5rem;
  color: #353535;
}

/* =========================
   PROMOS ANTIGUAS / CURRENCY
========================= */
.tickets-margin {
  margin-right: 120px;
}

.Currency .titlepage {
  text-align: center;
  padding-bottom: 45px;
}

.Currency .titlepage h2 {
  padding: 50px 0;
  color: #539df8;
  font-size: 55px;
  font-weight: 650;
}

.Currency .promoindex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.Currency a {
  text-decoration: none;
}

.Currency .three-box {
  text-align: center;
}

.Currency .three-box figure {
  margin: 0;
}

.Currency .three-box figure img {
  max-width: 310px;
  max-height: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
}

.Currency .three-box .promo {
  position: relative;
  margin-top: -60px !important;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  padding: 0 20px 26px 20px;
  margin: 0 auto;
  width: 310px;
}

.Currency .three-box .promo i img {
  margin-top: -36px;
}

.Currency .three-box .promo p {
  padding-top: 20px;
  font-size: 15px;
  line-height: 23px;
  color: #3e3c3c;
}

.Currency .three-box .promo h3 {
  font-size: 27px;
  line-height: 32px;
  font-weight: 500;
  padding-top: 10px;
}

.Currency .three-box .read-more {
  padding: 11px 20px;
  color: #fff;
  display: inline-block;
  margin-top: 20px;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
}

.three-box:hover .promo {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.three-box .promo img {
  transition: transform 0.3s ease-in-out;
}

.three-box:hover .promo img {
  transform: translateY(-5px);
}

/* =========================
   CARDS GENERALES
========================= */
.card {
  max-width: auto;
  max-height: auto;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
}

.content {
  padding: 1.1rem;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 150px;
  background-color: rgb(239, 205, 255);
}

.desc {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* =========================
   BLOQUES VARIOS
========================= */
.layout_padding {
  padding-top: 90px;
  padding-bottom: 0;
}

.images_2 {
  width: 100%;
  float: left;
  text-align: center;
}

.images_2 img {
  object-fit: cover;
  max-width: 343px;
  max-height: 279px;
}

.ride_section {
  width: 100%;
  float: left;
}

.ride_text {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #2b3436;
  font-size: 50px;
  margin-left: 0;
  border-bottom: 1px solid #000;
}

.ride_main {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}

.ride_section_2 {
  width: 100%;
  float: left;
  padding-top: 50px;
}

.image_3 {
  width: 100%;
  float: left;
}

.image_3 img {
  object-fit: cover;
  max-width: 343px;
  max-height: 279px;
}

.cabe_text {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #2b3436;
  margin-top: 20px;
}

.long_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #2b3436;
  margin-left: 0;
}

.secure_text {
  width: 100%;
  float: left;
  font-size: 24px;
  color: #2b3436;
  margin-top: 20px;
  text-align: right;
}

.long_text_2 {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #2b3436;
  margin-left: 0;
  text-align: right;
}

/* =========================
   ANIMACIONES
========================= */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes aparecer {
  0% {
    opacity: 0;
    transform: scale(0);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* =========================
   FORMULARIOS / LOGIN
========================= */
.login {
  width: 400px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-header {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #007bff;
  margin-bottom: 20px;
}

.form-cotizacion {
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

label {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.login input[type="text"] {
  width: 250px;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login input[type="date"] {
  width: 150px;
}

.login button[type="submit"] {
  display: block;
  margin: 20px auto;
}

button[type="submit"] {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #0062cc;
}

::placeholder {
  color: #999;
}

/* =========================
   PROPAGANDA
========================= */
.propaganda {
  background-image: url(img/castillo_disney_propaganda.jpg);
  border-radius: 20px;
  width: 1250px;
  height: 200px;
  margin-left: 120px;
  object-fit: cover;
}

.propaganda h3 {
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  margin-left: 55px;
  font-style: oblique;
  padding-top: 40px;
  color: #fff;
}

.propaganda p {
  margin-left: 55px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  padding-top: 5px;
  color: #fff;
}

.whatsapp-propaganda {
  margin-left: 500px;
  background-color: #25d366;
  color: white;
  border: transparent;
  padding: 8px;
  border-radius: 10px;
}

.whatsapp-propaganda:hover {
  background-color: #128c7e;
  color: #fff;
}

/* =========================
   SERVICIOS
========================= */
.section-service {
  position: relative;
  padding: 115px 0 35px 0;
  text-align: center;
}

.section-service::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100px;
  top: 0;
  left: 50%;
  margin-left: 1px;
  background: #0056b3;
}

.box-servicios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  justify-self: center;
}

.recuadro-servicios {
  background: linear-gradient(to bottom, #273572, #5669b6);
  color: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.3);
}

.recuadro-servicios p {
  color: white;
}

.service-icon {
  filter: brightness(0) invert(1);
  font-size: 24px;
  margin-right: 20px;
}

/* =========================
   FOOTER
========================= */
.copy {
  background-color: #013369;
  padding: 20px;
  margin-top: 15px;
  text-align: center;
}

.copy p {
  color: #fff;
  font-size: 8px;
}

.copy-bottom {
  margin-top: 20px;
}

.footer {
  background-color: #0056b3;
  padding: 10px 0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
}

.footer .footer-logo img {
  width: 150px;
  height: auto;
}

.footer .footer-info {
  flex: 2;
  margin: 20px 0;
  margin-left: 120px;
  padding-left: 10px;
}

.footer .footer-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bolder;
}

.footer .footer-info p {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.footer .footer-social {
  flex: 2;
  margin: 20px 0;
  color: #fff;
}

.footer .footer-social h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bolder;
}

.footer .footer-social .social-links i {
  color: #fff;
}

.social-links li {
  list-style: none;
  line-height: 2.1;
}

.footer .footer-social .social-links li {
  display: block;
  margin-bottom: 10px;
}

.footer .footer-social .social-links a {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
}

.footer .footer-social .social-links a i {
  margin-right: 8px;
}

.footer .footer-bottom {
  text-align: center;
  margin-top: 30px;
}

.footer .footer-bottom p {
  font-size: 14px;
  color: #fff;
}

/* =========================
   BOTÓN WHATSAPP
========================= */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
  overflow: hidden;
}

.whatsapp-button a:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-button a i {
  font-size: 24px;
}

/* =========================
   UNIVERSAL PROMO
========================= */
.projcard-container {
  margin: 50px 0;
}

.projcard-container,
.projcard-container * {
  box-sizing: border-box;
}

.projcard-container {
  margin-left: auto;
  margin-right: auto;
  width: 1000px;
}

.projcard {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid #ddd;
  font-size: 18px;
  overflow: hidden;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.projcard:hover {
  box-shadow: 0 34px 32px -33px rgba(0, 0, 0, 0.18);
  transform: translate(0, -3px);
}

.projcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
  opacity: 0.07;
}

.projcard:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #424242, transparent 50%);
}

.projcard-innerbox {
  position: absolute;
  inset: 0;
}

.projcard-img {
  position: absolute;
  height: 300px;
  width: 400px;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: transform 0.2s ease;
}

.projcard:nth-child(2n) .projcard-img {
  left: initial;
  right: 0;
}

.projcard:hover .projcard-img {
  transform: scale(1.05) rotate(1deg);
}

.projcard:hover .projcard-bar {
  width: 70px;
}

.projcard-textbox {
  position: absolute;
  top: 7%;
  bottom: 7%;
  left: 430px;
  width: calc(100% - 470px);
  font-size: 17px;
}

.projcard:nth-child(2n) .projcard-textbox {
  left: initial;
  right: 430px;
}

.projcard-textbox::before,
.projcard-textbox::after {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  top: -20%;
  left: -55px;
  height: 140%;
  width: 60px;
  transform: rotate(8deg);
}

.projcard:nth-child(2n) .projcard-textbox::before {
  display: none;
}

.projcard-textbox::after {
  display: none;
  left: initial;
  right: -55px;
}

.projcard:nth-child(2n) .projcard-textbox::after {
  display: block;
}

.projcard-textbox * {
  position: relative;
}

.projcard-title {
  font-family: "Voces", "Open Sans", arial, sans-serif;
  font-size: 20px;
}

.projcard-subtitle {
  font-family: "Voces", "Open Sans", arial, sans-serif;
  color: #888;
}

.projcard-bar {
  left: -2px;
  width: 50px;
  height: 5px;
  margin: 10px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}

.projcard-blue .projcard-bar {
  background-color: #0088ff;
}

.projcard-blue::before {
  background-image: linear-gradient(-70deg, #0088ff, transparent 50%);
}

.projcard-blue:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #0088ff, transparent 50%);
}

.projcard-red .projcard-bar {
  background-color: #d62f1f;
}

.projcard-red::before {
  background-image: linear-gradient(-70deg, #d62f1f, transparent 50%);
}

.projcard-red:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #d62f1f, transparent 50%);
}

.projcard-green .projcard-bar {
  background-color: #40bd00;
}

.projcard-green::before {
  background-image: linear-gradient(-70deg, #40bd00, transparent 50%);
}

.projcard-green:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #40bd00, transparent 50%);
}

.projcard-pink .projcard-bar {
  background-color: #f16fe0;
}

.projcard-pink::before {
  background-image: linear-gradient(-70deg, #f16fe0, transparent 50%);
}

.projcard-pink:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #f16fe0, transparent 50%);
}

.projcard-yellow .projcard-bar {
  background-color: #f5af41;
}

.projcard-yellow::before {
  background-image: linear-gradient(-70deg, #f5af41, transparent 50%);
}

.projcard-yellow:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #f5af41, transparent 50%);
}

.projcard-orange .projcard-bar {
  background-color: #ff5722;
}

.projcard-orange::before {
  background-image: linear-gradient(-70deg, #ff5722, transparent 50%);
}

.projcard-orange:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #ff5722, transparent 50%);
}

.projcard-brown .projcard-bar {
  background-color: #c49863;
}

.projcard-brown::before {
  background-image: linear-gradient(-70deg, #c49863, transparent 50%);
}

.projcard-brown:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #c49863, transparent 50%);
}

.projcard-grey .projcard-bar {
  background-color: #424242;
}

.projcard-grey::before {
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
}

.projcard-grey:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, #424242, transparent 50%);
}

.projcard-customcolor .projcard-bar {
  background-color: var(--projcard-color);
}

.projcard-customcolor::before {
  background-image: linear-gradient(-70deg, var(--projcard-color), transparent 50%);
}

.projcard-customcolor:nth-child(2n)::before {
  background-image: linear-gradient(-250deg, var(--projcard-color), transparent 50%);
}

.projcard-description {
  z-index: 9;
  font-size: 12px;
  color: #424242;
  height: 125px;
  overflow-y: auto;
}

.projcard-tagbox {
  z-index: 10;
  position: absolute;
  padding-top: 35px;
  bottom: 3%;
  font-size: 14px;
  cursor: default;
  user-select: none;
}

.projcard-tag {
  display: inline-block;
  background: #e0e0e0;
  color: #777;
  border-radius: 3px 0 0 3px;
  line-height: 26px;
  padding: 0 10px 0 23px;
  position: relative;
  margin-right: 20px;
  cursor: default;
  user-select: none;
  transition: color 0.2s;
}

.projcard-tag::before {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
  height: 6px;
  left: 10px;
  width: 6px;
  top: 10px;
}

.projcard-tag::after {
  content: "";
  position: absolute;
  border-bottom: 13px solid transparent;
  border-left: 10px solid #e0e0e0;
  border-top: 13px solid transparent;
  right: -10px;
  top: 0;
}

/* =========================
   TICKETS
========================= */
.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn {
  border-radius: 50%;
  background-color: #0154bc;
  color: white;
  font-size: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ano input[type="number"] {
  text-align: center;
  font-size: 16px;
}

input[type="number"] {
  width: max-content;
  height: 30px;
  text-align: center;
  font-size: 16px;
}

select {
  max-width: 270px;
}

.tickets-general {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tickets {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(to bottom, #273572, #5669b6);
  color: white;
  max-width: 750px;
  width: 750px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.3);
}

.expressHogwarts {
  background-image: url(img/tren.jpg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  color: white;
  width: 750px;
  max-height: 100px;
  max-width: 750px;
  object-fit: cover;
  padding: 25px;
}

.expressHogwarts p {
  margin-top: 10px;
  margin-left: 10px;
  max-width: 400px;
}

.tickets-especial {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(to bottom, #ceb548, #725a27);
  color: white;
  max-width: 750px;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.3);
}

.tickets h3,
.tickets p {
  color: #fff;
}

.tickets .ticket-parrafo {
  margin-top: 20px;
  line-height: 1.5;
}

.descripcion-card {
  max-height: 100px;
  overflow-y: auto;
}

/* =========================
   ÚLTIMAS PROMOS MODERNAS
========================= */
.ultimas-promos-modern {
  padding: 70px 0 40px;
}

.ultimas-header {
  margin-bottom: 35px;
}

.ultimas-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #16324f;
  margin-bottom: 10px;
}

.ultimas-header p {
  color: #6b7280;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
}

.ultimas-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  height: 100%;
}

.ultimas-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.1);
  transition: all 0.25s ease;
  border: 1px solid #e9eef6;
  height: 100%;
}

.ultimas-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(29, 78, 216, 0.16);
}

.ultimas-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.ultimas-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ultimas-card-body {
  padding: 22px 20px 24px;
  position: relative;
}

.ultimas-card-icon {
  width: 68px;
  height: 68px;
  margin: -54px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ultimas-card-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
}

.ultimas-card-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #16324f;
  margin-bottom: 10px;
}

.ultimas-card-body p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
  min-height: 70px;
}

.ultimas-card-action {
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =========================
   FORMULARIO MODERNO
========================= */
.formulario-modern-wrap {
  padding: 50px 15px;
}

.formulario-modern-card {
  max-width: 1150px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  box-shadow: 0 20px 50px rgba(29, 78, 216, 0.12);
  border: 1px solid #e8eef8;
}

.formulario-modern-info {
  background: linear-gradient(135deg, #1d4ed8 0%, #0f766e 100%);
  color: #ffffff;
  padding: 42px 34px;
}

.formulario-modern-logo {
  max-width: 170px;
  width: 100%;
  height: auto;
  margin-bottom: 22px;
}

.formulario-modern-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.formulario-modern-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.formulario-modern-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 22px;
}

.formulario-modern-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.formulario-modern-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #eef6ff;
  font-weight: 500;
}

.formulario-modern-form {
  padding: 38px 34px;
  background: #fff;
}

.formulario-modern-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #16324f;
  margin-bottom: 24px;
}

.formulario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group-modern {
  margin-bottom: 18px;
}

.form-group-modern label {
  display: block;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
}

.form-cotizacion-modern input,
.form-cotizacion-modern select {
  width: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  padding: 13px 14px;
  outline: none;
  transition: 0.2s ease;
  background: #fff;
}

.form-cotizacion-modern input:focus,
.form-cotizacion-modern select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.cantidad-selector-modern {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cantidad-btn-modern {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: #eaf2ff;
  color: #1d4ed8;
  font-size: 1.2rem;
  font-weight: 800;
  transition: 0.2s ease;
}

.cantidad-btn-modern:hover {
  background: #dbeafe;
}

.cantidad-selector-modern input {
  text-align: center;
}

.formulario-btn-wrap {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}

.formulario-modern-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 13px 24px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
  transition: 0.25s ease;
}

.formulario-modern-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media screen and (min-width: 992px) {
  .about-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-left {
    position: relative;
  }

  .about-left-content {
    position: absolute;
    right: -50px;
  }
}

@media screen and (min-width: 1200px) {
  .box-servicios {
    margin-left: 250px;
    margin-right: 250px;
  }
}

@media screen and (max-width: 999px) {
  .recuadro-servicios {
    margin-top: 15px;
  }

  .about-right {
    display: none;
  }

  .login {
    margin-top: 25px;
  }

  .service-item {
    display: grid;
    grid-template-rows: 1fr;
    grid-row-gap: 20px;
    justify-items: stretch;
    align-items: stretch;
  }

  .left {
    margin-left: 0;
  }
}

@media (max-width: 1200px) {
  .projcard-container {
    max-width: 100%;
  }

  .projcard-tagbox {
    bottom: 1%;
  }

  .projcard-description {
    overflow-y: scroll;
    max-height: 80px;
  }

  .projcard-tag {
    display: block;
  }

  .projcard-container {
    max-width: 800px;
  }

  .three-box {
    margin-top: 1em;
  }

  .Currency .promoindex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .Currency a {
    text-decoration: none;
  }
}

@media (max-width: 992px) {
  .projcard-container {
    max-width: 650px;
  }

  .card {
    margin: 80px;
  }

  .projcard-description,
  .projcard-tag,
  .projcard-subtitle {
    display: block;
  }

  .navbarGabita .nav-list {
    display: none;
  }

  .navbarGabita .nav-list.active {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-item img,
  .nav-item i {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-item {
    text-align: center;
  }

  .three-box {
    margin-top: 1em;
  }

  .Currency a {
    text-decoration: none;
  }

  .propaganda {
    width: 750px;
    height: 200px;
    margin-left: 30px;
  }

  .whatsapp-propaganda {
    margin-left: 250px;
  }

  .footer-content {
    display: flex;
    margin-left: 120px;
  }

  .footer-logo {
    margin-left: -50px;
  }

  .footer .footer-info {
    margin: 0;
    margin-left: 20px;
    padding-left: 0;
  }

  .formulario-modern-card {
    grid-template-columns: 1fr;
  }

  .formulario-modern-info,
  .formulario-modern-form {
    padding: 28px 22px;
  }
}

@media (max-width: 768px) {
  .projcard-container {
    max-width: 100%;
    margin: 0;
  }

  .projcard-description,
  .projcard-tag {
    display: block;
  }

  .projcard-title {
    font-size: 16px;
  }

  .projcard-img {
    height: 200px;
    max-width: 100%;
  }

  .footer-logo {
    display: none;
  }

  .footer-content {
    display: flex;
    margin-left: 200px;
  }

  .footer .footer-info {
    margin: 0;
    margin-right: 300px;
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .ultimas-header h2 {
    font-size: 1.8rem;
  }

  .ultimas-card-img {
    height: 220px;
  }

  .ultimas-card-body p {
    min-height: auto;
  }

  .formulario-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .formulario-modern-title {
    font-size: 1.6rem;
  }

  .formulario-modern-info h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .projcard-container {
    max-width: 100%;
    margin: 0;
  }

  .projcard-bar {
    display: none;
  }

  .projcard-subtitle,
  .projcard-description,
  .projcard-tag {
    display: block;
  }

  .projcard-title {
    font-size: 14px;
  }

  .propaganda {
    width: 470px;
    height: 200px;
    margin-left: 10px;
  }

  .tickets {
    max-width: 470px;
  }

  .whatsapp-propaganda {
    margin-left: 120px;
  }

  .Currency {
    margin-left: 10px;
  }

  .Currency .titlepage h2 {
    color: #539df8;
    font-size: 35px;
  }

  .footer-content {
    display: flex;
    margin-left: 120px;
  }

  .footer .footer-info {
    margin: 0;
    margin-right: 300px;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .projcard-container {
    max-width: 100%;
    margin: 0;
  }

  .projcard-description,
  .projcard-tag {
    display: block;
  }

  .footer-logo {
    display: none;
  }

  .footer-content {
    display: flex;
    margin-left: 120px;
  }
}

@media (max-width: 360px) {
  .projcard-container {
    max-width: 100%;
    margin: 0;
  }

  .projcard-description,
  .projcard-tag {
    display: block;
  }

  .footer-logo {
    display: none;
  }

  .footer-content {
    display: flex;
    margin-left: 120px;
  }
}