* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #21335d;
  color: #333;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  z-index: 1;
}

.container {
  max-width: 1200px;
  width: 100%;
}

header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}


.titulo {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #FFF    ;
}

.contenido {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 40px;
  align-items: center;
}

.columna {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.descripcion {
  font-size: 1rem;
  margin-bottom: 20px;
}

.boton {
  display: inline-block;
  padding: 12px 20px;
  background-color: #4993d0;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.boton:hover {
  background-color: #003d80;
}

.separador {
  display: flex;
  justify-content: center;
  align-items: center;
}

.linea {
  width: 4px;
  height: 100px;
  background-color: #d0d0d0;
  border-radius: 2px;
}

.background-pattern {
  position: fixed;
  inset: 0;
  background-image: url('pattern-hex.svg');
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.3;
  z-index: -2;
  animation: moverFondo 20s linear infinite;
}

@keyframes moverFondo {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 300px 300px;
  }
}


@media (max-width: 768px) {
  .contenido {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .separador {
    display: none;
  }

  .columna {
    padding: 20px;
  }
}
