﻿:root {
  color-scheme: dark;
  --bg: #0e0e1a;
  --bg-shade: #121229;
  --accent: #1d1833;
  --text: #1d1833;
  --muted: #1d1833;
  --button-text: #1d1833;
  --button-bg: #c5a3ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-image: url('../images/fundo.webp');
  background-color: var(--bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--text);
}

.page-shell {
  position: relative;
  min-height: 100vh;
  padding: 12px 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eyebrow {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-family: 'Comfortaa', cursive;
  color: var(--text);
}

.subtext {
  margin: 0;
  font-family: 'Gravitica Mono Icon Regular', 'Space Mono', monospace;
  color: var(--text);
  font-size: 0.95rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 2px;
}

.social-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: transform 0.28s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
}

.social-icon i,
.social-icon img {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}

.logo-section,
.logo-below-section {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.logo-fic {
  width: min(280px, 38vw);
  max-width: 100%;
  height: auto;
}

.hero-section {/
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 0 0px;
  z-index: 1;
}


.btn {
  border: none;
  cursor: pointer;
  font: inherit;
}

.btn-login {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(197, 163, 255, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(197, 163, 255, 0.28);
}

.hero-section {
  position: relative;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: auto;
  padding: 0;
  z-index: 1;
}


.notice {
  margin: 0 0 8px;
  font-family: 'Neuzeit S LT Std Book', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 0 20px rgba(29, 24, 51, 0.16);
}

.notice-secondary {
  margin: 18px auto 0;
  max-width: 740px;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: #1d1833;
  text-transform: none;
  letter-spacing: 0.04em;
}

.logo {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.logo-fic {
  width: min(200px, 38vw);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.24));
}

.hero-main-logo {
  display: block;
  width: min(180px, 32vw);
  max-width: 100%;
  height: auto;
  margin: 24px auto 0;
}

.hero-logo {
  display: grid;
  gap: 8px;
  align-items: center;
  justify-items: center;
}

@media (max-width: 768px) {
  .page-shell {
    align-items: center;
    padding: 16px 16px 24px;
  }

  .site-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .brand-group {
    align-items: center;
    text-align: center;
  }

  .header-actions {
    justify-content: center;
    width: 100%;
  }

  .social-links {
    justify-content: center;
  }

  .hero-section {
    width: 100%;
    padding: 0;
  }

  .logo-below-section {
    width: 100%;
  }
}

.hero-logo-mark {
  color: var(--text);
  text-shadow: 0 0 28px rgba(29, 24, 51, 0.28);
}

.hero-logo-script {
  font-family: 'Sacramento', cursive;
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
  color: var(--text);
  text-shadow: 0 0 12px rgba(29, 24, 51, 0.1);
}

.hero-logo-tagline {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}


@media (max-width: 860px) {
  .page-shell {
    padding: 28px 22px 40px;
  }

  .hero-copy {
    padding: 30px 24px;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .social-links {
    justify-content: center;
    width: auto;
    gap: 8px;
  }

  .social-icon {
    width: 52px;
    height: 52px;
  }

  .social-icon img {
    width: 36px;
    height: 36px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-logo-mark {
    font-size: 4.4rem;
  }

  .hero-logo-script {
    font-size: 3rem;
  }
}
