@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Suporte para fonte Marvinea / Mavinea (arquivos locais na mesma pasta) */
@font-face {
  font-family: 'Marvinea';
  src: url('Marvinea.woff2?v=1.1') format('woff2'),
       url('Marvinea.woff?v=1.1') format('woff'),
       url('Marvinea.otf?v=1.1') format('opentype'),
       url('Marvinea.ttf?v=1.1') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mavinea';
  src: url('Mavinea.woff2?v=1.1') format('woff2'),
       url('Mavinea.woff?v=1.1') format('woff'),
       url('Mavinea.otf?v=1.1') format('opentype'),
       url('Mavinea.ttf?v=1.1') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Cores Temáticas de Luxo (Teal/Emerald Corporativo) */
  --bg-dark: #040909;
  --bg-card: rgba(8, 20, 20, 0.65);
  --border-color: rgba(45, 212, 191, 0.12);
  --border-focus: rgba(45, 212, 191, 0.6);
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 50%, #0d9488 100%);
  --gradient-text: linear-gradient(135deg, #ffffff 10%, #ccfbf1 60%, #2dd4bf 100%);
  --gradient-glow: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
  
  /* Cores de Texto */
  --text-main: #f0fdfa;
  --text-muted: #9cc3c0;
  --text-dim: #5c8481;
  --accent: #2dd4bf;
  
  /* Efeitos e Sombras */
  --glow-teal: 0 0 40px rgba(20, 184, 166, 0.2);
  --glow-panel: 0 10px 40px rgba(4, 9, 9, 0.8), 0 0 30px rgba(20, 184, 166, 0.1);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Tipografia */
  --font-logo: 'Marvinea', 'Mavinea', 'Cinzel', serif;
  --font-title: 'Marvinea', 'Mavinea', 'Cinzel', serif;
  --font-body: 'Poppins', sans-serif;
}

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow: hidden;
}

/* Background Canvas */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: all;
}

/* Camada de Brilho de Fundo Teal */
.bg-glow-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(20, 184, 166, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(13, 148, 136, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(4, 9, 9, 1) 0%, rgba(2, 6, 6, 1) 100%);
  z-index: 0;
}

/* Layout Principal */
.app-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem;
  z-index: 10;
  overflow-y: auto;
  scrollbar-width: none;
}

.app-container::-webkit-scrollbar {
  display: none;
}

/* Cabeçalho */
header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeInDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Estrutura de Logotipo da Imagem Oficial */
.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.logo-image {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(45, 212, 191, 0.1));
  transition: var(--transition-smooth);
}

.logo-container:hover .logo-image {
  transform: scale(1.02);
  filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.35));
}

/* Badge de Status */
.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 184, 166, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulseDot 2s infinite;
}

/* Conteúdo Central */
main {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto 0;
  padding: 2.5rem 0;
}

.launch-badge {
  display: inline-flex;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.08), rgba(13, 148, 136, 0.08));
  border: 1px solid rgba(20, 184, 166, 0.2);
  padding: 0.4rem 1.4rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Frase em Destaque */
.main-title {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.8rem;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.main-title span {
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.main-title span::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: drawLine 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

/* Descrição Fina */
.description {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 3.5rem;
  font-weight: 300;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Bloco de Frases da Marca (Layout de Luxo) */
.brand-taglines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 4rem;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  transition: var(--transition-smooth);
}

.tagline-item {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.28rem);
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.6;
  transition: var(--transition-smooth);
  cursor: default;
}

/* Micro-interatividade interativa (Wow Factor) */
.brand-taglines:hover .tagline-item {
  opacity: 0.45;
}

.brand-taglines .tagline-item:hover {
  opacity: 1;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(45, 212, 191, 0.45);
  transform: translateY(-1px) scale(1.02);
}

/* Emblema Certificado Gallup CliftonStrengths */
.gallup-cred {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(45, 212, 191, 0.04);
  border: 1px solid rgba(45, 212, 191, 0.18);
  padding: 0.5rem 1.6rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-top: 1.8rem;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(4, 9, 9, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.gallup-cred:hover {
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 0 25px rgba(45, 212, 191, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

.arrow-indicator {
  color: var(--accent);
  font-size: 0.85rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.gallup-cred:hover .arrow-indicator {
  transform: translateX(3px);
  color: #ffffff;
}

/* Painel de Contato Glassmorphic */
.interactive-panel {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--glow-panel);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
  transition: var(--transition-smooth);
}

.interactive-panel:hover {
  border-color: rgba(45, 212, 191, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(4, 9, 9, 0.8), 0 0 35px rgba(20, 184, 166, 0.15);
}

/* Layout de Contato Sem Caixa de Inserção */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.contact-email {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  transition: var(--transition-smooth);
}

.contact-email::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.contact-email:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

.contact-email:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
  background-color: #ffffff;
}

/* Rodapé */
footer {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  border-top: 1px solid rgba(45, 212, 191, 0.04);
  padding-top: 2rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  color: var(--text-dim);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon:hover {
  color: var(--accent);
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(20, 184, 166, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.15);
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Animações CSS */
@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.6);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(45, 212, 191, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0);
  }
}

@keyframes drawLine {
  to {
    transform: scaleX(1);
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 640px) {
  .app-container {
    padding: 2rem 1rem;
  }
  
  header {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  
  .logo-container {
    justify-content: center;
  }
  
  .logo-image {
    height: 42px;
  }
  
  .interactive-panel {
    padding: 1.5rem 1.25rem;
  }
  
  .contact-email {
    font-size: 1rem;
  }
}
