@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Grandstander&family=Lato:ital,wght@0,400;0,700;0,900;1,700;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family: 'popppins', sans-serif;
}

html {
    font-size: 65.5%;
}

:root {
    --preto: #2f2e30;
    --vermelho: #e84b2c;
    --vermelho-forte: #ec2020;
    --branco: #ffffff;
    --cinza: #ebf4ff;
    --branco-cinza: #f2f2f2;
    --cinza-escuro: #afaaaa;
    --amarelo: #e6d839;
    --laranja: #dbaf25;
    --verde-claro: #7cd164;
    --verde-escuro: #377041;
    --azul-ciano: #2eb8ac;
    --azul: #194995;
    --azul-forte: #233657;
    --azul-claro: #6c9cdc;
    --azul-claro-hover: #5681b9;
}

body {
    background-color: var(--branco);
    
}

button {
    background-color: transparent;
}

/* scroll */

::-webkit-scrollbar {
    width: 12px;
    background-color: var(--cinza);
    border:  5px solid var(--branco);
}

::-webkit-scrollbar-thumb {
    background-color: var(--azul-claro);
    border-radius: 50px;
    border: 2px solid var(--branco);
}


/* INICIO CABEÇALHO NAV */

.topo-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: sticky;
    left: 0;
    top: 0;
    padding: 0.5rem 9.5%;
    background: var(--branco);
    box-shadow: 0 0 5px rgba(190, 190, 190, 0.5), 0 0 10px rgba(190, 190, 190, 0.5);
    z-index: 111;
    transition: 0.4s ease;
    min-height: 55px;
}

.topo-menu.sticky {
    padding: 0 9.5%;
}

.topo-menu .logo img {
    width: 200px;
    margin-left: 3rem;
    margin-top: 5px;
}

.topo-menu nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

nav .menu-site ul li {
    padding: 2.5rem 0.5rem;
}

nav .menu-site .menu-links {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

nav .menu-site .menu-links  li a {
    position: relative;
    color: var(--preto);
    font-size: 1.4rem;
    font-weight: 600;
}

nav .menu-site .menu-links  li .user i {
    position: relative;
    color: var(--preto);
    font-size: 2rem;
    font-weight: 500;
}

nav .menu-site .menu-links  li .user p {
    color: var(--preto);
    display: none;
}

nav .menu-site .menu-links  li .user i:hover {
    color: var(--vermelho);
}

nav .menu-anunciar {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

nav .menu-anunciar button {
   background-color: transparent;
}

nav .menu-anunciar i {
    font-size: 1.9rem;
    color: var(--preto);
    cursor: pointer;
}

nav .menu-anunciar .add-btn {
    position: relative;
    background: var(--azul-claro);
    font-size: 1.5rem;
    letter-spacing: 2px;
    padding: 1.2rem 1.5rem 1.1rem;
    color: var(--branco);
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.7s;
    box-shadow: 1px 2px 3px rgba(73, 64, 64, 0.452);
    text-transform: uppercase;
}

nav .menu-anunciar .add-btn:hover {
    background: var(--azul-claro-hover);
    box-shadow: 3px 3px 8px rgba(73, 64, 64, 0.452);
}

nav .menu-anunciar .add-btn i,
nav .menu-anunciar .add-btn i:hover {
    color: var(--branco);
    padding-right: 0.5rem;
}

#menuBtn {
    font-size: 3.5rem;
}

nav .menu-anunciar i:hover {
    color: var(--vermelho);
}

nav .menu-site ul li a:hover,
nav .menu-site ul li a.active {
    color: var(--vermelho);
}

/* INICIO DROPDOWN */

nav .menu-site ul li .menuSub {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: absolute;
    top: 6rem;
    text-align: justify;
    width: 190px;
    background-color: var(--branco);
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(190, 190, 190, 0.5);
    padding: 0.5rem 0 0;
    display: none;
}

nav .menu-site ul li {
    transition: 0.4s ease;
}

nav .menu-site ul li:hover .menuSub {
    display: flex;
}

nav .menu-site ul li .menuSub li {
    border-bottom: 1px solid rgba(190, 190, 190, 0.5);
    padding: 1rem 0 1rem 1rem;
    height: 35px;
    z-index: 100;
    overflow: hidden;
}

nav .menu-site ul li .menuSub li a {
    font-size: 1.2rem;
    transition: 0.4s ease;
}

nav .menu-site ul li .menuSub li a:hover {
    font-size: 1.3rem;
    padding-left: 0.5rem;
}

/* FIM DROPDOWN */

/* INICIO MOBILE MENU-SITE*/

@media(max-width: 1370px) {
    nav .menu-site ul li {
        gap: 1.2rem;
    }

    nav .menu-site .menu-links {
        gap: 0.5rem;
    }
}

@media(max-width: 1190px) {
    nav .menu-site ul li {
        padding: 2.1rem 0;
    }

    nav .menu-site .menu-links {
        gap: 1.2rem;
    }

    nav .menu-anunciar .add-btn {
        display: none;
    }
}

@media(max-width: 991px) {
    nav .menu-site .menu-links {
        position: absolute;
        top: 5.3rem;
        left: 0;
        width: 60%;
        display: block;
        background: var(--branco);
        box-shadow: 0 0 5px rgba(190, 190, 190, 0.5),
        0 0 10px rgba(190, 190, 190, 0.5);
        padding: 30px;
        transition: 0.5s ease-in-out;
        display: none;
    }

    .topo-menu .logo img {
        margin-left: 1rem;
    }

    nav .menu-site .menu-links.active {
        display: block;
    }

    .topo-menu.sticky {
        padding: 0.6rem 9.5%;
    }

    nav .menu-site ul li {
        padding: 1rem 0;
    }

    nav .menu-site .menu-links  li .user i {
        display: none;
    }
    
    nav .menu-site .menu-links  li .user p {
        display: block;
    }

    nav .menu-site ul li .menuSub {
        position: sticky;
        display: none;
    }

    nav .menu-anunciar i.cart {
        display: none;
    }
}

@media(max-width: 991px) {
    .topo-menu .logo img {
        width: 150px;
    }

    nav .menu-site .menu-links {
        top: 4.9rem;
    }
}

/* FIM MOBILE MENU-SITE*/
/* fIM CABEÇALHO NAV */

.slider {
   height: auto;
   padding: 1.5rem;
   background-color: var(--branco);
}

.content {
    height: auto;
    max-width: 1600px;
    border-radius: 12px;
    overflow: hidden;
    margin: auto;
    background-color: transparent;
    padding: 5px 5px 0;
}

.swiper {
    width: 120%;
    margin-left: auto;
    margin-right: auto;
}


.swiper-slide {
    background-size: cover;
    background-position: center;
    padding: 5px;
    overflow: hidden;
}

.mySwiper2 {
    height: auto;
    width: 100%;
}

.mySwiper {
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: auto;
    opacity: 0.5;
   display: none;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide .img-cr .image {
    display: block;
    width: 100%;
    height: 50vh;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 5px var(--preto);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 5px var(--preto);
}

.swiper2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 25vh;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 5px var(--preto);
}

.overlay {
    position: absolute;
    top: 0px;
    color: white;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content:start;
    align-items:start;
    display: none;
}

.text1 {
    margin: 15px 10px 5px;
    background-color: rgba(116, 58, 207, 0.5);
    font-size: 1rem;
    padding: 0.2rem 0.7rem;
    border-radius: 6px;
}
  
.text2 {
      margin: 3px 10px;
      background-color: rgba(212, 145, 19, 0.5);
      font-size: 1rem;
      padding: 0.2rem 0.7rem;
      border-radius: 6px;
}
  
.text3 {
      margin: 3px 10px;
      background-color: rgba(196, 75, 20, 0.5);
      font-size: 1rem;
      padding: 0.2rem 0.7rem;
      border-radius: 6px;
}
  
.text4 {
      margin: 3px 10px;
      background-color: rgba(115, 236, 91, 0.5);
      font-size: 1rem;
      padding: 0.2rem 0.7rem;
      border-radius: 6px;
}

/* FIM SLIDE */
/* INICIO SLIDE MOBILE */

@media(max-width:1309px){
    .swiper-slide .img-cr .image {
        height: 40vh;
    }
}

@media(max-width:768px){
    .swiper-slide .img-cr .image {
        height: 70vh;
    }

    .overlay {
        display: block;
    }

    .mySwiper .swiper-slide {
       display: block;
    }

}

@media(max-width:650px){
    .slider {
        padding: 0.5rem;
     }

     .swiper-slide .img-cr .image {
        height: 65vh;
    }

    .content {
        height: auto;
        padding: 0px 2px 0;
    }

    .mySwiper .swiper-slide {
        display: block;
    }
}

@media(max-width:546px){
    .swiper-slide .img-cr .image {
        height: 50vh;
    }  
}

@media(max-width:446px){
    .swiper-slide .img-cr .image {
        height: 40vh;
    }  
}

@media(max-width:394px){
    .swiper-slide .img-cr .image {
        height: 35vh;
    }  
}

/* FIM SLIDE MOBILE */

/* INICIO INFORMAÇOES */

.anuncio {
    max-width: 1000px;
    display: flex;
    margin: auto;
    padding: 0px 20px 15px;
}

.anuncio .col-1 {
    width: 75%;
    margin-right: 15px;
}

.anuncio .col-1 .inicio {
    display: flex;
    margin-bottom: 10px;
}

.anuncio .col-1 .inicio a {
    color: var(--preto);
    font-size: 1.2rem;
    margin-right: 10px;
    cursor: pointer;
    padding: 8px 4px;
    transition: all 0.2s ease;
}

.anuncio .col-1 .inicio p {
    color: var(--preto);
    font-size: 1.2rem;
    margin-right: 10px;
    padding: 8px 4px;
}

.anuncio .col-1 .inicio a:hover {
    text-decoration: underline;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.anuncio .col-1 .nome-car {
    display: flex;
    border-radius: 12px;
    background-color: var(--branco);
    box-shadow: 0 0 3px var(--preto);
    padding: 15px;
    justify-content: space-between;
    margin-bottom: 15px;
}

.anuncio .col-1 h5 {
    font-size: 1.7rem;
    padding-bottom: 0.8rem;
    color: var(--preto);
}

.anuncio .col-1 .nome-car .marca-modelo {
    font-size: 1.9rem;
    color: var(--preto);
}

.anuncio .col-1 .nome-car .marca-modelo span {
    color: var(--vermelho);
}

.anuncio .col-1 .nome-car .anuncio-box .nome {
    display: grid;
    gap: 0.5rem;
}

.anuncio .col-1 .nome-car .nome span {
    font-size: 1.5rem;
    color: var(--preto);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.anuncio .col-1 .nome-car .nome .valor {
    font-size: 1.7rem;
    color: var(--azul);
    font-weight: 600;
}

.anuncio .col-1 .nome-car .anuncio-linha2 {
    display: flex;
}

.anuncio .col-1 .nome-car .anuncio-linha2 img {
    width: 40px;
    margin-right: 20px;
    margin-top: -25px;
}

.col-1 .nome-car .anuncio-linha2 .heart-cortilha .heart {
    font-size: 2.5rem;
    color: var(--vermelho);
    margin-top: 5px;
}

.col-1 .nome-car .anuncio-linha2 .heart-cortilha .share {
    font-size: 2.5rem;
    color: var(--cinza-escuro);
    margin-top: 1rem;
}

.anuncio .col-1 .infomation {
    border-radius: 12px;
    background-color: var(--branco);
    box-shadow: 0 0 3px var(--preto);
    padding: 15px;
    margin-bottom: 1.5rem;
}

.anuncio .col-1 .infomation .anuncio-linha {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2px;
}

.anuncio .col-1 .infomation .anuncio-linha .anuncio-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.anuncio .col-1 .infomation .anuncio-linha .anuncio-box span {
    font-size: 1.1rem;
    color: var(--preto);
}

.anuncio .col-1 .infomation .anuncio-linha .anuncio-box p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--preto);
    margin-top: 0.5rem;
}

.anuncio .col-1 .infomation p.dec {
    font-size: 1.4rem;
    color: var(--preto);
    padding-bottom: 0.5rem;
}

.anuncio .col-1 .infomation .anuncio-acessorios {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

.anuncio .col-1 .infomation .anuncio-acessorios p.ac {
    font-size: 1.3rem;
    color: var(--preto);
}

.anuncio .col-1 .infomation .anuncio-acessorios p.ac i {
    color: var(--verde-claro);
    padding-right: 0.5rem;
}

.anuncio .col-1 .infomation .anuncio-historico p.ac {
    font-size: 1.3rem;
    color: var(--preto);
}

.anuncio .col-1 .infomation .anuncio-historico p.ac i {
    color: var(--verde-claro);
    font-weight: 600;
    padding-right: 0.5rem;
}

.anuncio .col-1 .infomation #myDiv {
    overflow: hidden;
    max-height: 35px;
    transition: all 0.9s ease;
}

.anuncio .col-1 .infomation #myDiv.expanded {
    max-height: 130vh;
}

.anuncio .col-1 .infomation .anuncio-importantes p.ac {
    font-size: 1.3rem;
    line-height: 2rem;
    color: var(--preto);
}

.anuncio .col-1 .infomation h6 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--azul-ciano);
    margin-top: 1rem;
}

.anuncio .col-1 .infomation button {
    background-color: transparent;
}

.anuncio .col-1 .infomation #verMenos {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.anuncio .col-1 .infomation #verMais {
    cursor: pointer;
    padding: 0.5rem;
}

.anuncio .col-1 .infomation-img img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 0 3px var(--preto);
}

/*-------------  BARRA LATERAL --------------*/

.anuncio-barra-lateral {
    margin-top: 40px;
    width: 25%;
}

.anuncio-barra-lateral .col-2 {
    border-radius: 12px;
    background-color: var(--branco);
    box-shadow: 0 0 3px var(--preto);
    padding: 15px 15px;
    margin-bottom: 1.5rem;
}

.anuncio-barra-lateral .col-2-faleConosco {
    border-radius: 12px;
    background-color: var(--branco);
    box-shadow: 0 0 3px var(--preto);
    padding: 15px 15px;
    margin-bottom: 1.5rem;
}

.anuncio-barra-lateral .col-2 .anuncio-bl-cliente {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.anuncio-barra-lateral .col-2 .anuncio-bl-cliente img {
    width: 100%;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 3px var(--preto);
}

.anuncio-barra-lateral .col-2 .anuncio-bl-cliente h6 {
    font-size: 1.4rem;
    color: var(--azul-forte);
    margin-bottom: 1rem;
}

.anuncio-barra-lateral .col-2 .anuncio-bl-cliente span {
    margin-bottom: 1rem;
}

.anuncio-barra-lateral .col-2 .anuncio-bl-cliente span a {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--cinza-escuro);
    transition: all 0.4s ease;
}

.anuncio-barra-lateral .col-2 .anuncio-bl-cliente span a:hover {
    color: var(--preto);
}

.col-2 .anuncio-bl-cliente .anuncio-bl-info .face {
    color: var(--azul);
    cursor: pointer;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
    transition: all ease-in-out 150ms;
}

.col-2 .anuncio-bl-cliente .anuncio-bl-info .face:hover {
    margin-top: -5px;
    text-shadow: 0px 6px 5px rgba(0, 0, 0, 0.3);
    transform: translate(0, -8);
}

.col-2 .anuncio-bl-cliente .anuncio-bl-info .insta {
    color: #e28710;
    cursor: pointer;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
    transition: all ease-in-out 150ms;
}

.col-2 .anuncio-bl-cliente .anuncio-bl-info .insta:hover {
    margin-top: -5px;
    text-shadow: 0px 6px 5px rgba(0, 0, 0, 0.3);
    transform: translate(0, -8);
}

.col-2 .anuncio-bl-cliente .anuncio-bl-info .tube {
    color: var(--vermelho-forte);
    cursor: pointer;
    text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
    transition: all ease-in-out 150ms;
}

.col-2 .anuncio-bl-cliente .anuncio-bl-info .tube:hover {
    margin-top: -5px;
    text-shadow: 0px 6px 5px rgba(0, 0, 0, 0.3);
    transform: translate(0, -8);
}

.col-2 .anuncio-bl-cliente .anuncio-bl-info i {
    font-size: 2.5rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.col-2 .anuncio-bl-cliente .anuncio-bl-info i:hover {
    transform: scale(1.1);   
}

.anuncio-barra-lateral .col-2 .anuncio-bl-localizacao h3 {
    font-size: 1.3rem;
    color: var(--azul-forte);
    margin-top: 5px;
    margin-bottom: 2px;
}

.anuncio-barra-lateral .col-2 .anuncio-bl-localizacao h4 {
    font-size: 1.1rem;
    color: var(--azul-forte);
    margin-bottom: 2rem;
}

.anuncio-barra-lateral .col-2 .btn-anuncio {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.anuncio-barra-lateral .anuncio-bl-envio-cliente .btn-anuncio {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.anuncio-barra-lateral .col-2 .btn-anuncio-btn i {
    font-size: 1.5rem;
}

.anuncio-barra-lateral .col-2 .btn-anuncio-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 10px 20px;
    letter-spacing: 1px;
    border-radius: 24px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: 0.4s ease;
}

.anuncio-barra-lateral .col-2 .btn-anuncio-btn:hover {
    background-color: #1b8146;
    box-shadow: 3px 3px 8px rgba(73, 64, 64, 0.452);
}

.anuncio-barra-lateral .col-2 .btn-anuncio-fone {
    display: none;
    background-color: #2653b4;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: 0.4s ease;
    margin-left: 20px;
}

.anuncio-barra-lateral .col-2-faleConosco .anuncio-bl-envio-cliente h6 {
    font-size: 1.5rem;
    color: var(--preto);
    padding-bottom: 0.5rem;
}

.anuncio-barra-lateral .col-2-faleConosco .anuncio-bl-envio-cliente input,
.anuncio-barra-lateral .col-2-faleConosco .anuncio-bl-envio-cliente textarea {
    width: 100%;
    border: 1px solid var(--cinza);
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 1.4rem;
}

.anuncio-barra-lateral .col-2-faleConosco .anuncio-bl-envio-cliente button {
    color: var(--branco);
    background-color: var(--azul-claro);
    font-size: 1.3rem;
    letter-spacing: 1px;
    position: relative;
    padding: 1rem 2rem;
    margin-top: 1rem;
    border-radius: 24px;
    transition: 0.4s ease;
    cursor: pointer;
}

.anuncio-barra-lateral .col-2-faleConosco .anuncio-bl-envio-cliente button:hover {
    background-color: var(--azul-claro-hover);
    box-shadow: 3px 3px 8px rgba(73, 64, 64, 0.452);
}

.anuncio-barra-lateral .col-2 .anuncio-vend {
    height: 56vh;
}

.anuncio-barra-lateral .infomation-img {
    display: none;
}

@media(max-width:791px) {
    .anuncio {
        display: block;
    }

    .anuncio .col-1 {
        width: 100%;
        margin-right: 15px;
    }

    .anuncio .col-1 .infomation-img {
        display: none;
    }

    .anuncio-barra-lateral {
        margin-top: 15px;
        width: 100%;
    }

    .anuncio-barra-lateral .col-2 {
        display: block;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .anuncio-barra-lateral .col-2 .anuncio-bl-cliente img {
        width: 200px;
        height: 100px;
    }

    .anuncio-barra-lateral .col-2 .btn-anuncio-fone {
        display: block;
    }

    .anuncio-barra-lateral .col-2-faleConosco {
        display: none;
    }

    .anuncio-barra-lateral .col-2 .anuncio-vend {
        height: 150px;
    }

    .anuncio-barra-lateral .infomation-img {
        display: block;
    }

    .anuncio-barra-lateral .infomation-img img {
        border-radius: 12px;
        width: 100%;
        box-shadow: 0 0 3px var(--rosa);
    }
}

@media(max-width:600px) {
    .anuncio .col-1 .infomation .anuncio-acessorios {
        grid-template-columns: 1fr 1fr;
    }

    .anuncio .col-1 h5 {
        font-size: 2rem;
    }

    .anuncio .col-1 .nome-car .nome span {
        font-size: 1.8rem;
    }
    
    .anuncio .col-1 .nome-car .nome .valor {
        font-size: 1.9rem;
    }

    .anuncio .col-1 .infomation .anuncio-linha .anuncio-box span {
        font-size: 1.4rem;
    }

    .anuncio .col-1 .infomation .anuncio-linha .anuncio-box p {
        font-size: 1.6rem;
    }
}

@media(max-width:508px) {
    .anuncio .col-1 .infomation .anuncio-linha {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width:475px) {
    .anuncio .col-1 .infomation .anuncio-acessorios {
        grid-template-columns: 1fr;
    }
}

@media(max-width:419px) {
    .anuncio .col-1 .infomation .anuncio-linha {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------------FIM INFORMAÇOES ---------------*/

/* --------------- INICIO RODAPE ---------------*/

.rodape {
    background-color: var(--azul-claro);
}

.rodape .rodape-linha {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 2rem 16rem;
    justify-content: center;
}

.rodape-linha .rodape-col img {
    width: 200px;
    height: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.rodape-linha .rodape-col p {
    font-size: 1.3rem;
    color: var(--branco);
    padding-bottom: 2rem;
}

.rodape-linha .rodape-col span {
    font-size: 1.2rem;
    display: block;
    color: var(--branco);
    padding-bottom: 1rem;
}

.rodape-linha .rodape-col span i {
    font-size: 15px;
    background: var(--rosa);
    padding: 0.5rem;
    margin-right: 5px;
    border-radius: 10px;
}

.rodape-linha .rodape-col h5 {
    font-size: 1.9rem;
    position: relative;
    color: var(--branco);
    letter-spacing: 1px;
    padding: 0.5rem;
    margin: 1rem 0;
}

.rodape-linha .rodape-col h5::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--branco);
}

.rodape-linha .rodape-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--azul-claro-hover);
}

.rodape-linha .rodape-col a {
    display: block;
    font-size: 1.6rem;
    color: var(--branco);
    padding-top: 1rem;
    transition: 0.4s ease;
}

.rodape-linha .rodape-col a:hover {
    color: var(--azul-forte);
    padding-left: 5px;
}

.rodape-linha .rodape-col input {
    width: 100%;
    height: 40px;
    font-size: 1.4rem;
    color: var(--preto);
    padding-left: 10px;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.rodape-linha .rodape-col button {
    font-size: 1.6rem;
    color: var(--branco);
    padding: 1rem 2rem;
    cursor: pointer;
    transition: 0.4s ease;
    border-radius: 5px;
    border: 1px solid var(--branco);
}

.rodape-linha .rodape-col button:hover {
    background-color: var(--azul-claro-hover);
    
}

.rodape .rodape-direitos {
    background-color: var(--azul-claro);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 2rem 16rem;
}

.rodape .rodape-direitos p {
    color: var(--branco);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.rodape .rodape-direitos p span {
    color: var(--azul-forte);
    font-size: 1.1rem;
}

.rodape .rodape-direitos i.tube{
    color: var(--vermelho);
    font-size: 2rem;
    margin-right: 1rem;
    transition: 0.4s ease;
    background-color: var(--branco);
    padding: 0.4rem;
    border-radius: 5px;
}

.rodape .rodape-direitos i.face{
    color: var(--roxo-claro);
    font-size: 2rem;
    transition: 0.4s ease;
    background-color: var(--branco);
    padding: 0.4rem;
    border-radius: 5px;
    
}

.rodape .rodape-direitos i.insta{
    color: #e48c51;
    font-size: 2rem;
    margin-right: 0.8rem;
    transition: 0.4s ease;
    background-color: var(--branco);
    padding: 0.4rem;
    border-radius: 5px;
}

.rodape .rodape-direitos i.tube:hover{
    cursor: pointer;
    transform: scale(1.1);
}

.rodape .rodape-direitos i.face:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.rodape .rodape-direitos i.insta:hover{
    cursor: pointer;
    transform: scale(1.1);
}

/* INICIO MOBILE RODAPE */

@media(max-width:1150px){
    .rodape .rodape-linha {
       grid-template-columns: 1fr 1fr 1fr; 
       padding: 2rem 7rem;
    }
}

@media(max-width:856px){
    .rodape .rodape-linha {
       grid-template-columns: 1fr 1fr;
    }

    .rodape .rodape-direitos {
        padding: 2rem 7rem;
    }
}

@media(max-width:667px){
    .rodape .rodape-linha {
       grid-template-columns: 1fr;
       padding-left: 14rem;
    }

    .rodape .rodape-direitos {
        padding: 2rem 4rem;
    }
}

@media(max-width:499px){
    .rodape .rodape-linha {
       grid-template-columns: 1fr;
       padding-left: 7rem;
    }

    .rodape .rodape-direitos {
        padding: 2rem 1rem;
    }
}

@media(max-width:449px){
    .rodape .rodape-linha {
       grid-template-columns: 1fr;
       padding-left: 4rem;
    }

    .rodape-linha .rodape-col span i {
        font-size: 12px;
        background: none;
        margin-right: 10px;
    }
}

@media(max-width:430px){
    .rodape .rodape-direitos {
        flex-direction: column-reverse;
    }
}

/* INICIO MOBILE RODAPE */

@media(max-width:1150px){
    .rodape .rodape-linha {
       grid-template-columns: 1fr 1fr; 
       padding: 2rem 7rem;
    }
}

@media(max-width:756px){
    .rodape .rodape-linha {
       grid-template-columns: 1fr 1fr;
    }

    .rodape .rodape-direitos {
        padding: 2rem 7rem;
    }
}

@media(max-width:567px){
    .rodape .rodape-linha {
       grid-template-columns: 1fr;
       padding-left: 14rem;
    }

    .rodape .rodape-direitos {
        padding: 2rem 4rem;
    }
}

@media(max-width:499px){
    .rodape .rodape-linha {
       grid-template-columns: 1fr;
       padding-left: 7rem;
    }

    .rodape .rodape-direitos {
        padding: 2rem 1rem;
    }
}

@media(max-width:449px){
    .rodape .rodape-linha {
       grid-template-columns: 1fr;
       padding-left: 3rem;
    }

    .rodape-linha .rodape-col span i {
        font-size: 12px;
        background: none;
        margin-right: 5px;
    }
}

@media(max-width:430px){
    .rodape .rodape-direitos {
        flex-direction: column-reverse;
    }

    .rodape-linha .rodape-col a {
        font-size: 1.4rem;
    }

    .rodape-linha .rodape-col span {
        font-size: 1.2rem;
    }
}
/* FIM  MOBILE RODAPE */
/* FIM RODAPE */
