@font-face {
  font-family: "Times New Roman MT Condensed";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://loveenalab.com.br/wp-content/uploads/2026/04/TimesNewRomanMT-CondItalic.woff2") format("woff2");
}

* {
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --bg-soft: #f4f4f4;
  --green-dark: #084a02;
  --green-mid: #95ba84;
  --green-top-1: #9cb984;
  --green-top-2: #dcfac4;
  --cream: #faf2df;
  --text: #393939;
  --line: #c3c3c3;
  --button-shadow: -6px 5px 15px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  max-height: 100vh;
  height: calc(100vh - 40px);
}

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

.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, var(--green-top-1) 0%, var(--green-top-2) 100%);
  height: 40px;
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 12px 0;
  animation: ticker var(--ticker-duration, 35s) linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  flex-shrink: 0;
}

.ticker-track span {
  flex: 0 0 auto;
  color: rgba(36, 57, 35, 0.72);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 24px;
}

.hero-shell a span {
  font-weight: bold;
  text-decoration: none;
  color: var(--text);
}

.hero-shell a span:hover  {
  text-decoration: underline;
  cursor: pointer;
  color: var(--green-dark);
}


.hero {
  width: min(1180px, calc(100% - 100px));
  margin: 0 auto;
  padding: 35px 0 50px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand {
  width: min(249px, 46%);
}

.divider {
  width: 68%;
  max-width: 380px;
  height: 1.5px;
  margin: 15px 0 18px;
  background: var(--line);
}

.eyebrow {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.hero-copy h1 {
  margin: 8px 0 0;
  color: var(--green-dark);
  font-family: "Times New Roman MT Condensed", "Times New Roman", serif;
  font-size: clamp(64px, 6vw, 82px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -5px;
  line-height: 0.96;
}

.event-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(82%, 430px);
  margin-top: 10px;
  padding: 10px;
  background: var(--green-mid);
}

.event-pill span {
  color: var(--cream);
  font-size: 18px;
  font-weight: 500;
}

.description,
.highlight {
  width: min(90%, 478px);
  font-size: 18px;
  letter-spacing: -1.2px;
  line-height: 1.55;
}

.description {
  margin: 22px 0 0;
}

.highlight {
  margin: -2px 0 0;
  color: var(--green-dark);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  padding: 25px 50px;
  border: 0;
  border-radius: 24px;
  background-color: transparent;
  background-image: linear-gradient(to right, #9cb984, #dcfac4, #b8e89a, #9cb984);
  background-size: 200% 100%;
  box-shadow: var(--button-shadow);
  color: #172e26;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: gradient-flow 4s linear infinite;
}

.btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(100, 160, 80, 0.35);
}

.arrow {
  font-size: 28px;
  line-height: 1;
}

.hero-visual {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.hero-photo {
  width: min(100%, 768px);
  height: auto;
}

@keyframes ticker {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes gradient-flow {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 1024px) {
  .hero {
    width: min(100% - 48px, 1180px);
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0 42px;
  }

  .hero-copy,
  .hero-visual {
    justify-self: center;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-visual {
    margin-top: -42px;
  }
}

@media (max-width: 767px) {
  .ticker-track {
    padding: 10px 0;
  }

  .ticker-group {
    gap: 22px;
    padding-right: 22px;
  }

  .ticker-track span {
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .hero {
    width: calc(100% - 40px);
    padding: 20px 0 36px;
  }

  .brand {
    width: min(220px, 45%);
  }

  .divider {
    margin: -10px 0 18px;
  }

  .eyebrow {
    font-size: 20px;
  }

  .hero-copy h1 {
    max-width: 1000px;
    font-size: 64px;
    margin-top: 10px;
  }

  .event-pill span {
    font-size: 16px;
  }

  .description,
  .highlight {
    width: min(100%, 478px);
    font-size: 18px;
  }

  .btn {
    justify-content: center;
    font-size: 18px;
    padding: 20px 50px;
  }
}