
/* General layout */
.inicio{
  font-family: 'Segoe UI', sans-serif;
  font-size: .875rem;
  margin: 0;
}

#wrapper {
  display: flex;
  height: 100vh;
  overflow: hidden;
}




/* Form controls */
.navbar .form-control,
.form-control-dark {
  padding: .75rem 1rem;
  background-color: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
}

.form-control-dark:focus {
  box-shadow: 0 0 0 3px rgba(0, 255, 255, .25);
}

/* Utilities */
.border-top { border-top: 1px solid #2a2a2a; }
.border-bottom { border-bottom: 1px solid #2a2a2a; }

/* Welcome Section */
.welcome-container {
  
  margin-left: 250px;
  text-align: center;
  padding: 4rem 2rem 3rem 2rem;
  background-color: #ffffff;
  border-radius: 16px;
  color: #333;
  margin-top: 2rem;
}

.welcome-header {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-subtitle {
  font-size: 1.15rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-image {
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-image:hover {
  transform: scale(1.05);
  
}

/* Responsive */
@media (max-width: 768px) {
  #sidebar-wrapper {
    position: relative;
    width: 100%;
    height: auto;
  }
  #page-content-wrapper,
  .welcome-container {
    margin-left: 0;
    width: 100%;
  }
  .welcome-container {
    padding: 2rem 1rem;
  }
  .welcome-header {
    font-size: 1.8rem;
  }
  .welcome-subtitle {
    font-size: 1rem;
  }
}
