:root {
    --color-primary: #0f4c81;     /* Azul Médio */
    --color-secondary: #BFDBFE;   /* Azul Bebê */
    --color-accent: #0EA5E9;      /* Call-to-action */
    --color-whiteice: #F1F1F1;  /* Fundo Base */
    --color-text: #111827;        /* Preto carvão */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--color-whiteice);
}

/* Fontes  */

@font-face {
    font-family: 'MontRegular';
    src: url('/assets/Fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'MontMedium';
    src: url('/assets/Fonts/montserrat-medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'MontBold';
    src: url('/assets/Fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'MontBlack';
    src: url('/assets/Fonts/mont-black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  /* Estilos "padroes" */

  .Section-style{
    display: flex;
    height: 30rem;
    background-color: var(--color-primary);
    width: 100%;
  }

  .button-style{
   background-color: var(--color-whiteice);
    width: auto;
    padding: 20px;
    height: 30px;
    border: none;
    border-radius: 10px;
    color: var(--color-primary);
    font-family: "MontBold";
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }