/* Fonts */
@font-face {
  font-family: 'Made Sunflower';
  src: url('../fonts/made_sunflower/MadeSunflower.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../fonts/avenir-lt-pro/AvenirLTProLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir LT Pro';
  src: url('../fonts/avenir-lt-pro/AvenirLTProBook.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Avenir LT Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  background-color: #0a0a0a;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background */
.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-image: url('../assets/QUARTZO_2026_.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

/* Vignette */
.container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

/* Content */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  width: 100%;
  padding: 0 1rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.symbol {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
}

.name {
  width: 200px;
  height: auto;
}

/* Info */
.info {
  margin-bottom: 2rem;
}

.date {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.25rem;
}

.location {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.75);
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 2.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.countdown-value {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.countdown-label {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 300;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
}

.countdown-separator {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

.cta-primary {
  margin-bottom: 2.5rem;
  padding: 1.125rem 3.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-primary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Trailer Button */
.trailer-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 2.5rem;
}

.trailer-button:hover {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
}

.trailer-icon {
  font-size: 0.5rem;
  opacity: 0.7;
}

/* Cards */
.card {
  width: 100%;
  max-width: 540px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

.card-label {
  display: block;
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 400;
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  text-align: center;
}

.card-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 auto 1.25rem auto;
}

.card-text {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  text-align: center;
}

.card-text:last-of-type {
  margin-bottom: 0;
}

.card-text-small {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.card-highlight {
  font-family: 'Made Sunflower', serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.25rem;
  text-align: center;
}

.card-info-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.card-info-label {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 400;
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.card-info-value {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Pillars */
.pillars {
  width: 100%;
  max-width: 540px;
  margin-bottom: 2rem;
}

.pillars-title {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 400;
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 1.25rem;
}

.pillar {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  border-left: 3px solid;
  text-align: left;
}

.pillar:last-child {
  margin-bottom: 0;
}

.pillar-vivencias {
  border-left-color: #8BBCB1;
}

.pillar-experiencias {
  border-left-color: #D9C87A;
}

.pillar-celebracao {
  border-left-color: #9B7BB5;
}

.pillar-name {
  font-family: 'Made Sunflower', serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem;
}

.pillar-vivencias .pillar-name {
  color: #8BBCB1;
}

.pillar-experiencias .pillar-name {
  color: #D9C87A;
}

.pillar-celebracao .pillar-name {
  color: #9B7BB5;
}

.pillar-desc {
  font-family: 'Avenir LT Pro', sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.7);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
}

.social-link svg {
  width: 100%;
  height: 100%;
}

/* Responsive - Desktop Large */
@media (min-width: 1024px) {
  .content {
    max-width: 900px;
  }

  .card {
    max-width: 700px;
    padding: 2.5rem 3rem;
  }

  .card-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .pillars {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .pillars-title {
    width: 100%;
    margin-bottom: 1rem;
  }

  .pillar {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
  }

  .cta-primary {
    padding: 1.25rem 4rem;
    font-size: 0.8125rem;
  }
}

/* Responsive - Desktop Extra Large */
@media (min-width: 1400px) {
  .content {
    max-width: 1000px;
  }

  .card {
    max-width: 800px;
  }

  .pillars {
    max-width: 900px;
  }
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .container {
    padding: 2rem 1.5rem;
  }

  .countdown {
    gap: 0.35rem;
  }

  .countdown-item {
    min-width: 45px;
  }

  .countdown-value {
    font-size: 0.9rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .container {
    padding: 1.5rem 1rem;
    background-attachment: scroll;
  }

  .symbol {
    width: 45px;
  }

  .name {
    width: 140px;
  }

  .logo {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .info {
    margin-bottom: 1.5rem;
  }

  .date {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
  }

  .location {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  .countdown {
    gap: 0.25rem;
    margin-bottom: 1.5rem;
  }

  .countdown-item {
    min-width: 38px;
  }

  .countdown-value {
    font-size: 0.875rem;
  }

  .countdown-label {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }

  .countdown-separator {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .cta-button {
    padding: 0.875rem 2.5rem;
    font-size: 0.6875rem;
  }

  .cta-primary {
    margin-bottom: 2rem;
  }

  .card {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
  }

  .card-text {
    font-size: 0.875rem;
  }

  .card-highlight {
    font-size: 1.125rem;
  }

  .card-info-row {
    gap: 1.5rem;
  }

  .pillars {
    margin-bottom: 1.5rem;
  }

  .pillar {
    padding: 1rem 1.25rem;
  }

  .pillar-name {
    font-size: 0.9375rem;
  }

  .pillar-desc {
    font-size: 0.75rem;
  }

  .social-links {
    margin-top: 1.5rem;
    gap: 1.25rem;
  }

  .social-link {
    width: 24px;
    height: 24px;
  }
}

/* Responsive - Small Mobile (iPhone SE, etc) */
@media (max-width: 360px) {
  .container {
    padding: 1.25rem 0.75rem;
  }

  .symbol {
    width: 40px;
  }

  .name {
    width: 120px;
  }

  .countdown-item {
    min-width: 32px;
  }

  .countdown-value {
    font-size: 0.75rem;
  }

  .countdown-separator {
    font-size: 0.75rem;
  }

  .cta-button {
    padding: 0.75rem 2rem;
    font-size: 0.625rem;
  }

  .card {
    padding: 1rem 1.25rem;
  }

  .card-text {
    font-size: 0.8125rem;
  }

  .card-highlight {
    font-size: 1rem;
  }

  .card-info-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .pillar {
    padding: 0.875rem 1rem;
  }

  .pillar-name {
    font-size: 0.875rem;
  }

  .pillar-desc {
    font-size: 0.6875rem;
    line-height: 1.5;
  }
}

/* Staggered Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.symbol,
.name,
.info,
.countdown,
.cta-primary,
.trailer-button,
.card,
.pillars,
.social-links {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.symbol {
  animation-delay: 0s;
}

.name {
  animation-delay: 0.15s;
}

.info {
  animation-delay: 0.3s;
}

.countdown {
  animation-delay: 0.45s;
}

.cta-primary {
  animation-delay: 0.6s;
}

.trailer-button {
  animation-delay: 0.75s;
}

.card:nth-of-type(1) {
  animation-delay: 0.9s;
}

.pillars {
  animation-delay: 1.05s;
}

.card:nth-of-type(2) {
  animation-delay: 1.2s;
}

.social-links {
  animation-delay: 1.35s;
}

