#accounting-services {
    width: 80%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background-color: #00fefe62;
    backdrop-filter: blur(2px);
    margin: 0 auto;
    margin-top: 7rem;
    transition: .5s;
    border-radius: 90px;
 }
 #accounting-services:hover{
    background-color: #0257515b;
    transform: scale(1.03);
 }
 
 #accounting-services .container {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
 }
 
 #accounting-services .section-title {
    font-size: 2.2rem;
    color: #ffffff;
    white-space: nowrap;
 }
 
 #accounting-services .section-content {
    font-size: 1.2rem;
    color: #ffffff;
 }
 
 @media (max-width: 768px) {
    #accounting-services .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    #accounting-services {
       width: 100%;
       padding: 40px 20px;
       display: flex;
       justify-content: center;
       align-items: center;
       min-height: 200px;
       background-color: #00fefe62;
       backdrop-filter: blur(2px);
       margin: 0 auto;
       margin-top: 4rem;
       transition: .5s;
       border-radius: 90px;
   }
   #accounting-services .section-content {
    font-size: 20px;
    color: #ffffff;
 }
 
    #accounting-services .section-title {
        white-space: normal;
    }
 } 
  


/* -------------------------------------------------------------------
 * CONTÁBIL
 * -----------------------------------------------------------------*/
 #vantagens-contabilidade {
    padding-bottom: 6rem;
    padding-top: 10rem;
  }
  
  #vantagens-contabilidade img {
    transition: .5s;
    animation: float 3s ease-in-out infinite;
  }
  
  @keyframes float {
    0% {
      transform: translateX(0px);
    }
    50% {
      transform: translateX(10px);
    }
    100% {
      transform: translateX(0px);
    }
  }
  
  #vantagens-contabilidade img:hover {
    transform: scale(1.03);
  }
  
  #vantagens-contabilidade .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  
  #vantagens-contabilidade .image-container {
    flex: 1;
    padding-right: 40px;
  }
  
  #vantagens-contabilidade .services-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  #vantagens-contabilidade .content-container {
    flex: 1;
  }
  
  #vantagens-contabilidade .section-title {
    font-size: 2.5rem;
    color: var(--color-font-light);
    margin-bottom: 15px;
  }
  
  #vantagens-contabilidade .section-subtitle {
    font-size: 1.5rem;
    color: var(--color-font-light);
    margin-bottom: 25px;
  }
  
  #vantagens-contabilidade .advantages-list {
    list-style-type: none;
    padding: 0;
  }
  
  #vantagens-contabilidade .advantages-list li {
    font-size: 16px;
    color: var(--color-font-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
  }
  
  #vantagens-contabilidade .advantages-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #03ffec;
    font-weight: bold;
    font-size: 23px;
  }
  
  #vantagens-contabilidade SPAN {
    color: var(--color-secondary);
    font-weight: 800;
  }
  
  @media (max-width: 768px) {
    #vantagens-contabilidade .container {
      flex-direction: column;
    }
    #vantagens-contabilidade img {
      margin-top: 3rem;
    }
    #vantagens-contabilidade .advantages-list li {
      font-size: 20px;
      color: var(--color-font-light);
      margin-bottom: 12px;
      padding-left: 25px;
      position: relative;
    }
    #vantagens-contabilidade {
      padding-bottom: 0rem;
      padding-top: 0rem;
    }
    #vantagens-contabilidade .image-container {
      padding-right: 0;
      margin-bottom: 30px;
    }
    #vantagens-contabilidade .content-container {
      text-align: center;
      padding: 1rem;
    }
    #vantagens-contabilidade .advantages-list li {
      text-align: left;
    }
    #vantagens-contabilidade .section-title {
      font-size: 34px;
      color: var(--color-font-light);
      margin-bottom: 15px;
    }
    #vantagens-contabilidade .section-subtitle {
      font-size: 20px;
      color: var(--color-font-light);
      margin-bottom: 25px;
    }
  }
  
  @media (max-width: 767px) {
    #vantagem h2 br {
      display: none;
    }
  }


/* -------------------------------------------------------------------
 * SERVIÇOS
 * -----------------------------------------------------------------*/
 #serv{
    background-color: #1de7d93a;
    width: 90%;
    margin: 0 auto;
    border-radius: 80px;
    transition: .5s;
    padding: 5rem;
 }
 #serv span{
    color: #03ffec;
    font-weight: 800;
 }
 #serv:hover{transform: scale(1.02);}
 #serv .container {
    max-width: 1200px;
    margin: 0 auto;
 }
 #serv h1 {
    text-align: center;
    margin-bottom: 44px;
    font-size: 46px;
    color: #fff;
 }
 #serv .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
 }
 #serv .block {
    border: 1px solid #ffffff;
    border-radius: 30px;
    padding: 15px;
    text-align: center;
    transition: .5s;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    color: #fff;
 
 }
 #serv .block:hover{
    background-color: #00baad;
    transform: scale(1.02);
 }
 @media (max-width: 768px) {
    #serv .grid {
        grid-template-columns: repeat(2, 1fr);
       
    }
    #serv {
        background-color: #1de7d93a;
        width: 100%;
        margin: 0 auto;
        border-radius: 80px;
        transition: .5s;
        padding: 0;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    #serv h1 {
       text-align: center;
       margin-bottom: 44px;
       font-size: 30px;
   }
 }
 @media (max-width: 480px) {
    #serv .grid {
        grid-template-columns: 1fr;
    }
 }


/* -------------------------------------------------------------------
 * PLANOS
 * -----------------------------------------------------------------*/
#planos{ padding: 3rem 0 1rem 0; }
#planos h2 { font-weight: 600; margin-bottom: 2.5rem !important; font-size: 2.2rem; color: #fff; text-align: center;}
#planos span{
    color: #03ffec;
    font-weight: 800;
}

#planos .beneficio h3 { font-weight: 600; margin-bottom: 2.6rem !important; font-size: 1.5rem; color: #fff;}
#planos .beneficio ul { list-style: none; padding-left: 0; }
#planos .beneficio ul li { padding: .2rem 0; display:flex; color: #fff;}
#planos .beneficio ul li i { color: #03ffec; margin-right: .3rem; }

#planos .plano div { padding: 1.5rem 0; border: solid 3px var(--color-secondary); border-radius: 50px; transition: .5s;}
#planos .plano div:hover{
    transform: scale(1.02);
}
#planos .plano div h3 { font-weight: 900; color: #fff;}
#planos .plano div .valor{ font-weight: 900; font-size: 1.2rem; color: #03ffec; display: flex; justify-content: center; }
#planos .plano div .valor .big{ font-size: 4rem; color: #03ffec; line-height: 2.2rem; margin-left: 3px; }
#planos .plano div .valor .small{ font-size: 1.3rem; color: #03ffec; line-height: 4rem; }
#planos .plano div hr { width: 86%; margin: .8rem 7% .7rem; }
#planos .plano div ul{ padding: 0; }
#planos .plano div ul li { list-style-type: none;
    text-align: center;
    line-height: 2rem;
    color: var(--color-font-light);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
}
#planos .plano div ul li i { color: #03ffec; font-size: .5rem; margin-right: 0.5rem; }

@media (max-width:1199px) {
    #planos .beneficio ul { display: flex; flex-wrap: wrap; }
    #planos .beneficio ul li { min-width: 300px; }
}
@media (max-width:768px) {
    #planos h2 br { display: none; }
}


/* -------------------------------------------------------------------
 * SIMULADOR
 * -----------------------------------------------------------------*/
#simulador { padding: 2rem 0; }
#simulador h2 { font-weight: 600; font-size: 1.5rem; text-align: right; margin-right: 2rem; color: #fff;}
#simulador .btn_theme_primary { font-weight: 600; background-color: #06e3d5 !important; transition: .5s !important;}
#simulador .btn_theme_primary:hover{
    background-color: #004843 !important;
}
@media (max-width:991px) {
    #simulador h2 { font-size: 1.2rem; }
}
@media (max-width:767px) {
    #simulador h2 { text-align: center; margin-right: 0rem;}
}




#infinite-canvas-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
#infinite-canvas-section img{
    transition: .5s;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}

#infinite-canvas-section img:hover{
    transform: scale(1.03);
}
#infinite-canvas-section .container {
    display: flex;
    flex-wrap: wrap;
}
#infinite-canvas-section .content {
    flex: 1;
    min-width: 300px;
}
#infinite-canvas-section .image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#infinite-canvas-section .about-studio-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
#infinite-canvas-section .about-studio {
    color: #06e3d5;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 900;
}
#infinite-canvas-section .about-studio-line {
    width: 40px;
    height: 2px;
    background-color: #06e3d5;
    margin-left: 15px;
}
#infinite-canvas-section h1 {
    font-size: 64px;
    margin: 10px 0;
    color: #06e3d5;
    font-weight: 800;
}
#infinite-canvas-section .creations {

    font-size: 48px;
}
#infinite-canvas-section p {
    color: #ffffff;
    max-width: 600px;
    line-height: 1.6;
}
#infinite-canvas-section .stats {
    display: flex;
    margin-top: 40px;
}
#infinite-canvas-section .stat {
    margin-right: 40px;
}
#infinite-canvas-section .stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #06e3d5;
}
#infinite-canvas-section .stat-label {
    font-size: 14px;
    color: #ffffff;
}
#infinite-canvas-section .buttons {
    margin-top: 30px;
}
#infinite-canvas-section .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
}
#infinite-canvas-section .btn{
    background-color: #06e3d5 !important;
    color: white !important;
    transition: .5s;
    font-size: 20px;
}
#infinite-canvas-section .btn:hover{
    background-color: #008b9b !important;
    transform: scale(1.03);
}
#infinite-canvas-section span {
 color: #03ffec;
}
#infinite-canvas-section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media(max-width:767px){
    #infinite-canvas-section img{
        display: none;
    }
    #infinite-canvas-section h1 {
      font-size: 46px;
      margin: 10px 0;
      color: #06e3d5;
      font-weight: 800;
      text-align: center;
  }
    #infinite-canvas-section .image{
        display: none;
    }
    #infinite-canvas-section .stat-number {
        font-size: 38px;
        font-weight: bold;
        color: #06e3d5;
    }
    #infinite-canvas-section .btn{
        background-color: #06e3d5 !important;
        color: white !important;
        transition: .5s;
        width: 100%;
    }
    #infinite-canvas-section .creations {
      text-align: center;
      font-size: 33px;
  }
  #infinite-canvas-section p {
    color: #ffffff;
    max-width: 600px;
    line-height: 1.6;
    text-align: center;
}
#infinite-canvas-section .about-studio {
  color: #06e3d5;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 900;
  text-align: center;
  margin: 0 auto;
}
#infinite-canvas-section .about-studio-line {
  width: 145px;
  height: 2px;
  background-color: #06e3d5;
  margin-left: 0px;
}
}


/* -------------------------------------------------------------------
 * ETAPA
 * -----------------------------------------------------------------*/
 #etapa { text-align: center; }
 #etapa h2 { font-weight: 600; font-size: 1.8rem; }
 #etapa span { 
    background-color: var(--color-secondary); 
    color: var(--color-font-light); 
    display: inline-flex;
    width: 70px;
    height: 70px;
    border-radius: 70px;
    font-size: 2rem;
    font-weight: 500;
    align-items: center;
    justify-content: center;
}
#etapa p { padding: 1rem 2rem 0; font-weight: 500; }
@media (max-width:991px) {
    #etapa p { padding: 1rem 0 0; font-weight: 500; }
}


/* -------------------------------------------------------------------
 * ATIVIDADES
 * -----------------------------------------------------------------*/
#atividade { padding: 1rem 0 5rem; }
#atividade h2 { font-weight: 600; font-size: 3rem; color: #fff;}
#atividade ul { list-style: none; margin: 0; }
#atividade ul li { font-weight: 500; display:flex; color: #fff; }



@media(max-width:767px){
    #atividade h2 {
        font-weight: 600;
        font-size: 2rem;
        color: #fff;
    }
}


.process-section {
    padding: 10px 0;
    margin-top: 4rem;
 }
 
 .process-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-font-light);
    padding-bottom: 0rem;
 }
 
 .process-flow {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
 }
 
 .process-step {
    display: flex;
    margin-bottom: 100px;
    position: relative;
 }
 
 .process-step:nth-child(even) {
    justify-content: flex-end;
 }
 
 .process-content {
    background-color: #2a2a2a;
    border-radius: 30px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    position: relative;
    transition: .5s;
 }
 .process-content:hover{
    transform: scale(1.1); 
 }
 
 .process-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
 }
 
 .process-step h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 800;
 }
 .process-step p {
    font-size: 0.9rem;
    color: #cccccc;
 }
 
 .process-flow::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-image: linear-gradient(to bottom, #06e3d5 50%, transparent 50%);
    background-size: 2px 20px;
    background-repeat: repeat-y;
 }
 .process-section img{
    border-radius: 50%;
 }
 .process-section .btn{
    font-size: 24px;
 }
 
 .process-step::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #06e3d5;
    border-radius: 50%;
    top: 40px;
    left: calc(50% - 10px);
 }
 
 .process-step:nth-child(even)::after {
    left: auto;
    right: calc(50% - 10px);
 }
 
 /* Responsividade */
 @media (max-width: 768px) {
    .process-flow {
        padding: 0 10px;
    }
 
    .process-step {
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }
 
    .process-step:nth-child(even) {
        justify-content: center;
    }
    .process-section {
        padding: 10px 0;
        margin-top: 2rem;
    }
 
    .process-content {
        max-width: 100%;
    }
 
    .process-flow::before {
        left: 50%;
        transform: translateX(-50%);
    }
 
    .process-step::after {
        left: 50%;
        transform: translateX(-50%);
    }
 
    .process-step:nth-child(even)::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
 
    .process-title {
        font-size: 29px;
    }
    .process-title {
     text-align: center;
     margin-bottom: 50px;
     font-size: 30px;
     font-weight: 600;
     color: var(--color-font-light);
     padding-bottom: 0rem !important;
 }
 }
 
 @media (max-width: 480px) {
    .process-icon {
        width: 60px;
        height: 60px;
    }
 
    .process-step h3 {
        font-size: 25px;
    }
 
    .process-step p {
        font-size: 18px;
    }
 }
/* -------------------------------------------------------------------
 * PERGUNTAS FREQUENTES
 * -----------------------------------------------------------------*/
#perguntas { 
    background: #00fefe62;
    width: 90%;
    border-radius: 70px;
    margin: 0 auto;
    padding: 7rem 0 7rem 0;
    transition: .5s;

}
#perguntas:hover{
    transform: scale(1.01);
}
#perguntas img{
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}

#perguntas h2 { font-weight: 600; margin-bottom: 3rem; font-size: 3rem; color: #fff;}
#perguntas p { font-size: 1rem; }

#perguntas .accordion {
    background: #FFFF;
    border: 0;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .7rem;
}
#perguntas .accordion i { font-size: 20px; padding-left: 1px;}
#perguntas button:focus { outline: 0px !important; }

#perguntas .panel { 
    font-size: .9rem; 
    display: none; 
    font-weight: 600; 
    margin-top: -0.1rem; 
    margin-bottom: 1rem;
    padding: 0 1rem; 
}
#perguntas .panel p { margin-bottom: 0 !important; color: #fff;}
#perguntas .panel p i { font-size: 20px; color: #fff;}

#perguntas .btn_theme_secondary { padding: 1rem !important; border-radius: 12px !important; }

@media(max-width:767px){
    #perguntas {
        background: #00fefe62;
        width: 100%;
        border-radius: 70px;
        margin: 0 auto;
        padding: 3rem 0 3rem 0;
        transition: .5s;
    }
    #perguntas h2{
        text-align: center;
    }
}

/* -------------------------------------------------------------------
 * NOTICIAS - ARTIGOS - BLOG
 * -----------------------------------------------------------------*/
#noticias { padding: 6rem 0; }
#noticias h2 { font-weight: 600; font-size: 3rem; text-align: center; color: #fff;}
#noticias .h3 { font-weight: 600; font-size: 1.3rem; display: none;}
#noticias span{
    color: #06e3d5;
}
#noticias .noticias article span,
#noticias .artigos article span,
#noticias .blog article span {
    background-color: var(--color-primary);
    color: var(--color-font-light);
    text-align: center;
    font-weight: 500;
    font-size: .8rem;
    line-height: 1.1rem;
    border-radius: 6px;
    padding: 8px 12px;
    display: inline-block;
    margin-bottom: 5px;
}
#noticias .noticias article h3, #noticias .artigos h3, #noticias .blog h3 { 
    font-size: 1.1rem; 
    font-weight: 500; 
    font-weight: 600; 
    margin: 6px 0 2px 0; 
}
#noticias h3{
    color: #fff;
}
#noticias h3:hover{
    color: #81f9ef !important;
}
#noticias p{
    color: #fff !important;
}



#noticias .artigos article span { background-color: #06e3d5; }


#noticias .blog article span { background-color: #004843; }


#noticias article .image-cover { position: relative; padding: 0 !important; height: auto; }
#noticias article .image-cover img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 1s;
 }

 @media (max-width:575px) {
    #noticias h2 { font-size: 30px; }
    #noticias {
        padding: 4rem 0 2rem;
    }
}



 /* -------------------------------------------------------------------
 * NEWSLETTER
 * -----------------------------------------------------------------*/
 #newsletter{ padding: 2rem 0 4rem 0; }
 #newsletter h2 { font-weight: 600; font-size: 1.5rem; text-align: right; margin-right: 2rem; color: #fff;}
 #newsletter .form-border { border: 1px solid var(--color-secondary); padding: 0.6rem 1.5rem; border-radius: 2rem; }
 #newsletter .form-border input { 
     border: 0px; 
     min-width: 300px; 
     background-color: transparent; 
     color: #fff; 
 }
 #newsletter .form-border input::placeholder {
     color: #fff;
 }
 #newsletter .form-border input:focus, 
 #newsletter .form-border input:active {
     border: 0 !important;
     box-shadow: none !important;
 }
 #newsletter .btn_theme_primary { font-weight: 600; }
 @media (max-width:991px) {
     #newsletter h2 { font-size: 1.1rem; }
     #newsletter h2 br { display: none; }
     #newsletter .form-border input { min-width: 200px; }
 }
 @media (max-width:767px) {
     #newsletter h2 { text-align: center; margin-right: 0rem; font-size: 25px;}
 } 

/* -------------------------------------------------------------------
 * DEPOIMENTOS
 * -----------------------------------------------------------------*/
#depoimentos { 
    padding: 7rem 0 7rem 0;
}
#depoimentos h2 { font-weight: 600; margin-bottom: 3rem; font-size: 3rem; color: #fff;}
#depoimentos .depoimento-image { position: absolute; left: 0; margin-top: 5%; padding-left: 0; }

#depoimentos .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 auto;
    background-color: var(--color-box-depoimento);
    padding: 15px 20px;
    border-radius: 1rem;
    min-height: 280px;
    font-weight: 500; 
}
#depoimentos img{
    margin-left: 4rem;
    margin-top: 10rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}

#depoimentos small { font-weight: 600; }

@media(max-width:1299px) {
    #depoimentos .depoimento-image { margin-top: 11%; }
}

@media(max-width:1099px) {
    #depoimentos .depoimento-image { margin-top: 17%; }
}

@media(max-width:767px) {
    #depoimentos h2 br { display: none; }
    #depoimentos { 
        padding: 0rem 0 6rem 0;
    }
    #depoimentos h2 {
        font-weight: 600;
        margin-bottom: 3rem;
        font-size: 35px;
        color: #fff;
        text-align: center;
    }
}




/* -------------------------------------------------------------------
 * PARCEIROS
 * -----------------------------------------------------------------*/
#parceiros { padding: 2rem 0; }
#parceiros h2 { font-weight: 600; margin-bottom: 3rem; font-size: 3rem; color: #fff; text-align: center;}
#parceiros span{
    color: #06e3d5;
}
#parceiros img { max-width: 200px; border-radius: 40px; transition: .5s;}
#parceiros img:hover{
    transform: scale(1.02);
}
#parceiros .btn_theme_primary { color: var(--color-font-light) !important; font-weight: 600; }

@media(max-width:575px) {
    #parceiros { text-align: center; }
    #parceiros h2 { font-size: 1.8rem; }
    #parceiros div.d-flex { justify-content: center !important; }
}
 

/* -------------------------------------------------------------------
 * SOCIAL
 * -----------------------------------------------------------------*/
#social { padding: 2rem 0 6rem; }
#social h2 { font-weight: 600; font-size:2rem; margin-bottom: 1.6rem; color: #fff;}
#social img { max-width: 70px; margin: 0 5px; transition: .5s;}
#social img:hover{
    margin-top: -8px;
}

/* -------------------------------------------------------------------
 * FOOTER
 * -----------------------------------------------------------------*/
 #footer #footer-container {
    background-position: center;
    background: #00fefe62;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 5rem;
    color: #ffffff;
    text-align: center;
    border-radius: 20%;
}

#footer #footer-container h2 { 
    font-weight: bold; 
    margin-bottom: 2rem; 
    font-size: 2rem; 
    color: #fff;
}

#footer #footer-container h3 { 
    font-weight: 600; 
    margin-bottom: 1.5rem; 
    font-size: 1.3rem; 
    color: #fff;
}

#footer #footer-container .contatos a { 
    color: var(--color-font-light); 
}

#footer #footer-container .contatos p { 
    display: inline-block; 
    border-radius: 80px!important; 
    text-align: center; 
    margin-bottom: 0.6rem; 
    color: #fff;
    padding: 10px 20px;
    background-color: #004843 !important ;
}
#footer #footer-container .contatos p:hover{
    background-color: #00baad !important;
}

#footer #footer-container .endereco { 
    margin: 3rem auto 2rem; 
    color: #fff; 
    display: inline-flex;
    align-items: center;
}

#footer #footer-container .endereco i { 
    font-size: 3rem; 
    margin-right: 1rem; 
    color: #fff;
}

#footer #footer-container .endereco p { 
    font-weight: bold; 
    font-size: 1rem; 
    margin:0px; 
    color: #fff;
    text-align: left;
}
#foorter .btn_theme_secondary {
    border-radius: 6px !important;
    padding: 8px 22px !important;
    color: var(--color-font-light) !important;
    background-color: #ce00ff !important;
}
#footer #mapa { 
    width: 100%; 
    height: 400px; 
    border:0; 
    margin: 0; 
    display: block; 
    position: relative; 
    z-index: 2; 
}

@media (max-width: 768px) {
    #footer #footer-container .contatos p {
        max-width: 100%;
    }
}
/* Copy */
#footer #copyright {     background: #00fefe62;}
#footer #copyright .container { padding:1.2rem 0 1.5rem 0; }
#footer #copyright p{ font-size: .9rem; letter-spacing: 1px; margin: 0; color: var(--color-font-light) !important; }
#footer #copyright .selos{ padding-left: 3rem; padding-right: 3rem; }
#footer #copyright .selos a { color: var(--color-font-light); }
#footer #copyright .selos .d-flex p { font-size: 0.6rem; text-transform: uppercase; margin: 0 0 9px 0; }
#footer #copyright .selos img { max-height: 35px; }

@media (max-width:991px) {
    #footer #footer-container { padding-top: 6rem; clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%); }
    #footer #footer-container img { display: none; }
}
@media (max-width:768px) {
    #footer #footer-container { padding-top: 2rem; clip-path: none; }
    #footer #footer-container .contatos p { max-width: 100%; }
    #footer #copyright p { text-align: center; font-size: 0.8rem; }
    #footer #footer-container h2 {
        font-weight: bold;
        margin-bottom: 2rem;
        font-size: 31px;
        color: #fff;
    }
    #footer #footer-container h3 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 19px;
        color: #fff;
    }
    #footer #footer-container {
        background-position: center;
        background: #00fefe62;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        padding-top: 5rem;
        color: #ffffff;
        text-align: center;
        border-radius: 0%;
    }
}