/* ====== RESET ====== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ====== DESIGN SYSTEM TOKENS ====== */
:root {
  /* Núcleo institucional */
  --verde-acinzentado: #1b1e14;
  --verde-escuro: #2e4132;
  --fundo-claro: #f6f1ec;
  /* Marca It Pet */
  --laranja: #faaf40;
  --amarelo: #fedc15;
  --vermelho: #be1e2d;
  --preto: #000000;
  /* Editorial expandido */
  --marrom: #4d351a;
  --cobre: #9d7046;
  --vermelho-escuro: #8e2610;
  /* Escala CASA */
  --calma: #536c48;
  --ansiedade: #df931c;
  --stress: #d9611d;
  --aversao: #a11813;
  /* Auxiliares */
  --white: #ffffff;
  --text-body: #5a4a3a;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====== BODY ====== */
body {
  font-family: "Montserrat", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fundo-claro);
  color: var(--verde-acinzentado);
  text-align: center;
  overflow: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ====== ORGANIC BACKGROUND SHAPES ====== */
.shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite;
}
.shape-1 {
  width: 550px;
  height: 550px;
  background: var(--calma);
  top: -200px;
  left: -180px;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--laranja);
  bottom: -150px;
  right: -120px;
  animation-delay: 7s;
}
.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--cobre);
  top: 55%;
  left: 65%;
  opacity: 0.1;
  animation-delay: 3.5s;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.04);
  }
}

/* ====== DECORATIVE LINES ====== */
.line-deco {
  position: fixed;
  pointer-events: none;
  opacity: 0.06;
}
.line-deco-1 {
  width: 1px;
  height: 40vh;
  background: linear-gradient(to bottom, transparent, var(--verde-escuro), transparent);
  top: 10%;
  left: 15%;
}
.line-deco-2 {
  width: 1px;
  height: 30vh;
  background: linear-gradient(to bottom, transparent, var(--cobre), transparent);
  bottom: 5%;
  right: 20%;
}
.line-deco-3 {
  width: 25vw;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--verde-escuro), transparent);
  top: 75%;
  left: 5%;
}

/* ====== CARD / GLASS CONTAINER ====== */
.card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  padding: 64px 56px;
  max-width: 540px;
  width: 90%;
  box-shadow:
    0 24px 80px rgba(77, 53, 26, 0.08),
    0 2px 12px rgba(77, 53, 26, 0.04);
  animation: slideUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ====== LOGO ====== */
.logo-wrap {
  margin-bottom: 32px;
  animation: popIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.logo-wrap img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(77, 53, 26, 0.1));
}

/* ====== BADGE ====== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--verde-escuro);
  color: var(--fundo-claro);
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeIn 0.9s ease 0.4s both;
}
.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--calma);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* ====== DIVIDER ====== */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 28px;
  justify-content: center;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cobre));
}
.divider::after {
  background: linear-gradient(90deg, var(--cobre), transparent);
}
.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cobre);
  animation: pulse 2s ease-in-out infinite;
}

/* ====== TAGLINE — Libre Baskerville para emoção ====== */
h1 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  color: var(--verde-acinzentado);
  animation: fadeIn 0.9s ease 0.6s both;
}

h1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--verde-escuro);
  position: relative;
}

h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--laranja);
}

/* ====== SUBTITLE — Montserrat Light ====== */
p.sub {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 360px;
  margin: 0 auto;
  animation: fadeIn 0.9s ease 0.8s both;
}

/* ====== MANIFESTO LINE ====== */
.manifesto {
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cobre);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(157, 112, 70, 0.15);
  animation: fadeIn 0.9s ease 1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 600px) {
  .card {
    padding: 48px 32px;
    border-radius: 24px;
  }
  .logo-wrap img {
    width: 120px;
    height: 120px;
  }
}
