  .decora {
  text-decoration: underline;
  color: blue; /* Cambia el color a azul */
  font-weight: bold; /* Cambia el grosor del subrayado */
}
.logo-header {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.logo-header img {
  transition: transform 0.2s ease;
}

.logo-header img:hover {
  transform: scale(1.05);
}
.alert-box {
  background-color: #e6f0fc; /* azul claro */
  border-left: 5px solid #2a6edb; /* azul profundo */
  padding: 20px 40px 20px 20px;
  position: relative;
  border-radius: 8px;
  font-family: 'Segoe UI', sans-serif;
  color: #1a3c6e;
  margin-bottom: 20px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

.close-icon {
  font-size: 18px;
  color: #1a3c6e;
  transition: color 0.3s ease;
}

.close-icon:hover {
  color: #2a6edb;
}

.alert-text {
  font-size: 15px;
  line-height: 1.6;
}

.policy-link {
  color: #2a6edb;
  text-decoration: none;
  font-style: italic;
  font-weight: 500;
}

.policy-link:hover {
  text-decoration: underline;
  color: #1a3c6e;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icon svg {
  transition: transform 0.3s ease;
}

.social-icon:hover svg {
  transform: scale(1.1);
}

.social-icon.facebook svg {
  color: #1877F2;
}

.social-icon.linkedin svg {
  color: #0A66C2;
}

.social-icon.youtube svg {
  color: #FF0000;
}
