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

body {
    background-color: #f0f7ff;
}

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

.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;
    margin-bottom: 100px; 
    color: #fff;
}

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

.label {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

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

.content {
    padding: 10px 0 120px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: -40px; 
}

.card {
    background: white;
    padding: 25px; 
    border-radius: 15px;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.main-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 12px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
    flex: 1;
}

.btn-download {
    background: #DBECFF;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 10px;
    font-weight: bold;
    color: #1a5fb4;
    width: fit-content;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-download:hover {
    background: #1a5fb4;
    color: #ffffff;
    transform: translateY(-2px);
}

/* FOOTER */
.prisma-final-footer {
    background: #010a2a;
    padding: 22px 18px;
}

.footer-shell {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 52px;
    justify-self: start;
}

.footer-right {
    justify-self: end;
}

.footer-column,
.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-column h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: left;
}

.footer-column a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    line-height: 1.35;
    margin-bottom: 8px;
    text-align: left;
    text-decoration: none;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    justify-self: center;
}

.footer-center p {
    color: #fff;
    font-size: 11px;
    text-align: center;
    margin: 0;
}

.footer-prisma-img {
    width: 80px;
    height: auto;
    display: block;
    object-fit: contain;
}

.footer-contact a i {
    margin-right: 6px;
    width: 12px;
}



/* RECURSOS BLOQUEADO */

main {
  position: relative;
  z-index: 1;
}

.lock-overlay {
  position: absolute;
  top:-35px;
  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;
}

.hidden {
  display: none;
}

.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: white;
  color: black
  ;
}