/*Cores*/
/*
#662D91; Marca
#503167; Marca hover
#9874B2; Marca contraste
#EDE7F2; Marca claro
#33273C; Marca escuro
#41324C; Marca escuro contraste
#E5D295; Amarelo secundário
#9499A3; Cinza para textos
#4E4E4E; Cinza para títulos
#f4f4f4; Cinza para bordas
#F9F9F9; Cinza para background especial
#FDFDFD; Branco padrão
*/


html {
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    color: #9499A3;
    font-weight: 400;
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 8rem;
}

* {
    box-sizing: border-box;
}

li {
    list-style: none;
}

body, p, h1, h2, h3, h4, h5, h6, ul, li, a {
    margin: 0;
    padding: 0;
    line-height: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: #4E4E4E;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 120%;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3.2rem;
}

@media (min-width: 786px) {
    h1 {
        font-size: 5.6rem;
    }
    
    h2 {
        font-size: 4.8rem;
    }
}

h5 {
    font-size: 2.4rem;
}

h6 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    font-size: 1.4rem;
    line-height: 160%;
}

.p16px {
    font-size: 1.6rem;
}

.p18px {
    font-size: 1.8rem;
    font-weight: 300;
}

.p12px {
    font-size: 1.2rem;
    font-weight: 400;
}

aside {
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: 160%;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: #9499A3;
}

img {
    display: block;
}

.tag {
    border: 1px solid #9499A3;
    color: #9499A3;
    padding: 8px 12px;
    border-radius: 200px;
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 100%;
    letter-spacing: 1px;
    font-weight: 500;
}

/*Para alterar estilo básicos da biblioteca de ícones*/

.lucide {
    /* Change this! */
    /*
    color: #;
    width: 56px;
    height: 56px;
    */
    stroke-width: 1px;
}

.iconP {
    width: 16px;
    height: 16px;
}

.iconM {
    width: 20px;
    height: 20px;
}

.iconG {
    width: 24px;
    height: 24Px;
}

.iconXL {
    width: 32px;
    height: 32px;
}

button {
    border: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    padding: 0 1.6rem;
    gap: 1.6rem;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 160%;
}

.btnP {
    height: 3.6rem;
    padding: 0 1.6rem;
}

.btnM {
    height: 3.6rem;
    padding: 0 1.6rem;
}

.btnG {
    font-size: 1.6rem;
    height: 4.4rem;
    padding: 0 2rem;
}

.btnPrimario {
    background-color: #662D91; 
    color: #FDFDFD;
}

.btnPrimario:hover {
    background-color: #503167;
}

.btnTerciario {
    padding: 0;
    background-color: inherit;
    color: #662D91; 
}

.btnTerciario:hover {
    color: #503167;
}

.btnCircular {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 100%;
    background-color: #662D91; 
    color: #FDFDFD;
}

.btnCircular:hover {
    background-color: #503167;
}

.btnCircularP {
    width: 3.2rem;
    height: 3.2rem;
}

.alinharConteudo {
    display: flex;
    justify-content: center;
 }

.grid {
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 
        "header"
        "quemsomos"
        "consultoria"
        "treinamentos"
        "blog"
        "contato"
        "rodape"
    ;
}

.container {
    width: 100vw;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1140px) {
    .container {
        padding: 0;
    }
}

.esconder {
    display: none;
}

@media (min-width: 1024px) {
    .esconder {
        display: inherit;
    }
}

.setaAnimada {
    animation:setaAnimada 900ms ease-in-out infinite;
}

@keyframes setaAnimada {
    to {
        transform: translateY(12px);
    }
}

.whatsapp {
    display: inline-block;
    border-radius: 100%;
    padding: 1.6rem;
    background: #25D366;
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    z-index: 1002;
}

@media (min-width:768px) {
    .whatsapp {
        display: inline-block;
        border-radius: 100%;
        padding: 1.6rem;
        background: #25D366;
        position: fixed;
        bottom: 4rem;
        right: 6rem;
        z-index: 1002;
    }
}

.whatsapp img {
    width: 3.2rem;
}

@media (min-width:768px) {
    .whatsapp img {
        width: 2.4rem;
    }
}

/******* Header ********/

header {
    grid-area: header;
    background: rgb(255,255,255);
    background: linear-gradient(45deg, rgba(255,255,255,0.8) 60%, rgba(152,116,178,0.8) 100%);
}

nav {
    padding: 2rem 0;
}

.fixo {
    position: fixed;
    top: 0;
    width: 100%;
    background-color:#FDFDFD;
    transition: all 0.5s;
    z-index: 999;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    height: 56px;
}

.navegacao .menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    padding: 3.2rem;
    z-index: 1000;
    transition: all 0.3s;
    overflow-y: hidden;
    visibility: hidden;
    background-color: #662D91;
}

@media (min-width:1024px) {
    .navegacao .menu {
        position: relative;
        top: auto;
        width: auto;
        right: auto;
        height: auto;
        padding: 0;
        transition: none;
        gap: 4rem;
        display: flex;
        visibility: inherit;
        background-color: transparent;
    }
}

.navegacao .menu li:last-child {
    display: inherit;
}

@media (min-width:1024px) {
    .navegacao .menu li:last-child {
        display: none;
    }
}


/******* Abrir menu cel ********/

.navegacao.active .menu {
    visibility: visible;
    right: 0;
  }

.navegacao .menu li {
    margin-bottom: 2.4rem;
}

@media (min-width:1024px) {
    .navegacao .menu li {
        margin-bottom: 0;
    }
}

.navegacao .menu li a {
    text-transform: uppercase;
    color: #FDFDFD;
    font-size: 1.6rem;
    line-height: 160%;
    font-weight: 400;
}

.navegacao .menu li a:hover {
    color: #9874B2;
}

@media (min-width:1024px){
    .navegacao .menu li a {
        text-transform: capitalize;
        color: #9499A3;
        font-size: 1.4rem;
    }
}

.navegacao.active .icone-menu {
    border-top-color: transparent;
    color: #FDFDFD;
}
  
.navegacao.active .icone-menu::before {
    transform: rotate(135deg);
}
  
.navegacao.active .icone-menu::after {
    transform: rotate(-135deg);
    top: -7px;
}

/******* Ícone do menu ********/

#btn-mobile {
    position: absolute;
    right: 20px;
    top: 38px;
    z-index: 1001;
    display: flex;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

@media (min-width: 1024px) {
    #btn-mobile {
      display: none;
    }
}
  
.icone-menu {
    color: #662D91;
    width: 2rem;
    border-top: 2px solid;
    display: block;
}
  
.icone-menu::after,
.icone-menu::before {
    content: "";
    display: block;
    width: 2rem;
    height: 2px;
    background-color: currentColor; /*Pega a cor automaticamente do icone pai*/
    margin-top: 5px;
    transition: 0.6s;
    position: relative;
}

/******* Fim ícone ********/

.banner {
    padding: 2.4rem 0 5.6rem 0;
}

@media (min-width:1024px) {
    .banner {
        padding: 12rem 0 5.6rem 0;
    }
}

.conteudoBanner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
    "fotoBanner"
    "textoBanner";
    margin-bottom: 4.8rem;
}

@media (min-width: 768px) {
    .conteudoBanner {
        display: grid;
        grid-template-columns: 1fr 480px;
        grid-template-areas:
        "textoBanner fotoBanner";
        margin-bottom: 12rem;
        grid-gap: 2rem;
    }
}

.textoBanner {
    grid-area: textoBanner;
}

.textoBanner aside {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #662D91;
}

.textoBanner h1 {
    margin-bottom: 4.8rem;
}

.textoBanner p {
    margin-bottom: 3.2rem;
}

.atalhosBanner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.atalhosBanner p {
    margin-bottom: 0;
}

.fotoBanner {
    grid-area: fotoBanner;
}

.fotoBanner .imgBanner {
    width: 100%;
}

@media (min-width:768px) {
    .fotoBanner {
        position: relative;
    }
    
    .fotoBanner .imgBanner {
        position: absolute;
        top: -40px;
        left: -20px;
        width: 520px;
    }
}

.clientesBanner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
    "tituloClientes"
    "logosClientes";
    border-top: 1px solid #f4f4f4;
    padding-top: 4.8rem;
    gap: 2.4rem;
}

@media (min-width: 1024px) {
    .clientesBanner {
        grid-template-columns: 110px 1fr;
        grid-template-areas:
        "tituloClientes logosClientes";
        justify-content: space-between;
        align-items: center;
        gap: 4.8rem;
    }
}

.clientesBanner p {
    grid-area: tituloClientes;
}

/*Animação e layout dos logos dos clientes*/

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logosClientes {
    grid-area: logosClientes;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logosClientes::before,
.logosClientes::after{
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: "";
    z-index: 998;
}

@media (min-width:768px) {
    .logosClientes::before,
    .logosClientes::after{
        width: 200px;
    }
}

.logosClientes::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #ffffff);
}

.logosClientes::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
}

/*
.logosClientes:hover .logosSlide {
    animation-play-state: paused;
}
*/

.logosSlide {
    display: inline-flex;
    animation:  18s slide infinite linear;
}

.logosSlide img {
    height: 52px;
    margin: 0 4rem;
}

/******* Quem Somos *******/

.quemSomos {
    grid-area: quemsomos;
    padding: 5.6rem 0 0 0;
    background-color: #33273C;
}

@media (min-width: 1024px) {
    .quemSomos {
        padding: 12rem 0 0 0;
    }
}

.quemSomos hr {
    border: 0.5px solid #41324C;
}

.sobreEmpresa {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 
    "tituloEmpresa"
    "textoEmpresa";
    margin-bottom: 4.8rem;
}

@media (min-width: 786px) {
    .sobreEmpresa {
        display: grid;
        grid-template-columns: 480px 1fr;
        grid-template-areas: "tituloEmpresa textoEmpresa";
        margin-bottom: 8rem;
    }
}

.sobreEmpresa span {
    grid-area: tituloEmpresa;
}

.sobreEmpresa span img {
    width: 6.4rem;
    height: 6.4rem;
    margin-bottom: 1.6rem;
}

.sobreEmpresa span h2 {
    color: #9874B2;
}

.sobreEmpresa span h2:last-of-type {
    display: none;
}

@media (min-width: 786px) {
    .sobreEmpresa span h2 {
        display: none;
    }
    
    .sobreEmpresa span h2:last-of-type {
        display: inherit;
    }
}

.sobreEmpresa .textoConteudo {
    grid-area: textoEmpresa;
    padding-top: 4.8rem;
    color: #FDFDFD; 
}

@media (min-width: 768px) {
    .sobreEmpresa .textoConteudo {
        padding-top: 8.8rem;
    }
}

.sobreEmpresa p {
    margin-bottom: 2.4rem;
}

.sobreEmpresa p:last-of-type {
    margin-bottom: 0;
}

.grupoTecnologias {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 4.8rem;
}

@media (min-width:786px) {
    .grupoTecnologias {
        grid-template-columns: 1fr 1fr 1fr;
        margin-top: 8rem;
    }
}

.tecnologia p, .tecnologia  h5  {
    color: #FDFDFD; 
}

.tecnologia h5{
    margin-bottom: 1.6rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.tecnologia .lucide {
    color: #9874B2;
}

.bgDiagonal {
    height: 56px;
    background-color: #33273C; 
    transform-origin: left;
    transform: skewY(3deg);
}

@media (min-width: 768px) {
    .bgDiagonal {
        height: 120px;
    }
}


/******* Consultoria *******/


.consultoria {
    grid-area: consultoria;
    padding-top: 8rem;
    padding-bottom: 4.8rem;
}

@media (min-width: 768px) {
    .consultoria {
        padding-top: 20rem;
        padding-bottom: 8rem;
    }
}

.textoConsultoria {
    text-align: center;
    margin-bottom: 5.6rem;
}

.textoConsultoria aside{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.2rem;
    color: #662D91; 
}

@media (min-width:786px) {
    .textoConsultoria aside{
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: center;
    }
}

.textoConsultoria h2{
    margin-bottom: 4.8rem;
}

.grupoServicos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.2rem;
}

@media (min-width:786px) {
    .grupoServicos {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width:1024px) {
    .grupoServicos {
        grid-template-columns: repeat(3,1fr);
    }
}

.cardServico {
    border: 1px solid #f4f4f4;
    border-radius: 16px;
    padding: 4rem 2.4rem;
}

.cardServico span {
    display: flex;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    background-color: #9874B2;
    margin-bottom: 2.4rem;
    color: #FDFDFD;
}

.cardServico .p18px {
    font-weight: 500;
    margin-bottom: 2.4rem;
}

.cardServico .amarelo {
    background-color: #E5D295;
}

/******* Treinamentos *******/

.treinamentos {
    grid-area: treinamentos;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 
    "textoTreinamento"
    "conteudoTreinamento";
    gap: 2rem;
    padding-top: 4.8rem;
    padding-bottom: 8rem;
    border-top: 1px solid #f4f4f4;
}

@media (min-width:786px) {
    .treinamentos {
        grid-template-columns: 480px 1fr;
        grid-template-areas: "textoTreinamento conteudoTreinamento";
        padding-top: 8rem;
        padding-bottom: 20rem;
    }
}

.textoTreinamentos {
    grid-area: textoTreinamento;
}

@media (min-width:786px) {
    .textoTreinamentos {
        padding: 0 2.4rem 0 0;
    }
}

.textoTreinamentos h2 {
    margin-bottom: 4.8rem;
}

.textoTreinamentos p {
    margin-bottom: 2.4rem;
}

.textoTreinamentos p:last-of-type {
    margin-bottom: 0;
}

#conteudo2 {
    display: none; /*Texto que fica oculto do curso da segunda ABA*/
}

.conteudoTreinamentos {
    grid-area: conteudoTreinamento;
}

@media (min-width:786px) {
    .conteudoTreinamentos {
        padding: 0 0 0 2.4rem;
    }
}

.conteudoTreinamentos ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #F4F4F4;
    margin-bottom: 3.2rem;
}

.conteudoTreinamentos .aba{
    display: grid;
    padding: 2.4rem 1.6rem;
    text-align: center;
    font-size: 1.6rem;
    line-height: 160%;
    cursor: pointer;
    gap: 1.6rem;
}

.conteudoTreinamentos .aba.ativa {
    font-size: 1.8rem;
    font-weight: 500;
    color: #9874B2;
    border-bottom: 2px solid #9874B2;
    transition: all 0.3s;
}

.conteudoTreinamentos ul .aba .lucide{
    margin: 0 auto;
}

.informacoesTreinamento {
    border-radius: 16px;
    padding: 4rem 2.4rem;
    background-color: #EDE7F2;
}

@media (min-width:1024px) {
    .informacoesTreinamento {
        padding: 4rem;
    }
}

.informacoesTreinamento h2 {
    margin-bottom: 2.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.informacoesTreinamento p, .cardDetalhes p, .cardDetalhes p a {
    color: #4E4E4E;
}

.detalhesTreinamento {
    display: grid;
    grid-template-columns: 1fr;
    margin: 4.8rem 0;
    gap: 3.2rem
}

@media (min-width:786px) {
    .detalhesTreinamento {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
}

.cardDetalhes h2, .cardDuracao h2 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 1.6rem;
}

.cardDuracao {
    margin-bottom: 4.8rem;
}

.cardDetalhes .lucide, .cardDuracao .lucide {
    color: #9874B2;
}

.cardDetalhes p a {
    text-decoration:underline;
}

.cardDetalhes p a:hover {
    color: #662D91;
}

/******* Blog *******/

.blog {
    grid-area: blog;
    background-color: #F9F9F9;
    padding: 0 0 4.8rem 0;
}

@media (min-width:768px) {
    .blog {
        padding: 0 0 8.8rem 0;
    }
}

.bgDiagonalBlog {
    height: 56px;
    background-color: #F9F9F9;
    transform-origin: left;
    transform: skewY(-3deg);
}

@media (min-width: 768px) {
    .bgDiagonalBlog {
        height: 120px;
    }
}

.grupoTitulo {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: left;
    margin-bottom: 5.6rem;
    gap: 2.4rem;
}

@media (min-width:1024px) {
    .grupoTitulo {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
}

.grupoTitulo .btnTerciario {
    padding-left: 0;
    padding-right: 0;
}

.tituloBlog aside {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    color: #662D91;
    margin-bottom: 1.6rem;
}

.tituloBlog h5 {
    font-size: 1.8rem;
    font-weight: 500;
}

.grupoPostagens {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width:786px) {
    .grupoPostagens {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.post {
    border-radius: 8px;
    background-color: #ffffff;
}

.imgBlog {
    width: 100%;
    height: 20rem;
    background-color: #EDE7F2;
    border-radius: 8px 8px 0 0;
}


/*APAGAR*/ .imgExemplo {
    width: 100%;
    height: 20rem;
    background-color: #f4f4f4;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*APAGAR*/ .imgExemplo .lucide {
    width: 32px;
    height: 32px;
    color: #caccd1;
}

.bodyPost {
    padding: 3.2rem;
}

.bodyPost .btn {
    margin-top: 3.2rem;
}

.headerPost {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.2rem;
}

.headerPost p:first-child {
    font-family: 'Poppins', sans-serif;
    color: #4E4E4E;
    font-weight: 400;
}

/******* Contato *******/

.contato {
    grid-area: contato;
    background-color: #F9F9F9;
    padding: 0 0 5.6rem 0;
}

@media (min-width: 768px) {
    .contato {
        padding: 0 0 12rem 0;
    }
}

.contato .formularioHome {
    border-top: 1px solid #efefef;
    padding-top: 4.8rem;
}

@media (min-width: 768px) {
    .contato .formularioHome {
        padding-top: 8.8rem;
    }
}

.formularioHome .tituloFormulario {
    text-align: center;
}

.formularioHome .tituloFormulario span {
    display: flex;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    background-color: #9874B2;
    margin: 0 auto;
    margin-bottom: 2.4rem;
    color: #FDFDFD;
}

.formularioHome .tituloFormulario h2 {
    margin-bottom: 2rem;
}

.formularioHome .tituloFormulario p {
    font-size: 1.6rem;
    margin-bottom: 4.8rem;
}

.formularioHomeo form {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

@media (min-width: 768px) {
    .formularioHome form {
        width: 80%;
        margin: 0 auto;
    }
}

.opcoesSelect {
    display: inherit;
    margin-bottom: 4rem;
}

@media (min-width:768px) {
    .opcoesSelect {
        display: flex;
        justify-content: space-between;
    }
}

.opcoesSelect li {
    margin-bottom: 1.6rem;
}

.opcoesSelect li:last-of-type {
    margin-bottom: 0;
}

@media (min-width:768px) {
    .opcoesSelect li {
        margin-bottom: none;
    }
}

/* Personalizando o botão de rádio */
.opcoesSelect input[type="radio"] {
    all: unset; /* Remove todos os estilos padrão */
    width: 2rem; 
    height: 2rem; 
    border: 1px solid #9874B2; 
    border-radius: 50%; 
    cursor: pointer;
    display: inline-block;
    vertical-align: middle; /* Alinha verticalmente ao meio com a label */
    margin-right: 0.8rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Estilo do rádio quando está selecionado */
.opcoesSelect input[type="radio"]:checked {
    background-color: #9874B2;  
}

/* Estilo da label */
.opcoesSelect label {
    font-size: 1.6rem;
    font-weight: 300;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle; /* Garante que a label fique alinhada com o rádio */
}

/* Cor e estilo da label quando o rádio está selecionado */
.opcoesSelect input[type="radio"]:checked + label {
    color: #9874B2;
}

.camposFormulario input, .camposFormulario textarea {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    border-radius: 0.8rem;
    border: 1px solid #DEDEDE;
    padding: 0 1.6rem;
    height: 4.8rem;
    margin-bottom: 2.4rem;
}

.camposFormulario textarea {
    height: 8rem;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
}

.camposFormulario input:focus {
    border: 1px solid #DCCFE5;
    outline: 1px solid #DCCFE5;
}

.camposFormulario input::placeholder, .camposFormulario textarea::placeholder {
    color: #a7a7a7;
    font-weight: 300;
}

.camposFormulario label {
    font-size: 1.4rem;
    color: #4E4E4E;
    line-height: 100%;
    text-align: left;
    display: inline-block;
    margin-bottom: 2rem;
}

.formularioHome form .btn {
    width: 12rem;
    margin-top: 2rem;
}

/******* Rodape *******/

.rodape {
    grid-area: rodape;
    padding: 5.6rem 0 4rem 0;
}

@media (min-width: 768px) {
    .rodape {
        padding: 8rem 0 4rem 0;
    }
}

.rodape hr {
    border: 0.5px solid #F4F4F4;
}

/** Espaço do logo da empresa e parceiros **/

.logoEparceiros {
    display: block;
    margin-bottom: 4rem;
}

.logoEparceiros .logoRodape {
    margin: 0 auto;
    margin-bottom: 5.6rem;
    width: 120px;
}

@media (min-width: 1024px) {
    .logoEparceiros {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 4rem;
    }

    .logoEparceiros .logoRodape {
        margin: 0;
    }
}

.parceiros {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .parceiros {
        grid-template-columns: 120px 1fr;
        justify-content: space-around;
        align-items: center;
        gap: 4.8rem;
        margin-bottom: 0;
    }
}

.parceiros ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.6rem;
}

@media (min-width:1024px) {
    .parceiros ul {
        grid-template-columns: repeat(1, 1fr); /*Se entrar novo parceiro aumente o número 1 para 2 - máximo 5*/
        gap: 2.4rem;
    }
}

.parceiros ul li img {
    width: 100%;
    max-width: 160px;
    height: 100%;
    object-fit: cover;
}

/** Espaço dos links rápidos e endereço **/

.linksEendereco {
    display: block;
    margin-top: 4rem;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .linksEendereco {
        display: flex;
        justify-content: space-between;
    }
}

.linksRodape {
    display: block;
}

@media (min-width: 768px) {
    .linksRodape {
        display: flex;
        gap: 12rem;
    }
}

.linksRodape p{
    font-family: 'Poppins', sans-serif;
    color: #9874B2;
    margin-bottom: 2.4rem;
}

.linksRodape ul {
    margin-bottom: 4rem;
}

@media (min-width:768px) {
    .linksRodape ul {
        margin-bottom: 0;
    }
}

.linksRodape ul li {
    margin-bottom: 1.6rem;
}

.linksRodape ul li:last-of-type {
    margin-bottom: 0;
}

.linksRodape ul li a {
    font-size: 1.4rem;
    line-height: 160%;
    font-weight: 400;
}

.linksRodape ul li a:hover {
    color: #9874B2;
}

.endereco  p:last-of-type{
    margin-bottom: 2.4rem;
}

.endereco ul {
    display: flex;
    gap: 2rem;
}

.endereco ul .lucide {
    color: #FDFDFD;
}

.direitosReservados {
    padding: 3.2rem 0;
    border-top: 0.5px solid #F4F4F4;
}

.bodyDireitos {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.bodyDireitos span {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

@media (min-width:768px) {
    .bodyDireitos span {
        grid-template-columns: 1fr 1fr;
    }

    .bodyDireitos span p:first-of-type::after {
        content: '|';
        padding: 2.4rem;
    }
}

.bodyDireitos span a:hover {
    color: #9874B2;
}
