@import url("https://use.typekit.net/mfs5pal.css");

/* ===============================
   VARIÁVEIS DE ESTAÇÃO
=============================== */
:root{
  --logo-tint: rgba(90, 110, 160, 0.55); /* muda só isto noutra estação */
  --titulo-color: #1f2f4a;
  --texto-escuro: #2f3a55;
}

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

/* ===============================
   BASE
=============================== */
body{
  font-family: "calibri", sans-serif;
  width: 100%;
  min-height: 100vh;

  background:
    radial-gradient(
      1200px 800px at 50% 20%,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(235, 240, 248, 0.65) 40%,
      rgba(200, 215, 235, 0.35) 70%,
      rgba(170, 190, 220, 0.25) 100%
    ),
    linear-gradient(
      180deg,
      #f3f6fb 0%,
      #dbe3f0 45%,
      #bccae0 100%
    );

  background-size: 200% 200%;
  animation: winterFlow 10s ease-in-out infinite;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: var(--texto-escuro);
}

/* ===============================
   HEADER
=============================== */
header{
  width: 100%;
  height: 220px;

  display: flex;
  justify-content: center;
  align-items: center;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f0f3f8 60%,
      rgba(240,243,248,0) 100%
    );
}

/* LOGO */
.logo{
  width: 150px;
  height: 150px;
  border-radius: 50%;

  position: relative;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow:
    0 16px 36px rgba(0,0,0,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.6);
}

/* SVG / IMG da logo */
.logo img{
  width: 75%;
  height: auto;
  z-index: 1;
}

/* OVERLAY DE COR (controlado por variável) */
.logo::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--logo-tint);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ===============================
   TÍTULO
=============================== */
.titulo-verao{
  width: 100%;
  height: 220px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  font-family: "rockwell-nova", serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;

  color: var(--titulo-color);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.6) 0%,
      rgba(220,230,245,0.75) 100%
    );
}

/* ===============================
   SEÇÕES
=============================== */
section{
  width: 100%;
  padding: 44px 1rem;

  display: flex;
  flex-direction: column;
  align-items: center;
}

section h2{
  font-family: "rockwell-nova", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--texto-escuro);
  margin-bottom: 22px;
}

/* ===============================
   BOTÕES – VIDRO / GELO
=============================== */
.botao{
  width: min(360px, 85vw);
  min-height: 68px;
  padding: 14px 22px;

  margin: 0 auto;

  background:
    radial-gradient(
      800px 400px at 50% 0%,
      rgba(255,255,255,0.95) 0%,
      rgba(245,248,252,0.7) 45%,
      rgba(220,230,245,0.3) 75%,
      rgba(200,215,235,0.1) 100%
    ),
    linear-gradient(
      180deg,
      #eef3fa 0%,
      #cfdbee 50%,
      #b7c7e2 100%
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  font-size: 18px;
  color: #3a2f5f;
  text-decoration: none;

  box-shadow:
    0 14px 32px rgba(0,0,0,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.35);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ESPAÇO ENTRE BOTÕES (o ponto crítico) */
.botao + .botao{
  margin-top: 18px;
}

.botao:hover{
  transform: translateY(-2px);
  box-shadow:
    0 20px 42px rgba(0,0,0,0.22),
    inset 0 0 0 1px rgba(255,255,255,0.45);
}

/* ===============================
   RODAPÉ
=============================== */
footer{
  width: 100%;
  padding: 60px 1rem 110px; /* espaço extra para cookie */

  text-align: center;
  font-size: 16px;
  line-height: 1.6;

  color: var(--texto-escuro);

  background:
    linear-gradient(
      180deg,
      rgba(200,215,235,0.55) 0%,
      rgba(180,200,225,0.75) 100%
    );
}

footer strong{
  font-family: "rockwell-nova", serif;
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}

footer .credito{
  margin-top: 28px;
  font-size: 15px;
  color: #4a4a6a;
}

/* ===============================
   ANIMAÇÃO
=============================== */
@keyframes winterFlow{
  0%{
    background-position: 50% 0%;
  }
  50%{
    background-position: 50% 100%;
  }
  100%{
    background-position: 50% 0%;
  }
}
