body {
  min-height: 100vh;
  background-image: url('../images/linksBackground.png');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
}

.linkContainer{
    max-width: var(--maxWidth);
    min-width: var(--minWidth);
    padding: 40px;
    margin: 0 auto;
}


/* COMPANY INFO */
.companyInfoBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 480px;
}

.companyInfoBox h1 {
  font-weight: 500;
  color: #171717;
  font-size: 19px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  margin-left: 10px;
}

.companyInfoBox p {
  color: #3D3D3D;
  margin-top: 10px;
  font-size: 15px;
  text-align: center;
}

.verifiedIcon {
  width: 18px;
  position: relative;
  bottom: 5px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid transparent;
  background-image: linear-gradient(#fff, #fff), 
                    linear-gradient(135deg, #19C6E4, #6198DA, #1162C4);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}




/* OPTION BOX */
.optionsBox {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 700px;
}

.optionsBox button {
  padding: 30px 20px;
  border-radius: 7px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  color: white;
  background: linear-gradient(to left, #6198DA, #1162C4);
}
.optionsBox button {
  padding: 30px 20px;
  border-radius: 7px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  color: white;
  background: linear-gradient(to left, #6198DA, #1162C4);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Luz percorrendo */
.optionsBox button::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 80%);
  transform: skewY(-20deg);
  transition: all 0.6s ease;
}

/* Hover premium */
.optionsBox button:hover::before {
  top: 100%;
}

.optionsBox button:hover {
  transform: scale(1.08);
  box-shadow: 
    0 15px 35px rgba(17, 98, 196, 0.5), /* sombra externa */
    0 0 30px rgba(97, 152, 218, 0.3) inset; /* brilho interno suave */
  animation: pulse 1.2s infinite alternate;
}

/* Pulso elegante da cor */
@keyframes pulse {
  0% {
    background: linear-gradient(to left, #6198DA, #1162C4);
  }
  50% {
    background: linear-gradient(to left, #7BB0E1, #1A75D1);
  }
  100% {
    background: linear-gradient(to left, #7BB0E1, #1A75D1);
  }
}



/* WARNING */
.warning {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2B2B2B;
  text-align: center;
}

.warning img {
  width: 28px;
}

.linkMark {
  position: relative;
  top: 3px;
  color: #1162C4;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  display: inline-block;
}

.linkMark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
}

.linkMark:hover::before {
  animation: shine 0.8s forwards;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}




/* RESPONSIVIDADE */
@media (max-width: 850px) {
  .companyInfoBox {
    width: 100%;
  }
  .linkContainer,
  .optionsBox {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .linkContainer{
    padding: 40px 20px;
  }
  .linkButton {
    font-size: 16px;
    padding: 16px 20px;
    max-width: 90%;
  }
  .logo {
    width: 90px;
    height: 90px;
}
  .companyInfoBox {
    width: 100%;
    padding: 0 10px;
  }
  .optionsBox button {
    padding: 25px 20px;
  }
  .optionsBox button {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .warning {
    font-size: 13px;
  }

  .warning img {
    width: 25px;
  }
}