* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Jost';
    src: url('/fonts/jost-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/fonts/jost-medium.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

ul {
    list-style-position: inside;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}

h1 {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
}

/* Estilos Gerais para Desktop e Mobile */
.tittle-page {
  font-weight: bold;
  margin-top: 20px;
  text-shadow:
      1px 1px 2px #000,
      -1px -1px 2px #000,
      1px -1px 2px #000,
      -1px 1px 2px #000;
}

/* Desktop */
@media (min-width: 1024px) {
  .tittle-page {
    font-size: 70px;
    color: #554B88;
    /* Remover text-transform para não forçar maiúsculas */
    text-transform: none;
  }
}

/* Mobile */
@media (max-width: 1024px) {
  .tittle-page {
    font-size: 45px;
    color: #554B88;
    /* Remover text-transform para não forçar maiúsculas */
    text-transform: none;
  }
}

.cta-button-first {
    display: flex;
    margin-bottom: 20px;
}

.cta-button-first .btn {
    font-size: 20px;
    font-weight: bold;
    background-color: #ffde4a;
    color: #121212;
    border: 2px solid #272727;
    padding: 15px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.cta-button-first .btn:hover {
    background-color: #FFD51C;
    color: #272727;
}
