/* Core CSS System matching Demo 4 from Slink template */
:root {
  --bg-color: #ffffff;
  --text-main: #0a0a0a;
  --text-muted: rgba(0, 0, 0, 0.5);
  --yellow-accent: #f8fd89; /* Amarelo mais clarinho e elegante */
  --yellow-dark: #edf374;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Container */
.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 1rem;
  width: 100%;
}

/* Header */
.header {
  margin-bottom: 2rem;
  text-align: center;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
}

.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Hero Section */
.hero-section {
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin: auto 0;
}

/* Title Wrapper & Animated Characters */
.title-wrapper {
  position: relative;
  margin-bottom: 3.5rem;
  user-select: none;
}

.coming-soon-title {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 14vw, 9.5rem);
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #000;
}

.title-line {
  display: flex;
  justify-content: center;
  align-items: center;
}

.char {
  display: inline-block;
  position: relative;
  animation: charPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: scale(0.5);
}

/* Staggered animation effect for character letters */
.c1 { animation-delay: 0.1s; top: 12px; filter: drop-shadow(0 25px 25px rgba(220, 230, 80, 0.6)); z-index: 2; }
.c2 { animation-delay: 0.2s; top: 4px; z-index: 1; }
.c3 { animation-delay: 0.3s; top: 0px; z-index: 1; }
.c4 { animation-delay: 0.4s; top: 6px; z-index: 2; }
.c5 { animation-delay: 0.5s; top: -6px; z-index: 1; }
.c6 { animation-delay: 0.6s; top: 4px; z-index: 2; }
.c7 { animation-delay: 0.7s; top: -10px; z-index: 1; }

@keyframes charPop {
  0% {
    opacity: 0;
    transform: scale(0.4) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Rotating Yellow Marquee Ribbon */
.yellow-ribbon-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140vw;
  transform: translate(-50%, -50%) rotate(-5deg);
  z-index: 10;
  pointer-events: auto;
  overflow: hidden;
  background-color: var(--yellow-accent);
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.yellow-ribbon {
  display: flex;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 2.2vw, 1.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  animation: marquee 12s linear infinite;
  padding-left: 100%;
}

.dot {
  font-size: 0.8rem;
  opacity: 0.6;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Subtitle & Fade in elements */
.content-fade-in {
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
  transform: translateY(15px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Countdown Grid */
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  min-height: 80px;
}

@media (max-width: 600px) {
  .countdown-grid {
    gap: 1.2rem;
  }
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  color: #000;
}

.time-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
  font-weight: 600;
}

/* About Section */
.about-container {
  max-width: 480px;
  margin: 0 auto;
}

.divider {
  width: 2.5rem;
  border: none;
  border-top: 1.5px solid rgba(0, 0, 0, 0.15);
  margin: 0 auto 2rem auto;
}

.about-title {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 1.8rem;
}

/* Instagram Button Container & Prominent Styling */
.instagram-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.4rem;
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.instagram-button:hover {
  transform: translateY(-2px) scale(1.03);
  background-color: #000000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--yellow-accent);
}

.instagram-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.instagram-button:hover svg {
  transform: scale(1.15) rotate(-5deg);
}
