:root {
    --primary-dark: #000814;
    --accent-blue: #007bff;
    --light-bg: #f0f7ff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Inter", Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: var(--light-bg);
}

.user-welcome{
  color:#ffffff !important;
  font-size:13px !important;
  font-weight:600 !important;
  white-space:nowrap !important;
}

.container {
    width:100%;
    max-width:1180px;
    margin:0 auto;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    height: 180px;
    width:100%;
    max-width:none;
    background:linear-gradient(90deg,rgba(10, 54, 126, 1) 0%, rgba(52, 158, 213, 1) 50%, rgba(52, 158, 213, 1) 80%, rgba(234, 203, 253, 1) 100%);
    padding:18px;
    margin-top: 50px;
    color:#fff;
}

.hero h1 {
    font-size:42px;
    font-weight:800;
    margin-bottom:8px;
    line-height:1.05;
}

.hero p {
    font-size:15px;
    max-width:700px;
    line-height:1.5;
}

.profile-section {
    margin-top: -50px;
    display: flex;
    justify-content: center;
    padding-bottom: 250px;
}

.profile-card {
    background: white;
    width: 80%;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.avatar {
    width: 80px;
    height: 80px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 20px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.course-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);

}

.card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 4px 0px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}


.main-icon {
    font-size: 26px;
    color: #111;
    margin: 15px 0;
    display: block;
}

.card h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.card p {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 60px;
}

.btn-download {
    background: #DBECFF;
    color: black;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
}


.progress-bar-main {
    height: 8px;
    background: #6DBDFF8A;
    border-radius: 4px;
    width: 300px;
    margin-top: 10px;
}


.progress-bar-main div {
    height: 100%;
    background: #6DBDFF;
    border-radius: 4px;
}

.titulo-progresso {
    font-size: 18px;
    font-weight: 700;
    margin: 40px 0 30px 0;
    color: #333;
}

.cursos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.curso-card {
  background: white;
  padding: 15px 11px;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.curso-topo {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 9px;
}

.porcentagem {
  color: #3498db;
}

.barra {
  background: #0084FF2B;
  height: 3px;
  border-radius: 10px;
  margin: 10px 0;
}

.progresso {
  background: #6DBDFF8A;
  height: 3px;
  border-radius: 10px;
}

.curso-card p {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

.curso-topo span:first-child {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.porcentagem {
  font-size: 11px;
  font-weight: 800;
}

.barra {
    background: #0084FF2B;
    height: 3px;
    border-radius: 10px;
    margin: 10px 0;
}

.progresso {
    background: #6DBDFF8A;
    height: 3px;
    border-radius: 10px;
}

.curso-card p {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

/* PERFIL BLOQUEADO */

.blur-locked {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

main {
  position: relative;
}

.lock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  background: rgba(255, 255, 255, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 999;
}

.lock-box {
  background: white;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.lock-btn {
  margin-top: 18px;
  padding: 10px 20px;
  border-radius: 8px;

  background-color: #000824;
  color: #fff;
  border: 1px solid #000824;

  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
  transition: 0.2s ease;
}

.lock-btn:hover {
  background-color: #ffffff;
  color: #000824;
}

.hidden {
  display: none;
}