/*
 * Jumb Website - Coming Soon Page
 * Página temporária "Em Breve"
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0D1B2A 0%, #1B263B 50%, #0D4F5F 100%);
  min-height: 100vh;
  color: #FFFFFF;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Background Animation */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.background__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.background__shape--1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #0066CC, #00C8A0);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.background__shape--2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #00C8A0, #0066CC);
  bottom: -100px;
  right: -100px;
  animation-delay: -5s;
}

.background__shape--3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #FF6B35, #FFB74D);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  opacity: 0.15;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(-30px, -20px) scale(1.02);
  }
}

/* Container */
.container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-bottom: 1rem;
  text-align: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
}

.logo__icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 102, 204, 0.3);
}

.logo__text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FFFFFF 0%, #00C8A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content */
.content {
  max-width: 700px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.4);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFB74D;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge__icon {
  width: 18px;
  height: 18px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Heading */
.heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heading__highlight {
  background: linear-gradient(135deg, #00C8A0 0%, #0066CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

/* Features List */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 200, 160, 0.4);
  transform: translateY(-2px);
}

.feature__icon {
  width: 20px;
  height: 20px;
  color: #00C8A0;
}

/* Newsletter Form */
.newsletter {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.newsletter__title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.newsletter__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter__input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter__input:focus {
  outline: none;
  border-color: #00C8A0;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter__btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.newsletter__btn-icon {
  width: 20px;
  height: 20px;
}

/* Success Message */
.newsletter__success {
  display: none;
  padding: 1rem;
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.4);
  border-radius: 12px;
  color: #81C784;
  margin-top: 1rem;
}

.newsletter__success.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

/* Social Links */
.social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social__link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #00C8A0;
  color: #00C8A0;
  transform: translateY(-3px);
}

.social__icon {
  width: 24px;
  height: 24px;
}

/* Footer */
.footer {
  position: relative;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  animation: fadeInUp 1s ease-out 1.2s both;
  margin-top: auto;
  z-index: 1;
}

.footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00C8A0;
}

/* Countdown (optional) */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.45s both;
}

.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown__value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 0%, #00C8A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .logo__icon {
    width: 60px;
    height: 60px;
  }

  .logo__text {
    font-size: 2.5rem;
  }

  .heading {
    font-size: 2.5rem;
  }

  .description {
    font-size: 1rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown__value {
    font-size: 2rem;
  }

  .newsletter {
    padding: 1.5rem;
  }

  .newsletter__input {
    min-width: 100%;
  }

  .newsletter__btn {
    width: 100%;
    justify-content: center;
  }

  .features {
    gap: 0.75rem;
  }

  .feature {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .social {
    margin-bottom: 1rem;
  }

  .footer {
    padding: 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 0.5rem;
  }

  .logo {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .logo__icon {
    width: 50px;
    height: 50px;
  }

  .logo__text {
    font-size: 2rem;
  }

  .badge {
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .features {
    margin-bottom: 2rem;
    gap: 0.5rem;
  }

  .feature {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .feature__icon {
    width: 16px;
    height: 16px;
  }

  .newsletter {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .newsletter__title {
    font-size: 1rem;
  }

  .newsletter__text {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .newsletter__input {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .newsletter__btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .social {
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .social__link {
    width: 44px;
    height: 44px;
  }

  .social__icon {
    width: 20px;
    height: 20px;
  }

  .countdown__value {
    font-size: 1.5rem;
  }

  .countdown__label {
    font-size: 0.65rem;
  }

  .footer {
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
  }
}

/* Particles effect */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 200, 160, 0.5);
  border-radius: 50%;
  animation: rise 10s linear infinite;
}

@keyframes rise {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 11s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 9s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 10s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 12s; }
.particle:nth-child(10) { left: 95%; animation-delay: 3s; animation-duration: 11s; }
