@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

body {
  background-image: url("bg.jpg");
  background-size: cover;         /* Faz a imagem cobrir toda a área */
  background-repeat: no-repeat;   /* Não repete a imagem */

  min-height: 100vh;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: normal;
}

a {
  text-decoration: none;
}

.metrics-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
}

.metrics-container {
  display: flex;
  flex-direction: row;
  background: linear-gradient(180deg, #24407a 0%, #18305a 100%);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  padding: 32px 48px;
  gap: 32px;
  align-items: center;
}

.metric-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.metric-value {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.metric-label {
  color: #e0e6f6;
  font-size: 1rem;
  margin-top: 4px;
  font-weight: 400;
}

.metric-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.18);
  border-radius: 1px;
}

@media (max-width: 900px) {
  .metrics-container {
    flex-direction: column;
    gap: 16px;
    padding: 24px 12px;
  }
  .metric-divider {
    width: 80%;
    height: 1px;
    margin: 8px 0;
  }
}
