/* Efeito de transição para todos os elementos */
* {
    transition: all 0.3s ease;
}

@font-face {
    font-family: 'LFT Etica';
    src: url('../fonts/lftetica-bold.ttf') format('opentype');
}
@font-face {
    font-family: 'Kanit';
    src: url('../fonts/Kanit-Regular.ttf') format('opentype');
}
@font-face {
    font-family: 'DejaRip';
    src: url('../fonts/fonnts.com-DejaRip_Bold.otf') format('opentype');
    font-weight: bold;
}

@font-face {
    font-family: 'DejaRip';
    src: url('../fonts/fonnts.com-DejaRip.otf') format('opentype');
    font-weight: normal;
}

/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: white;
    background-image: url('imagens/banner.png');
    background-color: #000;
    overflow-x: hidden; /* Previne barra horizontal */
}

/* Header */
.header {
    position: absolute;
    top: 0;
    margin: 10px;
    z-index: 10;
    width: 99%;
    display: flex;
    flex-flow: column;
    gap: 0px;
    border-radius: 8px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(40, 43, 0, 0.527);
    color: white;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;

}

.header-bottom {
    background-color: rgba(255, 251, 0, 0.055);
    color: white;
    padding: 10px;
    text-align: right;
    border-radius: 0 0 8px 8px;
}

.logo img {
    width: 150px;
    padding: 15px;
}

.nav {
    display: inline-flex;
    gap: 25px;
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 43px;

    color: #FFFFFF;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

/* Botão de login com efeito de transparência */
.login-button {
    cursor: pointer;
    background-color: #e1e417;
    border: none;
    padding: 10px 22.5px;
    border-radius: 25px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 32px;
    text-align: center;
}

.login-button:hover {
    color: #e1e417;
    background-color: transparent;
    border: 2px solid #e1e417;
}

/* Banner com imagem de fundo */
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner h1 {
    font-size: 2.5em;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

/* Título sobre o banner */
.banner-title {
    width: 1815px;
    height: 296px;
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;
    font-size: 96px;
    line-height: 115px;

    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.banner-title span {
    color: #fbff00;
    display: inline;
}

.background-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

/* Slides individuais */
.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: carouselAnimation 12s infinite;
}

@keyframes carouselAnimation {

    0%,
    33% {
        opacity: 1;
    }

    34%,
    100% {
        opacity: 0;
    }
}

/* Ajuste para cada slide */
.carousel-slide:nth-child(1) {
    animation-delay: 0s;
    filter: grayscale(100%);
    filter: brightness(50%);
}

.carousel-slide:nth-child(2) {
    animation-delay: 4s;
    filter: grayscale(100%);
    filter: brightness(50%);
}

.carousel-slide:nth-child(3) {
    animation-delay: 8s;
    filter: grayscale(100%);
    filter: brightness(50%);
}

.carousel-slide:nth-child(4) {
    animation-delay: 12s;
    filter: grayscale(100%);
    filter: brightness(50%);
}

/* FAQ Section */
.faq {
    padding: 30px 130px;
    background-color: #1e1e1e;
}

.faq-title {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 29px;
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;
    font-size: 1.7rem;
    color: white;
    margin-top: 20px;   
    margin-bottom: 20px;
}

.span-perguntas{
    color: #e1e417;
}

.toggle-symbol {
    font-size: 30px; 
}

.faq-title img {
    width: 80px;
}

/* Transição suave para a cor de fundo da pergunta */
.faq-item {
    background-color: #404040;
    margin: 15px 0;
    padding: 15px;
    border-radius: 12px;
    font-size: 20px;
    transition: background-color 0.3s ease;
    border: 3px solid #000;
}

.faq-question {
    padding-left: 12px; /* Espaçamento interno à esquerda */
    padding-right: 12px; /* Espaçamento interno à direita */
    padding-top: 10px; /* Espaçamento interno no topo */
    padding-bottom: 10px; /* Espaçamento interno na parte inferior */
    height: fit-content; /* Altura ajustada ao conteúdo */
    border-radius: 12px; /* Bordas arredondadas */
    display: flex; /* Define layout flexível */
    align-items: center; /* Alinha itens verticalmente */
    justify-content: space-between; /* Distribui itens com espaço entre eles */
    gap: 20px; /* Espaçamento entre os itens */
    cursor: pointer; /* Mostra cursor de ponteiro */
    z-index: 30;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: black;
    line-height: 1.5;
}

/* Seção de Integrantes */
.integrantes {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.card {
    display: flex;
    align-items: center;
}

.info {
    display: flex;
    background: rgba(0, 0, 0, 0.50);
    color: white;
    border-radius: 8px;
    border: 2px solid #E4FF00;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 400px;
    height: 85px;
    padding: 20px;
    gap: 20px;
    margin-left: 30px;
}

.foto-integrante {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.info h2 {
    font-size: 1.5rem;
    color: white;
}

.info p {
    color: white;
}

.links a {
    text-decoration: none;
    color: #0073b1;
    margin-right: 10px;
    font-weight: bold;
}

.links a:hover {
    color: #005582;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background-color: #2e2e2e;
}

.texto-logo {
    display: flex;
    flex-direction: column;   
    gap: 0px;
}

#copyright {
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #9F9B9B;
    letter-spacing: 0.5px; 
}

#social {
    width: 40px
}

.footer img {
    width: 140px;
    margin-top: 20px;
}

.footer p {
    font-size: 0.7em;
    margin-top: 10px;
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Efeito de hover nos ícones das redes sociais */
.social-icons img {
    width: 25px;
    transition: transform 0.3s ease;
    /* Transição suave no hover */
}

.social-icons img:hover {
    transform: scale(1.2);
    /* Aumenta levemente o ícone ao passar o mouse */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Centralizar o formulário */
.loginpage {
    position: absolute;
    margin-top: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 10px;
    width: 400px;
}

/* Caixa de botões de troca de aba */
.caixabotoeslogin {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

/* Botões de aba (Login/Cadastro) */
.botaologin {
    cursor: pointer;
    padding: 10px 20px;
    margin: 5px;
    color: white;
    background-color: transparent;
    border: none;
    /* remove todas as bordas */
    border-bottom: 2px solid white;
    /* borda inferior branca quando desativada */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 10px;
}

input::placeholder {
    color: #ffffff; /* Cor do texto do placeholder */
}

.botaologin.ativo {
    cursor: pointer;
    color: #e1e417;
    border-bottom: 2px solid yellow;
}

.caixalogin {
    border: 3px solid #e1e417;
    padding: 15px;
    border-radius: 6px;
}

/* Estilo dos formulários */
.formulario {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.formulario.ativo {
    display: block;
    opacity: 1;
}

.formulario h2 {
    text-align: center;
}

.formulario h2 span {
    color: rgb(248, 248, 0);
}

.credenciais h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.credenciais h2 span {
    color: #e1e417;
}

.titulocaixalogin {
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;   
    padding: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

input[type="text"],
input[type="password"],
input[type="email"],

textarea {
    width: 92%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 5px;
    font-size: 14px;
    background-color: rgba(226, 226, 226, 0.156);
    color: white;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]+label {
    display: flex;
    flex-direction: column;
    width: 250px;
    position: relative;
    padding-left: 30px;
    /* Espaço para a checkbox customizada */
    cursor: pointer;
    font-size: 12px;
    color: white;
}

input {
    border: 2px solid #ccc; /* Borda padrão dos campos */
    border-radius: 4px;      /* Bordas arredondadas */
    padding: 10px;           /* Espaçamento interno */
    font-size: 16px;         /* Tamanho da fonte */
    transition: border-color 0.3s ease; /* Transição suave para a cor da borda */
}

/* Quando o campo estiver em foco (selecionado), a borda será amarela */
input:focus {
    border-color: #ffe600;  /* Cor da borda amarela */
    outline: none;          /* Remove o contorno padrão */
}

/* Estilo da caixa da checkbox */
input[type="checkbox"]+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid yellow;
    /* Borda amarela */
    background-color: rgba(255, 251, 0, 0.055);
    /* Fundo transparente */
    border-radius: 5px;
    /* Arredonda as bordas levemente */
    box-sizing: border-box;
    transition: background-color 0.3s, border-color 0.3s;
}

/* Estilo da caixa quando a checkbox está marcada */
input[type="checkbox"]:checked+label:before {
    background-color: yellow;
    /* Cor de fundo amarela quando marcada */
    border-color: yellow;
    
    /* Mantém a borda amarela */
}

/* ícone de verificação */
input[type="checkbox"]:checked+label:after {
    /* Ícone de verificação */
    position: absolute;
    left: 4px;
    top: 0;
    font-size: 16px;
    color: #ffffff;
    /* Cor do ícone */
}


button[type="button"] {
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: yellow;
    border: 2px solid yellow;
    color: rgb(0, 0, 0);
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button[type="button"]:hover {
    color: yellow;
    background-color: yellow;
    background-color: transparent;
}

/* Seção Sobre */

.bannersobre {
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: auto;
    text-align: center;
}

.bannersobre img{
    height: 2000px;
}


.bannersobre h2 {
    margin-top: 300px;
    font-size: 2.5em;
    color: white;
    padding: 0px;
    border-radius: 8px;
    text-align: center;
}

.bannersobre h2 span {
    color: #e1e417;
}

.paginasobre {
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.paginasobre h2 {
    font-size: 2.5rem;
    color: white;
    text-shadow: black 0.1em 0.1em 0.2em;
    margin-bottom: 20px;
}

.paginasobre h2 span {
    color: #e1e417;
    /* Cor amarela destacada */
}

/* Seção principal de serviços */
.paginasobremain {
    margin-top: 30px;
}

.paginasobremain h3 {
    font-size: 2rem;
    color: #fbff00;
    margin-bottom: 40px;
}

/* Caixas de serviços */
.caixagrande {
    display: flex;
    align-items: center;
    border: 1px solid yellow;
    margin: 20px auto;
    max-width: 70%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caixagrande:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.caixagrande img {
    width: 200px;
    height: 200px;
    margin: 20px;
}

.info_texto {
    width: 60%;                        /* Define a largura da .info_texto */
    font-family: 'Kanit';               /* Define a fonte */
    font-style: normal;                 /* Define o estilo da fonte */
    font-weight: 400;                   /* Define o peso da fonte */
    text-align: left;                   /* Alinha o texto à esquerda */
    margin: 0;                          /* Remove qualquer margem extra */
    padding: 0;                         /* Remove qualquer padding extra */
    line-height: 1;                     /* Define a altura da linha para remover espaçamento extra entre as linhas */
    letter-spacing: normal;             /* Define o espaçamento entre as letras para o padrão */
    word-spacing: normal;               /* Define o espaçamento entre as palavras para o padrão */
}

.links {
    width: 40%;                         /* Define a largura da .links para 40% */
    display: flex;                      /* Torna o contêiner um flex container */
    flex-direction: column;             /* Coloca os ícones em coluna (um abaixo do outro) */
    justify-content: center;            /* Alinha verticalmente no centro da .links */
    align-items: flex-end;
    gap: 10px;                            /* Alinha a .links à direita do contêiner pai */                               /* Corrige o deslocamento e centraliza verticalmente */
}

/* Estilo das imagens dentro dos links */
.links img {
    display: block;
    align-items: center;
    width: 33px;                       /* Ajuste o tamanho da imagem (pode mudar conforme necessidade) */
    height: auto;
}

.links img:hover {
    transform: scale(1.2);
    /* Aumenta levemente o ícone ao passar o mouse */
}

.caixamenor {
    padding: 20px;
    text-align: left;
    border-left: 1px solid yellow;
}

.telegram-container {
    display: flex;
    align-items: center;
}

#telegram {
    width: 40px;
    height: 40px;
}

.caixamenor h4 {
    font-size: 1.8rem;
    color: white;
    text-shadow: black 0.1em 0.1em 0.2em;
    margin-bottom: 10px;
}

.caixamenor p {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    text-shadow: black 0.1em 0.1em 0.2em;
}

.servicos {
    background-color: #121212;
    padding: 40px 20px;
    text-align: left;
}

.saiba-mais {
    background-color: #f4f60e; /* Cor de fundo amarelo neon */
    color: #000; /* Texto preto */
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #f4f60e;
    border-radius: 25px; /* Bordas arredondadas */
    padding: 10px 20px; /* Espaçamento interno */
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Sombra para o botão */
    transition: all 0.3s ease;
  }

  .saiba-mais:hover {
    background-color: transparent;
    border-color: #b5ba09; /* Altera a cor da borda ao clicar */
    color: #f4f60e;
    transform: scale(0.95);
}
  
  .caixa-saiba-mais {
    display: flex;
    justify-content: center;     /* Centraliza o botão horizontalmente */
    align-items: flex-end;       /* Alinha o botão na parte inferior do contêiner */
    width: 100%;                 /* Garante que o botão ocupe a largura total */
    margin-top: 30px;  
  }

.servicos-header h2 {
    color: #ffffff;
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;
    font-size: 3.0rem;
    margin-bottom: 5px;
}

.underline {
    width: 90px;
    height: 2px;
    background-color: #D7FF4C;
    margin: auto 40px 40px;
}

.container-servicos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.caixa-servicos {
    font-family: 'LFT Etica';
    font-style: normal;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.5;
    background-color: #424141;
    color: white;
    flex: 1;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease-in-out;
    
}

.caixa-servicos:hover {
    transform: scale(1.05);
}


.caixa-servicos img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.caixa-servicos h4 {
    color: #D7FF4C;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.caixa-servicos p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Responsividade */

@media (max-width: 1920px) {
    .bannersobre h2 {
        font-size: 2.5rem;
    }

    .caixagrande {
        gap: 30px;
        padding: 30px;
    }

    .caixamenor p {
        font-size: 1.1rem;
    }

    .header-top {
        flex-direction: row;
        justify-content: space-between;
    }

    .banner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 1076px) {
    .banner h1 {
        font-size: 1.8em;
        color: white;
        padding: 20px;
        border-radius: 8px;
    }
}

@media (max-width: 785px) {
    .banner h1 {
        font-size: 1.6em;
        color: white;
        padding: 20px;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .body{
        overflow: hidden;
    }
    
    .header {
        flex-direction: column;
    }

    .banner h1 {
        font-size: 1.3em;
        color: white;
        padding: 20px;
    }

    .nav {
        flex-direction: row;
        align-items: center;
    }

    .container-servicos {
        flex-direction: column;
        gap: 20px;
    }

    .caixa-servicos {
        flex: 1 1 100%; /* Uma coluna */
    }


    .bannersobre h2 {
        font-size: 2rem;
    }

    .caixagrande {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .caixagrande img {
        max-width: 100%;
        height: auto;
    }

    .caixamenor {
        text-align: center;
    }

    .caixamenor h4 {
        font-size: 1.3rem;
    }

    .caixamenor p {
        font-size: 1rem;
    }
}

@media (max-width: 662) {
    .banner h1 {
        font-size: 1.2em;
        color: white;
        padding: 20px;
        border-radius: 8px;
    }
}

@media (max-width: 600px) {
    .banner h1 {
        font-size: 1.2em;
        color: white;
        padding: 20px;
        border-radius: 8px;
    }
    
    .body{
        overflow: hidden;
    }

    .header-top {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        width: 100px;
    }

    #logo-arc {
        width: 500px;   
        height: 200px;
    }

    .container-servicos {
        flex-direction: column;
    }

    .caixa-servicos {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .bannersobre img {
        max-height: 250px;
    }

    .bannersobre h2 {
        font-size: 1.5rem;
    }

    .caixagrande {
        flex-direction: column;
        padding: 20px;
    }

    .caixagrande img {
        max-width: 100%;
    }

    .caixamenor h4 {
        font-size: 1.2rem;
    }

    .caixamenor p {
        font-size: 0.9rem;
    }

    

}

@media (max-width: 450px) {
    
    .banner h1 {
        font-size: 1.2em;
        color: white;
        padding: 20px;
        border-radius: 8px;
    }
    
    .faq {
        max-width: 100%;
        margin: 0 auto;
        padding: 30px;
        font-size: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 1rem;
    }
    
    
    .body{
        overflow: hidden;
    }

    .header{
        margin: 0 auto;
        max-width: 100%;
        overflow: hidden
    }
    
    .header-top {
        margin-top: 20px;
        margin-left: 9px;
        margin-right: 5px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .header-bottom{
        margin-left: 9px;
        margin-right: 5px;
    }

    .header-bottom a{
        font-size: 0.8rem;
    }

    .login-button{
        font-size: 0.8rem;
    }

    .custom-hr {
        width: 0.1rem;
        height: 2rem;
        border: 0;
        background-color: rgba(255, 255, 255, 0.377);
      }

    .integrantes{
        max-width: 100%;
        margin: 0 auto;
    }

    .card h2{
        font-size: 1rem;
    }

    .card p{
        font-size: 0.8rem;
    }

    .card{
        max-width: 90%;
        margin: 0 auto;
    }

    .foto-integrante{
        width: 100px;
        height: 100px;
    }

    .info{
        align-items: center;
        height: 65px;
        margin-left: 20px;
    }

    .loginpage{
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        margin-top: 60px;
        align-items: center;
    }

    .botaolembrardados,
    .loginpage button{
        margin-left: 20px;
    }

    .banner h1{
        margin-top: 30%;
        display: block;
        line-height: 2;
        font-size: 1.6rem;
    }
    .logo img {
        width: 100px;
    }

    #logo-arc {
        width: 500px;   
        height: 200px;
    }

    .container-servicos {
        flex-direction: column;
    }

    .caixa-servicos {
        max-width: 100%;
        margin: 0 auto;
    }

    .underline,
    .servicos-header {
        text-align: center;
        align-items: center;
        margin: auto;
        margin-bottom: 40px;
    }

    .caixa-servicos{
        max-width: 70%;
        margin-bottom: 34px;
    }

    .footer {
        max-width: 100%;
        flex-direction: row;
    }

    #copyright {
        font-size: 0.6rem;
        text-align: left;
    }

    .bannersobre img {
        max-height: 250px;
    }

    .bannersobre h2 {
        font-size: 1.5rem;
    }

    .paginasobremain img{
        width: 100%;
        height: 220px;
    }
    
    .caixagrande {
        max-width: 100%;
        flex-direction: column;
        padding: 20px;
    }

    .caixagrande p{
        text-align: justify;
    }

    .caixagrande img {
        max-width: 100%;
    }

    .caixamenor h4 {
        font-size: 1.2rem;
    }

    .caixamenor p {
        font-size: 0.9rem;
    }
    
    #logo-arc{
        width: 70%;
        height: 70%;
        align-items: left;

    }
 
    .social-icons img{
        max-width: 30px;
        max-width: 30px;
        margin: 0 auto;
        gap: 6px;
    }
    .social-icons{
        gap: 10px;
    }
    
}