:root {
  --bg: #0a0a0a;
  --fg: #f5f5f5;
  --card: #131110;
  --border: #2a2320;
  --muted: #a39a94;
  --primary: #e07a35;
  --primary-glow: #f0a259;
  --gradient: linear-gradient(135deg, #d9662a, #f2a95f);
  --glow: 0 0 24px -4px rgba(224, 122, 53, 0.45);
  --glow-lg: 0 0 60px -10px rgba(224, 122, 53, 0.45);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand,
.kicker,
.section-kicker,
.btn,
.tags li,
.soon-title,
figcaption {
  font-family: "Chakra Petch", system-ui, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 1.5rem;
}

.container.narrow {
  max-width: 780px;
}

.muted {
  color: var(--muted);
}
.small {
  font-size: 0.9rem;
}
.xs {
  font-size: 0.78rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 520px;
  max-width: 120vw;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.16;
  filter: blur(120px);
  pointer-events: none;
}

.avatar {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0 auto 2.5rem;
}

.avatar-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.55;
  filter: blur(18px);
}

.avatar img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: var(--glow-lg);
}

h1 {
  font-size: clamp(2.8rem, 10vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.kicker {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero .small {
  margin-top: 0.9rem;
}

/* BOTÕES */
.btn {
  display: inline-block;
  margin-top: 2.4rem;
  padding: 1rem 2.3rem;
  border-radius: 999px;
  background: var(--gradient);
  color: #1a0e05;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  animation: pulseGlow 2.8s ease-in-out infinite;
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: scale(1.03);
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 18px -6px rgba(224, 122, 53, 0.45);
  }
  50% {
    box-shadow: 0 0 34px -2px rgba(240, 162, 89, 0.7);
  }
}

/* SEÇÕES */
.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--primary-glow);
  margin-bottom: 0.9rem;
}

h2 {
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.prose p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.2rem;
}

.tags li {
  border: 1px solid rgba(224, 122, 53, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-glow);
}

/* GALERIA */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-img {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.card-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-img:hover {
  border-color: var(--primary);
  box-shadow: var(--glow);
}

.card-img:hover img {
  transform: scale(1.08);
}

/* EM BREVE */
.soon {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 2.6rem 1.5rem;
  text-align: center;
}

.soon-title {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-glow);
  margin-bottom: 0.5rem;
}

/* DEPOIMENTOS */
.quote {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1.9rem;
}

.stars {
  color: var(--primary-glow);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.quote blockquote {
  margin: 1.2rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* BANNER AGENDA */
.banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224, 122, 53, 0.5);
  border-radius: 18px;
  background: var(--card);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--glow-lg);
}

.banner-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.14;
  filter: blur(60px);
}

.banner-inner {
  position: relative;
}

.banner h2 {
  margin: 1.2rem auto 1.2rem;
  max-width: 22ch;
}

.banner .small {
  max-width: 46ch;
  margin: 0 auto;
}

/* RODAPÉ */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem;
  text-align: center;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.social {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin: 1.8rem 0 2.5rem;
}

.social a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.social a:hover {
  color: var(--primary-glow);
}

/* FAB */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #1a0e05;
  animation: pulseGlow 2.8s ease-in-out infinite;
  transition: transform 0.25s ease;
}

.fab:hover {
  transform: scale(1.1);
}

/* ANIMAÇÕES DE ENTRADA */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .fab {
    animation: none;
  }
}
