* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    outline: none!important;
    scroll-behavior: smooth;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body, html {
    height: 100%;
    color: #FBFBFB;
}

header {
    padding: 12px;
    background-color: rgb(0, 21, 25, .75);    
}

header img {
    margin: 0 auto;
    display: block;
}

.full-bg {
background-image: url("../images/full-bg.jpg");

height: 100%;

background-position: center;
background-repeat: no-repeat;
background-size: cover;

}

@media (max-width: 768px) { /* Para telas menores (celulares) */
    .full-bg {
        background-image: url("../images/full-bg-mobile.jpg");
    }
  }

.center {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    height: 100vh; /* 100% da altura da tela */
    height: calc(100vh - 43px);
}

.container {
    width: 100%;
    max-width: 540px;   /* Até 576px */
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
  }
  
  @media (min-width: 576px) { /* sm */
    .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) { /* md */
    .container {
      max-width: 720px;
    }
  }
  
  @media (min-width: 992px) { /* lg */
    .container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) { /* xl */
    .container {
      max-width: 1140px;
    }
  }
  
  @media (min-width: 1400px) { /* xxl */
    .container {
      max-width: 1320px;
    }
  }

  .content {
    max-width: 535px; /* Define a largura máxima */
    width: 100%; /* Faz com que ocupe toda a largura disponível até 1200px */
    /* margin: 0 auto; Centraliza horizontalmente */
    padding: 0 16px; /* Adiciona um espaçamento interno nas laterais */
  }

  .content h1 {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #F0FF76;
  }

  .content p {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .content a {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    line-height: 1.6;
    color: #FBFBFB;
  }

  .social-links {
    display: flex;
    gap: 16px;
    padding: 16px 0;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .social-links a:hover {
    background-color: rgb(0, 21, 25, .75);    
  }
  
  .social-links svg {
    width: 24px;
    height: 24px;
    fill: #FBFBFB; /* Cor do ícone */
  }