:root{
    --header-height: 5rem;

    --first-color:hsl(220, 68%, 54%);
    --first-color-lighten:hsl(220, 68%, 97%);
    --title-color:hsl(220, 48%, 28%);
    --text-color:hsl(220, 12%, 45%);
    --body-color:hsl(220, 100%, 99%);



    --normal-font-size:1.375rem;
    --smal-font-size:1.125rem;
    --smaller-font-size:1rem;



    --font-medium:500;  
    --font-semi-bold:600;


    --z-tooltip:10;
    --z-fixed:100;
}

@media screen and (min-width: 1024px){
    :root {
        --normal-font-size: 1rem;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

.container{
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.header{
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    background-color: var(--body-color);
    z-index: 99999999999999999999999999999999999999;
}

.nav{
    height: var(--header-height);
}


.nav__burguer,
.nav__close{
    color: #1F3368;
}

.nav__data{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo{
    font-size: 1.65rem;
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    color: #1F3368;
    font-weight: var(--font-semi-bold);
}

.nav__logo i{
    font-size: 1.4rem;
    color: #E3622C;
}

.nav__toggle{
    position: relative;
    width: 32px;
    height: 32px;
}


.nav__burguer,
.nav__close{
position: absolute;
width: max-content;
height: max-content;
inset: 0;
margin: auto;
font-size: 1.25rem;
cursor: pointer;
transition: opacity .1s, transform .4s;
}


.nav__close{
    opacity: 0;
}

@media screen and (max-width: 1118px) {
    .nav__menu{
      position: absolute;
      left: 0;
      top: 2.5rem;
      width: 100%;
      height: calc(100vh - 3.5rem);
      overflow: auto;
      pointer-events: none;
      opacity: 0;
      transition: top .4s, opacity .3s;
    }
    .nav__menu::-webkit-scrollbar{
        width: 0;
    }
    .nav__list{
        padding-top: 1rem;
    }
}

.nav__link{
    color: #1F3368;
  background-color: var(--body-color);
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: flex;
    font-size: 1.1rem;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}

.nav__link:hover{
    background-color: #1F3368;
    color: #E3622C;
}


.show-menu{
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}

.show-icon .nav__burguer{
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__close{
    opacity: 1;
    transform: rotate(90deg);
}


.dropdown__item{
    cursor: pointer;
}

.dropdown__arrow{
    font-size: 1.25rem;
    transition: trasform .4s;
}

.dropdown__link{
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: #1F3368;
    background-color: white;
    display: flex;
    align-items: center;
    column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    transition: background-color .3s;
}

.dropdown__link i{
    font-size: 1.5rem;
    color: #E3622C;
}

.dropdown__menu{
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}

.dropdown__item:hover .dropdown__menu{
    max-height: 1000px;
    transition: max-height .4s ease-in;
}

.dropdown__item:hover .dropdown__arrow{
    transform: rotate(180deg);
}





body{
    font-family: 'Poppins', sans-serif;
    font-size: var(--normal-font-size);
    line-height: 1.8;
    background-color: var(--body-color);
    color: var(--text-color);

}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Poppins', sans-serif;
}

.main{
    width: 100%;
    padding: 0.01rem;
}

.section{
    margin-bottom: 3rem;
}


.section__title{
    font-size: 2.35rem;
    color: var(--title-color);
    margin-bottom: 0.75rem;
    text-align: center;
    margin-top: 60px;
}

.section__description{
    font-size: var(--smal-font-size);
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-services{
   display: flex;
   margin: 70px;
   flex-direction: column;
}

.services__grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.service{
    background-color: var(--first-color-lighten);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px hsla(220, 12%, 40%, .01);
}

.service__title{
    font-size: 1.5rem;
    color: var(--first-color);
    margin-bottom: 0.75rem;
}

.service__description{
    font-size: var(--smaller-font-size);
}


.footer{
    text-align: center;
    background-color: var(--body-color);
    padding: 20px 0;
    margin-top: 70px;
    color: var(--text-color);
    width: 100%;
}

.footer-container{
    display: flex;
    color: #1F3368;
}

.footer-container ul{
    width: 25%;
}

.footer-container h3{
    margin-bottom: 16px;
    font-weight: 600;
}

.redes-sociais i{
   margin-right: 10px;   
}

.footer-container ul>p{
    margin-bottom: 40px;
}

.footer-container li{
    margin: 10px 0;
}

.footer-container a{
    color: #1F3368;
}


.hr-footer{
    border: none; 
    height: 3px; 
    background-color: #E3622C; 
    margin: 40px 300px; 
}



.section-imagem{
    width: 100%;
    max-width: 89.5%;
    margin-top: 6.4% auto 0;
    align-items: center;
    border-radius: 22px;
    height: 44vh;
    background-image: url(fotos/Posto\ foto\ central.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    border-radius: 22px;
    pointer-events: none;
    z-index: 1;
}

.h1-title{
    position: relative;
    z-index: 2;
    top: 38%;
    left: 4%;
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.h2-title{
    position: relative;
    z-index: 2;
    top: 34%;
    left: 4%;   
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.p-text{
    position: absolute;
    z-index: 2;
    top: 78%;
    left: 5%;
    font-size: clamp(0.5rem, 4vw, 1.2rem);
    margin: 0;
    color: white;
}


.interface{
    margin: 0;
    padding: 0;
}

.slider{
    height: 603.31px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider .slider-container .slider-box{
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
    width: 100%;
}

.titulo-unidades{
    font-size: 66px;
    color: #1F3368;
    display: flex;
    align-items: center;
    top: 0;
    padding: 0 2%;
}

.slider .slider-box img{
    width: 30%;
    border-radius: 8px;
    height: 30%;
    left: 10%;
    top: 20px;
    object-fit: cover;
    position: absolute;
    display: flex;
    cursor: pointer;
}

.slider .slider-box::after{
    content: '';
    width: 30%;
    height: 30%;
    position: absolute;
    top: 0;
    left: 0;
}

.slider .slider-box .texto-slider{
position: absolute;
left: 68.9%;
top: 30%;
color: #1F3368;
z-index: 1;
width: 80%;
flex-direction: column;
display: flex;
}

.slider .slider-box .texto-slider h2{
    font-size: 1.7rem;
}


.local__info{
    display: flex;
    align-items: justify;
    margin-top: 30px;
}

.local__info p{
    display: flex;
    align-items: center;
    margin-top: 30px;
    
}

.local__info i{
    margin-right: 5px;
    margin-top: 20px;
}



@keyframes animatexto{
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

.slider .slider-box.ativo h2,
 .slider .slider-box.ativo p{ 
 transform: translateY(20px);
 opacity: 0;
 animation: animatexto .5s ease-in-out .7s forwards;
}

.slider .slider-box.ativo h2{
    animation-delay: 0.2s;
}

.slider .slider-box.ativo a:hover{
color: #2c4896;
}

.slider .slider-box.ativo a{
   color: #1F3368;
}

.slider-box.ativo a:hover{
    color: #273f81;
}

.slider-box.ativo p{
    width: 23%;
    text-align: center;
    margin-top: 15px;
    
}


.slider-container .slider-box.ativo{
    opacity: 1;
    z-index: 11111;
    width: 100%;
    background-color: #f5f5f5;
}

.setas{
    width: 25%;
    height: 35%;
    top: 450px;
    position: relative;
    left: 1440px;
    z-index: 222222;
    
}

.posto__ancara{
    font-size: 2rem;
}

.setas i{
    color: #fff;
    font-size: 1.5rem;
}

.setas button{
    width: 50px;
    height: 50px;
    background-color: #E3622C;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}


.setas button:hover{
    background-color: #C14F22;
}

.btn-nav-box{
    width: 87%;
    height: 110px;
    position: relative;
    bottom: 30px;
    z-index: 7777777777;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-nav-box .btn-nav{
    width: 20px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
}

.btn-nav-box .btn-nav:hover{
    background-color: #fff;
}

.btn-nav-box .btn-nav.ativo{
    background-color: #fff;
}


.container__unidades{
    display: flex;
    align-items: center; 
    gap: 2rem; 
    width: 100%;
}

.container__unidades .titulo-unidades{
    margin-top: 90px;
    color: #1F3368;
}



.apresentacao{
    padding: 20px 0;
}

.container-apresentacao{
margin: 30px auto;
display: flex;
width: 70%;
gap: 20px;
}


.content-apresentacao{
    margin: 30px auto;
    width: 70%;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.apresentacao-title{
    color: #1F3368;
    font-size: 39.5px;
    text-align: center;
    margin-top: 100px;
}

.apresentacao-paragrafo{
    margin-top: 45px;
    text-align: center;
    color: black;
    letter-spacing: 0.2px;
    font-size: 1.25rem;
    margin-left: 40px;
}

.apresentacao-link{
    display: flex;
    margin-top: 2rem;
    margin-left: 330.5px;
    font-size: 20px;
    color: #E3622C;
}

.mascote img{
    width: 400px;
    height: auto;
}



.box {
    width: 700px;
    height: 400px;
    left: 200px;
    cursor: pointer;
    position: relative;
    border: 1px solid #ddd; 
    border-radius: 8px; 
    overflow: hidden;
    background-color: white;
    transition: ease 0.2s;
}

.box:hover{
    transform: translateY(-10px);
}

.box2{
    width: 700px;
    height: 400px;
    right: 200px;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: white;
    transition: ease 0.2s;
}

.box2:hover{
    transform: translateY(-10px);
}

.boxes{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: relative;
}


.box-image {
    height: 60%; 
}

.box-image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}


.box-text {
    padding: 15px; 
    text-align: center; 
    font-size: 16px; 
    color: #333;
    height: 40%; 
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
}

.box-text h2{
    color: #1F3368;
    font-size: 1.4rem;
    
}


.post-filter{
    font-size: 2rem;
    color: #E3622C;
    font-weight: 500;
    margin: 30px;
}

.filter-item{
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.active-filter{
    background: #E3622C;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
}


.post {
    gap: 1.5rem;
    padding: 2rem;
  }
  

  .post-box {
    background: var(--body-color);
    box-shadow: 0 4px 14px hsl(355deg 25% 15% / 10%);
    padding: 20px;
    border-radius: 0.5rem;
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .post-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px hsl(355deg 25% 15% / 15%);
  }
  

  .text-post {
    background: var(--body-color);
    padding: 40px;
    border-radius: 0.5rem;
    display: flex;
    left: 50px;
    height: auto;
    width: 60%;
    align-items: center;
    position: relative;
    flex-direction: column;
  }
  
  .post-img {
    width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
  }

  .post-content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .category {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #E3622C;
    margin-bottom: 0.5rem;
  }
  
  .post-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
  }
  .post-title2{
    font-size: 1.5rem;
    font-weight: 600;
    color: #E3622C;
    margin-bottom: 0.5rem;
  }

  .post-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin-top: 100px;
    margin-bottom: 1rem;
  }
  
  .post-date {
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 400;
    color: #666;
    margin-top: auto;
  }
  

  

.post-header{
    width: 100%;
    height: 500px;
    background: #333;
}

.post-container{
    max-width: 800px;
    margin: auto;
    width: 100%;
}

.header-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8rem !important;
}

.back-home{
    margin-top: 20px;
    color: #E3622C;
    font-size: 1rem;
}

.header-title{
    width: 90%;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.header-img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.title-noticia{
    color: #E3622C;
    font-size: 1.25rem;
}

.post-content{
    margin-top: 10rem !important;
}

.sub-heading{
    font-size: 1.2rem;
    color: #1F3368;
    margin-top: 50px;
}

.post-text{
    font-size: 1rem;
    line-height: 1.7rem;
    margin: 1rem 0;
    text-align: justify;
}


.share{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}

.share-title{
    font-size: 1.1rem;
}



@media  screen and (max-width: 340px) {
    .container{
        margin-inline: 1rem;
    }

    .nav__link{
        padding-inline: 1rem;
    }
}

@media screen and (min-width: 1118px){
    .container{
        margin-inline: auto;
    }
    .nav{
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }
    .nav__toggle{
        display: none;
    }
    .nav__list{
        height: 100%;
        display: flex;
        column-gap: 3rem;
    }

    .nav__link{
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem;
    }

    .nav__link:hover{
        background-color: transparent;
    }
    .dropdown__item{
    position: relative;
    }
    .dropdown__menu{
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: 0;
        top: 6rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s;
    }

    .dropdown__link{
        padding-inline: 1rem 3.5rem;
    }


    .dropdown__item:hover .dropdown__menu{
        opacity: 1;
        top: 5.5rem;
        pointer-events: initial;
        transition: top .3s;
    }
    .section-imagem {
        margin: 5% auto;
        height: 40vh;
        top: 50px;
        max-width: 90%;
    }


    .slider{
        display: flex;
        flex-direction: column;
    }

    .h1-title, .h2-title {
        font-size: clamp(1.2rem, 4vw, 2rem);
        left: 5%;
        top: 25%;
    }

    .p-text {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        top: 60%;
        left: 5%;
    }

    .slider .slider-box img {
        width: 60%;
        height: 70%;
        left: 35%;
        top: 80px;
        cursor: pointer;
    }

    .slider .slider-box .texto-slider {
        left: 1.5rem;
        font-size: 1.2rem; 
        top: auto;
        width: 100%; 
    }


 
    .texto-slider p{
        font-size: 1.2rem;
        width: 50%;
    }

    .texto-slider a{
        font-size: 1rem;
    }

    .local__info{
        font-size: 1rem;
        text-align: center;
    }


    
    .titulo-unidades {
        font-size: 3rem; 
    }

    .local__info p {
        margin-top: 15px;
    }

    .setas {
        margin-top: 3.9rem;
        left: 60%; 

    }

    .posto__ancara{
        font-size: 1.2rem;
        text-align: center;
        left: 3rem;
    }

    .btn-nav-box {
        gap: 5px; 
    }

    .btn-nav-box .btn-nav {
        width: 15px; 
        height: 7px;
        display: none;
    }





    .container-apresentacao {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 1.5rem;
        width: 90%;
    }

    .content-apresentacao {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .apresentacao-link {
        text-align: center;
        margin: 0;
        display: inline-block;
    }

    .boxes {
        align-items: center;
        gap: 1.5rem;
        margin: 0 auto;
    }

    .box2 {
        width: 50%;
        right: 0;
    }

    .box{
        width: 50%;
    left: 0;
    }
}


@media (max-width: 1024px) {
    .section-imagem {
        margin: 5% auto;
        height: 40vh;
        top: 50px;
        max-width: 90%;
    }


    .slider{
        display: flex;
        flex-direction: column;
    }

    .h1-title, .h2-title {
        font-size: clamp(1.2rem, 3vw, 2rem);
        left: 5%;
        top: 25%;
    }

    .p-text {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        top: 60%;
        left: 5%;
    }

    .slider .slider-box img {
        width: 60%;
        height: 70%;
        left: 35%;
        top: 80px;
        cursor: pointer;
    }

    .slider .slider-box .texto-slider {
        left: 1.5rem;
        font-size: 1.2rem; 
        top: auto;
        width: 100%; 
    }


 
    .texto-slider p{
        font-size: 1.2rem;
        width: 50%;
    }

    .texto-slider a{
        font-size: 1rem;
    }

    .local__info{
        font-size: 1rem;
        text-align: center;
    }


    
    .titulo-unidades {
        font-size: 3rem; 
    }

    .local__info p {
        margin-top: 15px;
    }

    .setas {
        margin-top: 3.9rem;
        left: 60%; 

    }

    .posto__ancara{
        font-size: 1.2rem;
        text-align: center;
        left: 3rem;
    }

    .btn-nav-box {
        gap: 5px; 
    }

    .btn-nav-box .btn-nav {
        width: 15px; 
        height: 7px;
        display: none;
    }





    .container-apresentacao {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 1.5rem;
        width: 90%;
    }

    .content-apresentacao {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .apresentacao-link {
        text-align: center;
        margin: 0;
        display: inline-block;
    }

    .boxes {
        align-items: center;
        gap: 1.5rem;
        margin: 0 auto;
    }

    .box2 {
        width: 50%;
        right: 0;
    }

    .box{
        width: 50%;
    left: 0;
    }

    .post-filter {
        font-size: 1.5rem; 
        margin: 20px; 
    }

    .filter-item {
        font-size: 0.8rem; 
    }

    .post {
        gap: 1rem; 
        padding: 1.5rem; 
    }

    .post-box {
        flex-direction: column; 
        padding: 15px; 
    }

    .text-post {
        width: 90%; 
        padding: 20px; 
    }

    .post-img {
        width: 100%; 
        height: 200px; 
        margin-bottom: 1rem; 
    }

    .post-title,
    .post-title2 {
        font-size: 1.25rem; 
    }

    .post-description {
        margin-top: 1rem;
        font-size: 0.9rem; 
    }

    .post-date {
        font-size: 0.8rem; 
    }

    .footer-container {
        gap: 15px;
        text-align: center; 
    }

    .footer-container ul {
        flex: 1 1 250px; 
        text-align: center; 
    }

    .footer-container h3 {
        font-size: 1.1rem; 
    }

    .footer-container li {
        font-size: 0.85rem; 
    }

    .hr-footer {
        width: 90%; 
        margin: 15px auto; 
    }
}


@media (max-width: 768px) {
    .section-imagem {
        top: 40px;
        height: 25vh;
    }


    .slider{
        display: flex;
        flex-direction: column;
    }

    .h1-title, .h2-title {
        font-size: clamp(1.2rem, 4vw, 1rem);
        text-align: center;
        top: 25%;
        left: 0;
    }

    .p-text {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
        top: 68%; 
        left: 5%;
        text-align: center;
       }

    .slider .slider-box img {
        width: 53%;
        height: 46%;
        left: 45%;
        top: 35%;
        margin-top: 3rem;
        cursor: pointer;
    }

    .slider .slider-box .texto-slider {
        left: 1.5rem;
        font-size: 1.2rem; 
        width: 100%; 
        height: 100%;
    }

    .texto-slider p{
        font-size: 1rem;
    }

    .texto-slider a{
        font-size: 1rem;
        
    }

    .local__info{
        font-size: 1rem;
    }

    
    .titulo-unidades {
        font-size: 2rem;
    }


    .setas {
        margin-top: 3.9rem;
        left: 60%; 

    }

    .posto__ancara{
        font-size: 1.2rem;
        text-align: center;
        left: 3rem;
    }

    .btn-nav-box {
        gap: 5px; 
    }

    .btn-nav-box .btn-nav {
        width: 15px; 
        height: 7px;
        display: none;
    }
    .content-apresentacao {
        gap: 1rem;
    }

    .boxes{
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        gap: 20px; 
        padding: 10px;
    }

    .box, .box2 {
        width: 90%; 
        height: auto; 
        left: auto; 
        right: auto;
        margin: 0 auto; 
        border: 1px solid #ddd; 
        border-radius: 8px; 
        overflow: hidden; 
        background-color: white; 
        cursor: pointer;
    }

    .box-text {
        padding: 10px; 
        text-align: center;
        font-size: 14px; 
        height: auto; 
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .box-text h2 {
        font-size: 1.2rem; 
        color: #1F3368; 
    }


    .footer-container {
        flex-direction: column; 
        gap: 20px; 
    }

    .footer-container ul {
        width: 90%; 
    }

    .footer-container li {
        margin: 5px 0;
        font-size: 0.8rem; 
    }

    .hr-footer {
        width: 90%; 
        margin: 10px auto;
        height: 2px; 
    }

    .header-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .header-img {
        max-width: 100%;
    }

    .post-text {
        font-size: 0.95rem;
    }

    .sub-heading {
        font-size: 1.3rem;
    }

    .social a {
        font-size: 1.25rem;
    }
    
}

    


@media (max-width: 480px) {
    .section-imagem {
        height: 40vh;
        top: 100px;
    }

    .h1-title, .h2-title {
        font-size: 1.1rem;
        top: 15%;
    }

    .p-text {
        font-size: 0.95rem;
        top: 70%;
    }

    .slider .slider-box img {
        width: 100%;
        height: auto;
    }

    .apresentacao-paragrafo {
        font-size: 0.9rem;
    }

    .setas {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .content-apresentacao {
        gap: 1rem;
    }

    .box, .box2 {
        max-width: 100%;
    }

    .footer-container {
        gap: 15px; 
    }

    .footer-container ul {
        text-align: center; 
    }

    .footer-container li {
        font-size: 0.9rem;
    }

    .footer-container a {
        font-size: 0.85rem;
    }

    .hr-footer {
        margin: 15px auto;
        height: 1.5px; 
    }

    .mascote img{
        margin-top: 150px;
        width: 200px;
        height: 270px;
    }

    .container-apresentacao {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 1.5rem;
        width: 90%;
    }

    .content-apresentacao {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .apresentacao-link {
        text-align: center;
        margin: 0;
        display: inline-block;
    }

    .apresentacao-paragrafo{
        text-align: center;
        margin: 0;
    }
  
    
    .slider .slider-box img {
        width: 53%;
        height: 46%;
        left: 45%;
        top: 35%;
        margin-top: 3rem;
        cursor: pointer;
    }

    .slider .slider-box .texto-slider {
        left: 1.5rem;
        font-size: 1.2rem; 
        width: 100%; 
        height: 100%;
    }

    .texto-slider p{
        font-size: 1rem;
    }

    .texto-slider a{
        font-size: 1rem;
        
    }

    .local__info{
        font-size: 1rem;
    }

    
    .titulo-unidades {
        font-size: 2rem;
    }


    .setas {
        margin-top: 3.9rem;
        left: 60%; 

    }

    .posto__ancara{
        font-size: 1.2rem;
        text-align: center;
        left: 3rem;
    }

    .btn-nav-box {
        gap: 5px; 
    }

    .btn-nav-box .btn-nav {
        width: 15px; 
        height: 7px;
        display: none;
    }




    .post-filter {
        font-size: 1.5rem; 
        margin: 20px; 
    }

    .filter-item {
        font-size: 0.8rem; 
    }

    .post {
       flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        gap: 20px; 
        padding: 10px;
        width: 85%;
    }

    .post-box {
        flex-direction: column; 
        padding: 15px; 
        width: 100%;
    }

    .text-post {
        text-align: center;
        font-size: 14px; 
        height: auto; 
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
    }

    .post-img {
        width: 100%; 
        height: 200px; 
        margin-bottom: 1rem; 
    }

    .post-title,
    .post-title2 {
        font-size: 1.25rem; 
    }

    .post-description {
        font-size: 0.1rem; 
    }

    .post-date {
        font-size: 0.8rem; 
    }

    .header-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .post-text {
        font-size: 0.9rem;
    }
    

    .sub-heading {
        font-size: 1.1rem;
    }

    .social a {
        font-size: 1rem;
        margin: 0 8px;
    }

}
