:root{
  --blue:hsl(204, 79%, 20%);
  --silver:#cfd8dc;
  --dark:#0a0a0a;
  --blue-main:#0B3C5D;
  --blue-dark:#082A40;
  --silver-main:#CFD8DC;
  --silver-light:#E5E5E5;
  --gray-main:#6C757D;
  --gray-light:#E9ECEF;
  --white-soft:#F8F9FA;
  --black-soft:#0A0A0A;
}

*{
  font-family: Verdana, Arial, Helvetica, sans-serif;
  color: #F8F9FA;
  margin: 0px;
}

body {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  overflow-x: hidden;  
}

#events, #contact, #packages {
  background-color: var(--blue);
}

#about{
  background-color: var(--blue); 
  color:#F5F5DC
}

h2 {
  font-weight: 600;
  color: var(--silver);
}

h3{
  color: var(--white-soft);
}

h5{
  color: var(--blue);
}

.fw-bold{
  color: white;
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

@keyframes aparecer {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-caption h1, .carousel-caption p, .carousel-caption a {
  animation: aparecer 1s ease-in-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.carousel-item{
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
}

.carousel-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

@media (max-width: 600px) {
  header { height: 75vh; }
  .carousel-item img { height: 75vh; }
}

@media (min-width: 601px) and (max-width: 1024px) {
  header { height: 60vh; }
  .carousel-item img { height: 60vh; }
}

@media (min-width: 1025px) {
  header { height: 100vh; }
  .carousel-item img { height: 100vh; }
}

.img_facebook, .img_tiktok {
  width: 3vw;
  max-width: 50px;
  min-width: 32px;
}

.card-body{ background-color: #121012; }

.icono{ transition: transform 0.3s; }
.icono:hover { transform: scale(1.37); }

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

footer p { margin: 0; }

.btn-outline-primary:hover, .btn-outline-success:hover {
  color: #fff;
  background-color: #1972a2;
}

.espacio_botones_redes {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.logo_red {
  position: relative;
  width: 48px;
  height: 48px;
}

.logo_red img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.logo_red:hover img { transform: scale(1.25); }

.social-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 107, 169, 0.95);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo_red:hover .social-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-5px);
}

@media (max-width: 600px) {
  .logo_red { width: 42px; height: 42px; }
}

.icon_contacto{ width: 3vw; }

@media (min-width: 1024px) {
  .icon_contacto { width: 2.5vw; }
}

@media (max-width: 600px) {
  .icon_contacto { width: 7vw; }
}

.contact-section {
  padding: 60px 0;
}
.contact-section h2 {
  color: #4CAF50;
  font-size: 2rem;
  font-weight: bold;
}
.form-control:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}
.btn-submit {
  background-color: #4CAF50;
  color: #fff;
  font-weight: bold;
}
.btn-submit:hover { background-color: #3e8e41; }

iframe {
  width: 100%;
  height: 60vh; 
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

.contenido_formulario{ margin: 3%; }

.carousel-imagenes{
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
  margin: 0;
}

.custom-carousel {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 80%;
  max-width: 800px;
  position: relative;
}

.custom-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.custom-carousel-item {
  flex: 0 0 auto;
  margin: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-size: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s, opacity 0.3s;
}

.custom-carousel-item.active {
  transform: scale(1.2);
  opacity: 1;
}

.custom-carousel-item:not(.active) { opacity: 0.5; }

@media (max-width: 600px) {
  .custom-carousel-item { width: 40vw; height: 17vh; font-size: 1rem; }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .custom-carousel-item { width: 25vw; height: 18vh; font-size: 1.5rem; }
}

@media (min-width: 1025px) {
  .custom-carousel-item { width: 15vw; height: 30vh; font-size: 1.5rem; }
}

.custom-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.custom-carousel-button.prev { left: 10px; z-index: 1050; }
.custom-carousel-button.next { right: 10px; }

.event-hover-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,.15);
  cursor: pointer;
}

.event-hover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.event-hover-card:hover img { transform: scale(1.1); }

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11,60,93,.85), rgba(8,42,64,.95));
  color: var(--silver);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(100%);
  transition: all .5s ease;
}

.event-hover-card:hover .event-overlay {
  opacity: 1;
  transform: translateY(0);
}

.event-overlay h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.event-overlay p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ffffff;
}

.tap-indicator {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11,60,93,.85);
  color: #fff;
  padding: 6px 14px;
  font-size: 0.75rem;
  border-radius: 20px;
  text-align: center;
  pointer-events: none;
}

@media (hover: hover) {
  .tap-indicator { display: none; }
}

.MensajeF{
  color: var(--gray-light);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.SecMensajeFinal{
  text-shadow: 2px 2px 8px rgba(0, 34, 255, 0.886);
  background:linear-gradient(rgba(169, 221, 255, 0.7),rgba(230, 245, 255, 0.466)), url('../img/imagen_uno.webp') center/cover no-repeat;
}

.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  margin-bottom: .6rem;
  font-size: .95rem;
}

.offer-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0,0,0,.1);
  transition: .4s ease;
  height: 100%;
}

.offer-card i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: .6rem;
}

.offer-card h5 { font-weight: 600; }

.offer-card p {
  font-size: .85rem;
  color: var(--gray-main);
}

.offer-card:hover { transform: translateY(-8px); }

.texto-cuerpo p{ color: var(--gray-main); }
#desco{ color: var(--blue-main); }

.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-carousel .carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item, .hero-carousel img {
  height: 100%;
}

.hero-carousel img { object-fit: cover; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 60, 93, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
  padding: 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 102, 255, 0.8), 0 0 20px rgba(0, 102, 255, 0.6), 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--white-soft);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
}

.section-dark { background-color: var(--blue-dark); }
.section-blue { background-color: var(--blue-main); }

.section-dark h2, .section-dark p, .section-blue h2, .section-blue p {
  color: var(--white-soft);
}

.section-dark h5, .section-blue h5 { color: var(--silver-light); }

.text-image-box{
  position: relative;
  max-width: 600px;
  margin: auto;
}

.bg-shape{
  position: absolute;
  width: 350px;
  height: 350px;
  background: #1e4d7a;
  border-radius: 50%;
  top: -40px;
  left: -40px;
  z-index: 1;
}

.bg-img{
  position: absolute;
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  top: -25px;
  left: -25px;
  z-index: 2;
  opacity: 0.25;
}

.content-text{
  position: relative;
  z-index: 3;
  color: white;
}

.copy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s ease;
  position: relative;
}

.copy-icon:hover { background-color: rgba(255,255,255,0.15); }

.copy-icon.copied {
  background-color: rgba(255,255,255,0.25);
  color: #ffffff;
}

.copy-icon {
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}

.copy-icon:focus {
  outline: none;
  box-shadow: none;
}

body { user-select: none; }

p, span, a, h1, h2, h3, h4, h5, h6 { user-select: text; }

.carousel-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2f55ff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(47, 85, 255, 0.4);
}

.carousel-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e0e0e0;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  margin-top: 15px;
}

.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease, transform 0.25s ease;
  position: relative;
  width: fit-content;
}

.contact-link:hover {
  transform: translateY(-2px);
  color: #4dabf7 !important;
}

.contact-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #4dabf7;
  transition: width 0.3s ease;
}

.contact-link:hover::after { width: 100%; }

.icon_contacto { transition: transform 0.3s ease; }

.contact-link:hover + .icon_contacto, .contact-link:hover ~ .icon_contacto { transform: scale(1.1); }
