:root {
  --primary-gradient: linear-gradient(90deg, #681dfd, #9a45fc);
  --story-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #121212;
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#app {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px 30px 15px;
  margin-top: -2rem;
  flex-grow: 1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid #333;
  box-shadow: 0px 7px 22px -5px rgba(0, 0, 0, 0.5);
  margin-bottom: 2.3rem;
  top: 0;
  background-color: #121212;
  z-index: 100;
  transition: background-color 0.3s, color 0.3s;
}

header.attention-mode {
  background: #f04a4a;
  color: #fff;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: none;
  margin-bottom: 0;
}

.logo img {
  height: 28px;
}

.reward {
  background: var(--primary-gradient);
  color: white;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 18px;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.photo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 15px;
}

.story-container {
  width: 100%;
  margin-bottom: -10px;
}

.story-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-photo {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  padding: 3px;
  background-clip: padding-box;
  border: solid 2px #121212;
  position: relative;
}

.story-photo::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: var(--story-gradient);
  border-radius: 50%;
  z-index: -1;
}

.influencer-name {
  font-size: 17px;
  font-weight: 600;
  color: #e5e5e5;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.photo {
  width: 100%;
  height: 300px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.question {
  text-align: center;
  margin: 20px 0;
  margin-top: -0.3rem;
}

.question h2 {
  font-size: 1.3rem;
  color: #f5f5f5;
}

.buttons {
  display: flex;
  gap: 20px;
  width: 90%;
  margin-top: -0.9rem;
}

.buttons button {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-like,
.btn-dislike {
  background-color: #3a3a3a;
}

.btn-like.selected,
.btn-dislike.selected {
  background: var(--primary-gradient);
  transform: scale(0.95);
}

.btn-submit {
  width: 90%;
  padding: 15px;
  border: none;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s;
  background: var(--primary-gradient);
  opacity: 0.5;
  pointer-events: none;
}

.btn-submit.active {
  opacity: 1;
  pointer-events: auto;
}

.btn-submit.active:hover {
  transform: scale(1.0);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content {
  background: white;
  border-radius: 30px;
  text-align: center;
  max-width: 90%;
  width: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: var(--primary-gradient);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.success-icon {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.2);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: iconPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes iconPop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.modal-body {
  padding: 30px;
}

.modal-content h2 {
  color: #363636;
  margin-bottom: 10px;
  font-size: 2.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal-content p {
  color: #242424;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.modal-reward {
  font-size: 3.5rem;
  font-weight: bold;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin: 20px 0;
  animation: rewardPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

@keyframes rewardPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 15px 50px;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.confetti-container {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.6;
  animation: confetti 3s ease-in-out infinite;
}

.confetti:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.confetti:nth-child(2) {
  left: 30%;
  animation-delay: 0.2s;
}

.confetti:nth-child(3) {
  left: 50%;
  animation-delay: 0.4s;
}

.confetti:nth-child(4) {
  left: 70%;
  animation-delay: 0.6s;
}

.confetti:nth-child(5) {
  left: 90%;
  animation-delay: 0.8s;
}

.confetti:nth-child(6) {
  left: 20%;
  animation-delay: 1s;
}

.confetti:nth-child(7) {
  left: 40%;
  animation-delay: 1.2s;
}

.confetti:nth-child(8) {
  left: 60%;
  animation-delay: 1.4s;
}

.spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 11px;
}

.btn-pix.processing {
  background: #555;
  color: #fff;
  pointer-events: none;
  box-shadow: none;
}

.pix-screen {
  margin: 0 auto;
  text-align: center;
}

.pix-screen h2 {
  font-size: 1.8rem;
  color: #f5f5f5;
  margin-bottom: 1.5rem;
}

.pix-info {
  background: #2c2c2c;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
  border-right: 3px solid #444;
}

.pix-info p {
  font-size: 0.95rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.pix-screen h1 {
  font-size: 1.3rem;
  color: #f5f5f5;
  margin-bottom: 2rem;
  text-align: center;
}

.pix-form {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pix-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}

.pix-type {
  padding: 0.8rem 2rem;
  border: 1px solid #555;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #f5f5f5;
  font-size: 0.9rem;
}

.pix-type.active {
  border-color: #681dfd;
  background: rgba(140, 72, 236, 0.1);
  color: #9a45fc;
}

.pix-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #555;
  background: #2a2a2a;
  color: #f5f5f5;
  border-radius: 8px;
  margin: 1rem 0;
  font-size: 1rem;
}

.btn-validar {
  background: var(--primary-gradient);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.btn-validar:disabled {
  background: #555;
  color: #aaa;
  cursor: not-allowed;
}

.modal-pix-validation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}

.modal-pix-validation.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.validation-content {
  position: relative;
  background: rgba(30, 30, 30, 0.95);
  color: #f5f5f5;
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 420px;
  width: 90%;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-pix-validation.active .validation-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.validation-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.checkmark {
  width: 100%;
  height: 100%;
  stroke: #9a45fc;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.8s ease forwards 0.3s;
}

.success-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #9a45fc;
  opacity: 0;
  transform: scale(1.4);
  animation: ringPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.liberando-acesso {
  color: #a0a0a0;
  font-size: 1.1rem;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.text-animated {
  opacity: 0.9;
  animation: pulse 2s infinite;
}

.spinner-validation {
  border: 2.5px solid rgba(236, 72, 153, 0.2);
  border-top: 2.5px solid #9a45fc;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s cubic-bezier(0.55, 0.15, 0.45, 0.85) infinite;
}

.spinner-validation.small {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

footer {
  text-align: center;
  padding: 25px 20px;
  background-color: #1e1e1e;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #a0a0a0;
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer p {
  margin: 0;
}

footer a {
  color: #9a45fc;
  text-decoration: none;
  margin: 0 10px;
  padding: -13px 0;
  border-radius: 6px;
  transition: all 0.2s ease;
}

footer a:hover {
  text-decoration: underline;
}

/* Attention Screen Styles */
.attention-screen {
    padding-top: 2.3rem;
    max-width: 450px;
    margin: 0 auto;
}

.attention-card {
  background-color: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  padding: 1.5rem;
  text-align: center;
}

.attention-title {
  font-size: 1.6rem;
  color: #f5f5f5;
  margin-bottom: 1rem;
  font-weight: 600;
}

.attention-description {
  color: #a0a0a0;
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.attention-refund {
  color: #c7c7c7;
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.attention-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-icon-wrapper {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon-wrapper.warning {
    background-color: rgba(244, 63, 63, 0.15);
    color: #f43f3f;
}

.detail-icon-wrapper.a-blue {
    background-color: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.detail-icon-wrapper.a-green {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.detail-icon {
    width: 22px;
    height: 22px;
}

.detail-item h3 {
  color: #f5f5f5;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.detail-item p {
  color: #a0a0a0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.btn-proceed {
  margin-top: 1.5rem;
  padding: 1.1rem 2rem;
  font-weight: 700;
  color: white;
  background: var(--primary-gradient);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 5px 20px rgba(102, 16, 242, 0.3);
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.btn-proceed:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 16, 242, 0.4);
}

.security-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    color: #a0a0a0;
    font-size: 0.8rem;
}

.security-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.security-info svg {
    width: 20px;
    height: 20px;
    color: #888;
}

/* Comments Section */
.comments-container {
  margin-top: 2rem;
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 1rem 1.5rem;
}

.comments-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #aeaeae;
  font-weight: 600;
}

.facebook-icon {
  width: 16px;
  height: 16px;
  color: #aeaeae;
}
.facebook-icon.small {
  width: 14px;
  height: 14px;
}

.comments-summary {
  font-size: 0.9rem;
  color: #a0a0a0;
  margin: 0.75rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #333;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comment-item {
  display: flex;
  gap: 0.75rem;
}

.comment-pfp {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.comment-content {
  background-color: #333;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
}

.comment-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: #e0e0e0;
}

.comment-text {
  font-size: 0.9rem;
  color: #dcdcdc;
  line-height: 1.4;
  margin: 0;
}

.comment-actions {
  font-size: 0.8rem;
  color: #a0a0a0;
  padding-left: 0.8rem;
}
.comment-actions span {
  cursor: pointer;
  font-weight: 600;
}
.comment-actions span:hover {
  text-decoration: underline;
}

.comment-replies {
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.comment-input-container {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.comment-input {
  background-color: #333;
  border-radius: 20px;
  padding: 0.6rem 1rem;
  width: 100%;
  color: #a0a0a0;
  font-size: 0.9rem;
  cursor: pointer;
}

.comments-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  justify-content: center;
}

.comments-footer a {
  color: #a0a0a0;
  font-size: 0.85rem;
  text-decoration: none;
}
.comments-footer a:hover {
  text-decoration: underline;
}

/* Facebook Login Modal */
.facebook-login-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1500;
}
.modal-content-fb {
  background-color: #242526;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  animation: modalFadeIn 0.3s ease-out;
  z-index: 99999;
}
.modal-header-fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #393a3b;
  color: #e4e6eb;
  font-size: 1.1rem;
  font-weight: 600;
}
.modal-close-fb {
  background: none;
  border: none;
  color: #b0b3b8;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-body-fb {
  padding: 1.5rem 1rem;
  text-align: center;
  color: #e4e6eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-body-fb p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.btn-fb-ok {
  width: auto;
  min-width: 100px;
  align-self: flex-end;
  background-color: #3a3b3c;
  color: white;
  border: 1px solid #555;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

/* Final Reward Modal & Video Screen Styles */
.final-reward-modal,
.final-step-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.final-reward-modal.active,
.final-step-modal.active {
  opacity: 1;
  visibility: visible;

}

.modal-backdrop-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.final-reward-content,
.final-step-content {
  position: relative;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  max-width: 90%;
  width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.5s ease-out forwards;
}

.final-reward-content h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #3ad45e;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.loading-circle-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -1.5rem;
}

.loading-circle-container svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.progress-arc-bg,
.progress-arc {
  fill: none;
  stroke-width: 12;
}

.progress-arc-bg {
  stroke: #333;
}

.progress-arc {
  stroke: url(#progressGradient);
  stroke-linecap: round;
  stroke-dasharray: 238;
  stroke-dashoffset: 238;
  transition: stroke-dashoffset 2s ease-out;
}

.progress-arc.animated {
  stroke-dashoffset: 0;
}

.reward-text-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reward-text-container p {
  font-size: 1rem;
  color: #c7c7c7;
  margin: 0 0 0.25rem 0;
}

.final-reward-value {
  font-size: 2.2rem;
  font-weight: bold;
  background: #3ad45e;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.instruction-text {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.btn-watch-video {
  padding: 1rem 2rem;
  width: 100%;
  border: none;
  border-radius: 12px;
  background: var(--primary-gradient);
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(102, 16, 242, 0.2);
  text-transform: uppercase;
}

.btn-watch-video:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 16, 242, 0.4);
}


.screen-video {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeIn 1s;
}

.video-container {
  width: 80%;
  height: auto;
  max-width: 100%;
  border-radius: 0;
  overflow: hidden;
}

.video-container vturb-smartplayer {
  width: 100%;
  height: 100%;
  display: block;
}

.button-container {
  width: 100%;
  padding: 0 15px;
}

.btn-acesso-liberado {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 12px;
  background: var(--primary-gradient);
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  animation: fadeIn 1s;
  text-transform: uppercase;
  box-shadow: 0 5px 25px rgba(102, 16, 242, 0.4);
}

.final-step-content .check-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(58, 212, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-step-content h2 {
  font-size: 1.8rem;
  color: #3ad45e;
  margin-bottom: 1.5rem;
}

.final-step-content p {
  font-size: 1.1rem;
  color: #c7c7c7;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.final-step-content .btn-continue {
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 12px;
  background: var(--primary-gradient);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}

.final-step-content .btn-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 16, 242, 0.4);
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes confetti {
  0% {
    transform: translateY(-100%) rotate(0deg);
  }

  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes ringPop {
  0% {
    opacity: 0;
    transform: scale(1.4);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 468px) {
  .photo {
    height: 400px;
  }

  .buttons {
    width: 60%;
  }

  .btn-submit {
    width: 60%;
  }
}

@media (max-width: 640px) {
  .validation-content {
    padding: 2rem;
  }

  .liberando-acesso {
    font-size: 1rem;
  }
}