* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #80451b;
}

@media (min-width: 768px) {
  .page-container {
    padding: 2rem;
  }
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  text-align: center;
  width: 90%;
  max-width: 340px;
}

@media (min-width: 640px) {
  .glass-card {
    padding: 1.75rem;
    max-width: 440px;
    border-radius: 32px;
  }
}

@media (min-width: 768px) {
  .glass-card {
    padding: 2.5rem;
  }
}

/* Profile Container */
.profile-container {
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

@media (min-width: 640px) {
  .profile-container {
    margin-bottom: 1.5rem;
  }
}

.logo-animation {
  width: 120px;
  height: 120px;
  background: #FAF3E8;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #F5B820;
  animation: logo-pulse 4s ease-in-out infinite;
}

@media (min-width: 640px) {
  .logo-animation {
    width: 140px;
    height: 140px;
  }
}

@media (min-width: 768px) {
  .logo-animation {
    width: 160px;
    height: 160px;
  }
}

@keyframes logo-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
  50% { transform: scale(1.03); box-shadow: 0 30px 60px -12px rgba(245, 184, 32, 0.4); }
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Header Content */
.header-content {
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .header-content {
    margin-bottom: 2rem;
  }
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgb(255 243 205);
  color: rgb(161 98 7);
  font-size: 9px;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .badge {
    font-size: 10px;
  }
}

.title {
  font-size: 1.25rem;
  font-weight: 800;
  color: rgb(15 23 42);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .title {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .title {
    font-size: 1.875rem;
  }
}

.description {
  color: rgb(71 85 105);
  font-size: 12px;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .description {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .description {
    font-size: 16px;
  }
}

/* Features Showcase */
.features-showcase {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .features-showcase {
    margin-bottom: 2rem;
    min-height: 160px;
  }
}

.feature-slide {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.feature-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #F5B820 0%, #DAA520 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 20px -4px rgba(245, 184, 32, 0.4);
}

@media (min-width: 640px) {
  .feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }
}

.feature-icon-lg {
  width: 28px;
  height: 28px;
  color: white;
}

@media (min-width: 640px) {
  .feature-icon-lg {
    width: 32px;
    height: 32px;
  }
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: rgb(15 23 42);
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .feature-title {
    font-size: 16px;
  }
}

.feature-desc {
  font-size: 12px;
  color: rgb(100 116 139);
}

@media (min-width: 640px) {
  .feature-desc {
    font-size: 13px;
  }
}

/* Dots Indicator */
.feature-dots {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(203 213 225);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #F5B820;
  width: 24px;
  border-radius: 4px;
}

.dot:hover {
  background: rgb(148 163 184);
}

.dot.active:hover {
  background: #DAA520;
}

/* Social Proof Notifications */
.social-proof-container {
  margin-bottom: 1.5rem;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 251, 235, 0.8);
  border: 1px solid rgb(255, 243, 205);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  animation: notification-slide 0.5s ease-out;
}

@keyframes notification-slide {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.notification-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5B820, #DAA520);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-avatar::after {
  content: '';
  width: 10px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 11px;
}

@media (min-width: 640px) {
  .notification-content {
    font-size: 12px;
  }
}

.notification-name {
  font-weight: 700;
  color: rgb(51, 65, 85);
}

.notification-text {
  color: rgb(100, 116, 139);
}

.notification-time {
  font-size: 10px;
  color: rgb(34, 197, 94);
  font-weight: 600;
}

/* CTA Button */
.cta-container {
  position: relative;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-container {
    margin-bottom: 2rem;
  }
}

.btn-cta {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(to bottom right, rgb(34 197 94), rgb(16 185 129));
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 10px 25px -5px rgba(34, 197, 94, 0.4);
  animation: btn-pulse 2s infinite;
}

@media (min-width: 640px) {
  .btn-cta {
    padding: 1.5rem 1rem;
    font-size: 1.125rem;
  }
}

.btn-cta:hover {
  transform: scale(1.05);
}

.btn-cta:active {
  transform: scale(0.95);
}

@keyframes btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.whatsapp-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
}

/* Urgency Section */
.urgency-section {
  background: rgba(255 251 235 / 0.5);
  border: 1px solid rgb(255 243 205);
  border-radius: 1rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .urgency-section {
    padding: 1rem;
  }
}

.urgency-text {
  display: flex;
  align-items: center;
  color: rgb(161 98 7);
  font-weight: 700;
  font-size: 12px;
}

@media (min-width: 640px) {
  .urgency-text {
    font-size: 14px;
  }
}

.users-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.vagas-number {
  color: #F5B820;
  margin: 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 800;
}

@media (min-width: 640px) {
  .vagas-number {
    font-size: 1.25rem;
  }
}

.progress-bar {
  width: 100%;
  max-width: 200px;
  height: 0.375rem;
  background-color: rgb(254 240 138);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 70%;
  background: linear-gradient(to right, #F5B820, rgb(202 138 4));
  border-radius: 9999px;
}

.urgency-subtitle {
  color: rgb(71 85 105);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .urgency-subtitle {
    font-size: 12px;
  }
}
body {
  margin: 0;
  background: #80451b;

  display: flex;
  justify-content: center;
}

/* CARD PRINCIPAL */
.card {
  width: 100%;
  max-width: 420px; /* 🔥 trava o tamanho bonito */
  min-height: 100vh; /* ocupa altura toda */
  
  background: #e9e5e1;
  border-radius: 25px;
  padding: 20px;
}
h1 {
  font-size: clamp(22px, 5vw, 28px);
}

p {
  font-size: clamp(14px, 3.5vw, 16px);
}