* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  display: flex;
  flex: 0 0 100%;
  padding: 20px;
}
.text-column,
.image-column {
  flex: 1;
  padding: 10px;
}
.text-column h2 {
  margin-bottom: 15px;
}
.text-column p {
  margin-bottom: 10px;
}
.image-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.slider-controls {
 
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 30px;
    margin-bottom: 20px;
    margin-left: 15px;
}
.nav-button {
  background-color: transparent;
  color: #326295;
  border: 2px solid #326295;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}
.nav-button:hover {
  background-color: rgba(255, 0, 0, 0.1);
}
.slide-indicators {
  display: flex;
  gap: 10px;
}
.slide-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(50, 98, 149, 0.41);
  cursor: pointer;
  transition: background-color 0.3s;
}
.slide-indicator.active {
  background-color: #326295;
}
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
  }
  .text-column,
  .image-column {
    width: 100%;
  }
}

/* Estilos para el modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 100, 0.4);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: rgba(51, 86, 135, 1); /* Azul oscuro semitransparente */
  color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #4169e1; /* Borde azul real */
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3); /* Sombra azul suave */
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  color: #b0c4de; /* Azul claro */
  float: right;
  font-size: 28px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #f0f8ff; /* Azul muy claro al hacer hover */
  text-decoration: none;
  cursor: pointer;
}

#modalTitle {
  color: #CDD7E1; /* Azul cielo claro para el título */
  margin-bottom: 15px;
}

#modalContent {
  line-height: 1.6;
}

.btn-get-started {
  display: inline-block;
  padding: 8px 30px 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #ff0000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}

.btn-get-started:hover {
  background: #CDD7E1;
}
