
header#header{
    position: fixed;
    inset: 0;
    padding-inline: 50px;
    width: 100%;
    height: 100px;
    background-color: rgba(226, 18, 29, 0.95);
    backdrop-filter: blur(5px);
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    display: flex;
    will-change: padding-inline, width, background-color;
    transition: all 150ms ease-in-out;
}

header#header > div:first-child{
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    gap: 3px;
    display: flex;
}

header#header > div:first-child > p{
    font-size: 0.65rem;
    color: #f7f7f7;
    user-select: none;
}

header#header > div:first-child > img{
    height: 60px;
}

header#header > nav{
    position: fixed;
    top: 100px;
    right: 0;
    padding-top: 50px;
    padding-right: 25px;
    width: 100%;
    height: calc(100vh - 100px);
    height: calc(100dvh - 100px);
    background-color: #F7F7F7;
    justify-content: flex-start;
    align-items: flex-end;
    flex-flow: column wrap;
    display: flex;
}

header#header > nav#nav.open{
    transform: translateX(0%);
    opacity: 1;
    will-change: transform, opacity;
    transition: all 150ms ease-in;
}

header#header > nav#nav.close{
    transform: translateX(100%);
    opacity: 0;
    will-change: transform, opacity;
    transition: all 150ms ease-out;
}

header#header > nav > ul{
    list-style: none;
    justify-content: center;
    align-items: flex-end;
    flex-flow: column wrap;
    gap: 50px;
    display: flex;
}

header#header > nav > ul > li > a{
    border-radius: 5px;
    outline: 1px solid rgba(255, 255, 255, 0);
    padding: 5px;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #101015;
    text-decoration: none;
    will-change: color, outline;
    transition: color, outline 150ms ease-in-out;
}

header#header > nav > ul > li > a:is(:active, :focus){
    outline: 1px solid rgba(255, 255, 255, 0.3);
}

header#header > nav > ul > li > a:hover{
    text-decoration: underline;
}

header#header > button#btn-menu{
    border-radius: 7px;
    border: none;
    outline: 1px solid rgba(255, 255, 255, 0);
    box-shadow: none;
    width: 45px;
    height: 45px;
    font-size: 0;
    background-color: transparent;
    will-change: outline;
    transition: outline 150ms ease-in-out;
    cursor: pointer;
}

header#header > button#btn-menu:is(:active, :focus){
    outline: 1px solid rgba(255, 255, 255, 0.3);
}

header#header > button#btn-menu > i{
    font-size: 30px;
    color: #FFFFFF;
}

main#main {
  width: 100%;
  max-width: 1400px; 
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  box-sizing: border-box;
}

#s-servicos-bar{
    width: 100%;
    background-color: #F7F7F7;
    display: none;
}

#s-servicos-bar > nav{
    padding: 10px;
    width: 100%;
}

#s-servicos-bar > nav > ul{
    list-style: none;
    justify-content: center;
    align-items: flex-start;
    flex-flow: row wrap;
    gap: 20px;
    display: flex;
}

#s-servicos-bar > nav > ul > li > a{
    color: #101015;
    text-decoration: none;
}

#s-servicos-bar > nav > ul > li > a > div{
    border-radius: 5px;
    padding: 5px;
    width: 130px;
    background-color: #EFEFEF00;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    gap: 10px;
    display: flex;
    will-change: background-color;
    transition: all 120ms ease-in-out;
    cursor: pointer;
}

#s-servicos-bar > nav > ul > li > a > div:hover{
    background-color: #EFEFEFFF;
}

#s-servicos-bar > nav > ul > li > a > div > img{
    width: 32px;
    height: 32px;
}

#s-servicos-bar > nav > ul > li > a > div > p{
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
}

/* Carrosel */
#s-hero {
    width: 100%;
    user-select: none;
    will-change: width, height;
    transition: width, height 150ms ease-in-out;
    overflow: hidden;
}

#s-hero > .slider-wrapper {
    aspect-ratio: 2500 / 600;
    width: 100%;
    max-width: 2500px;
    height: auto; 
}

#s-hero > .slider-wrapper > .slider {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: auto;
    display: flex;
    height: 100%;
}

#s-hero > .slider-wrapper > .slider::-webkit-scrollbar {
    display: none;
}

#s-hero .slider a {
    flex: 1 0 100%;
    scroll-snap-align: start;
    display: block;
    height: 100%;
}

#s-hero .slider img {
   width: auto;      
    height: 100%;    
    max-width: none; 
}

#s-consulta-pneus{
    padding: 25px 0px;
    width: 100%;
    min-height: 240px;
    background-color: #FFFFFF;
    color: #E2121D;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    display: flex;
    will-change: width;
    transition: width 150ms ease-in-out;
}

#s-consulta-pneus > h2{
    margin-bottom: 20px;
    font-size: 1rem;
}

#s-consulta-pneus > div.categorias{
    margin-bottom: 25px;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    gap: 15px;
    display: flex;
}

#s-consulta-pneus > div.categorias > button.consulta-pneus-categorias{
    border: none;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
    width: 100px;
    height: 80px;
    font-size: 0.75rem;
    color: #101015;
    background-color: #FCFCFC;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    display: flex;
    cursor: pointer;
    will-change: background-color, color;
    transition: all 150 ease-in-out;
}

#s-consulta-pneus > div.categorias > button.consulta-pneus-categorias:hover{
    filter: brightness(99.3%);
}

#s-consulta-pneus > div.categorias > button.consulta-pneus-categorias.active{
    background-color: #E2121D;
    color: #F7F7F7;
}

#s-consulta-pneus > div.categorias > button.consulta-pneus-categorias.active > img{
    filter: invert() brightness(150%);
}

#s-consulta-pneus > form{
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    gap: 20px;
    display: flex;
}

#s-consulta-pneus > form > div:nth-child(1){
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    gap: 15px;
    display: flex;
}

#s-consulta-pneus > form > div:nth-child(2){
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    gap: 15px;
    display: flex;
}

#s-consulta-pneus > form > div > input{
    width: 315px;
    height: 45px;
    cursor: pointer;
}

#s-consulta-pneus > form > div > select{
    width: 95px;
    height: 45px;
    cursor: pointer;
}

#s-consulta-pneus > form > div >:is(input, select){
    outline: none;
    border-radius: 5px;
    border: 1px solid #CCCCCC;
    border-bottom: 3px solid #CCCCCC;
    padding: 10px;
    background-color: #FFFFFF;
    font-family: var(--font-family);
    font-size: 0.75rem;
    color: #101015;
    will-change: border-color;
    transition: all 150ms ease-in-out;
}

#s-consulta-pneus > form > div >:is(input, select):is(:focus, :active){
    border-bottom-color: #ee131e;
}

#s-consulta-pneus > form > div >:is(input, select):disabled{
    border-bottom-color: #CCCCCC;
    cursor: not-allowed;
}

#s-consulta-pneus > form > div > label[for='consulta-pneus-empresa']{
    width: 315px;
    font-size: 0.85rem;
    color: #101015;
    cursor: pointer;
}

#s-consulta-pneus > form > div > label[for='consulta-pneus-empresa'] > input{
    accent-color: #ee131e;
}

#s-consulta-pneus > form > button{
    border: none;
    border-radius: calc(45px / 2);
    outline: none;
    width: 100px;
    height: 35px;
    background-color: #ee131e;
    font-size: 0.75rem;
    font-weight: 300;
    color: #F7F7F7;
    letter-spacing: 1px;
    cursor: pointer;
    will-change: background-color;
    transition: all 150ms ease-in-out;
}

#s-quemsomos{
    padding: 50px 25px;
    width: 100%;
    min-height: 320px;
    background-color: #F7F7F7;
    background: url(../image/pattern_grandpneus.svg);
    background-repeat: repeat;
    background-size: 150px 150px;
    justify-content: center;
    align-items: center;
    flex-flow: column-reverse wrap;
    gap: 25px;
    display: flex;
    user-select: none;
    will-change: width;
    transition: all 150ms ease-in-out;
}

#s-quemsomos > div{
    max-width: 95%;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    display: flex;
    will-change: width;
    transition: all 150ms ease-in-out;
}

#s-quemsomos > div > picture{
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    will-change: width;
    transition: all 150ms ease-in-out;
}

#s-quemsomos > div > picture > img{
    border-radius: 10px;
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    will-change: width;
    transition: all 150ms ease-in-out;
}

#s-quemsomos > div > div > h2{
    font-size: 1.35rem;
    font-weight: 700;
    color: #101015;
}

#s-quemsomos > div > div > hr{
    margin-top: 5px;
    margin-bottom: 15px;
    border: none;
    border-bottom: 3px solid #E2121D;
    width: 100px;
    height: 3px;
}

#s-quemsomos > div > div > p{
    max-width: 640px;
    font-size: 0.85rem;
    text-align: justify;
    line-height: 1.5;
    overflow-wrap: break-word;
}

#s-quemsomos > div > div > p > strong{
    font-weight: 400;
}

#s-sobrenos{
    padding: 50px 15px;
    width: 100%;
    min-height: 60vh;
    min-height: 60dvh;
    background-color: #FFFFFF;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    display: flex;
    user-select: none;
    will-change: width;
    transition: width 150ms ease-in-out;
}

#s-sobrenos > div.div-header{
    width: 100%;
    margin-bottom: 25px;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    gap: 0px;
    display: flex;
}

#s-sobrenos > div.div-header > div.div-img{
    margin-bottom: 15px;
}

#s-sobrenos > div.div-header > div.div-h2{
    margin-bottom: 15px;
}

#s-sobrenos > div.div-header > div.div-h2 > h2{
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #101015;
}

#s-sobrenos > div.div-header > div.div-h2 > h2 > strong{
    color: #E2121D;
}

#s-sobrenos > div.div-header > div.div-p1 > p{
    line-height: 4.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: #E2121D;
}

#s-sobrenos > div.div-header > div.div-p2 > p{
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
}

#s-sobrenos > div.div-header > div.div-p2 > p > strong{
    color: #101015;
}

#s-sobrenos > div.div-card{
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    gap: 15px;
    display: flex;
}

#s-sobrenos > div.div-card > div.card{
    border-radius: 10px;
    padding: 15px;
    width: 150px;
    height: 150px;
    background-color: #F7F7F7;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    gap: 15px;
    display: flex;
}

#s-sobrenos > div.div-card > div.card > p.numbers{
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    color: #E2121D;
}

#s-sobrenos > div.div-card > div.card > p.desc{
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    color: #101015;
}

#s-marcas{
    position: relative;
    padding: 25px;
    width: 100%;
    height: 260px;
    background-color: #F7F7F7;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    gap: 25px;
    display: flex;
    will-change: width, height;
    transition: width 150ms ease-in-out;
}

#s-marcas.all{
    height: auto !important;
}

#s-marcas > h2{
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #101015;
}

#s-marcas > div{
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    gap: 25px 40px;
    display: flex;
}

#s-marcas > div > img{
    height: 50px;
}

#s-marcas > div#veja-mais-marcas{
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 3px solid #F7F7F7;
    width: 100%;
    height: 75px;
    background: linear-gradient(to top, rgba(235, 235, 235, 0.75) 45%, rgba(245, 245, 245, 0.75) 75%, transparent 90%);
    backdrop-filter: blur(2px);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: #101015;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    display: flex;
    user-select: none;
    cursor: pointer;
    will-change: letter-spacing;
    transition: all 150ms ease-in-out;
}

#s-marcas > div#veja-mais-marcas:hover{
    letter-spacing: 3px;
}

#s-marcas.all > div#veja-mais-marcas{
    display: none;
}

.container-servicos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    gap: 20px;
    padding: 20px;
    
}

#s-servicos {
    background: url(../image/pattern_grandpneus.svg);
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}


.container-servicos {
    background-color: #F7F7F7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0; 
}


.card-servicos {
    padding: 15px;
    width: 200px;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 15px;
    box-sizing: border-box;
    flex-shrink: 0;
}


.card-text h3 {
    color: rgba(226, 18, 29, 0.95);
    text-align: center;
    font-size: 1rem;
    margin: 0;
}


.card-icon {
    display: flex;
    justify-content: center; 
}


.card-icon img {
    width: 200px; 
    height: auto;
    display: block;
}

.divider {
    width: 1px;
    height: 80%;
    background-color: rgba(226, 18, 29, 0.95);
}

.payments h3 {
    display: block;
    text-align: center;
    margin: 0 auto 15px auto;
}

@media (max-width: 768px) {
    .container-servicos {
        flex-direction: column;
    }

    .divider {
        display: none;
    }
}


#s-checkup{
    padding: 25px;
    width: 100%;
    min-height: 60vh;
    min-height: 60dvh;
    background-color: #FFFFFF;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    gap: 25px;
    display: flex;
    will-change: width;
    transition: width 150ms ease-in-out;
}

#s-checkup > h2{
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: #E2121D;
    line-height: 1.5;
}

#s-checkup > img{
    border-radius: 10px;
    max-width: 640px;
    width: 100%;
    height: auto;
    filter: saturate(150%) brightness(100%);
    cursor: pointer;
    will-change: filter;
    transition: all 150ms ease-in-out;
}

#s-checkup > img:hover{
    filter: saturate(175%) brightness(90%);
}

#s-checkup > div#checkup-youtube-player{
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    display: flex;
}

#s-checkup > div#checkup-youtube-player > iframe{
    border-radius: 10px;
    max-width: 640px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #333;
}

/* Seção contato */
#contato {
  padding: 6rem;
  background: #fff;
  margin: 0 auto;
}

.titulo {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #df131d;
}

.grid-contatos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 300px;
}

.info {
  padding: 0.5rem;
  font-size: 0.9rem;
  color: #444;
}

.titulo-local {
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
}

.fa {
  margin-right: 0.5rem;
  color: #df131d;
}

iframe {
  width: 100%;
  height: 150px;
  border: 0;
  flex-grow: 1;
}

.reviews {
  position: relative; /* ou absolute/fixed, dependendo do caso */
  z-index: 0;
  margin-top: 4rem;
}


/* Trabalhe conosco */

#s-trabalheconosco{
    width: 100%;
    height: 200px;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    gap: 25px;
    display: flex;
    will-change: width;
    transition: width 150ms ease-in-out;
}

#s-trabalheconosco > h2{
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #e91924;
}

#s-trabalheconosco > div{
    margin-bottom: 20px;
}

#s-trabalheconosco > div > a{
    padding: 20px;
    border-radius: 45px;
    border: 2px solid #020202;
    width: 250px;
    height: 45px;
    background-color: #020202;
    font-size: 0.85rem;
    font-weight: 300;
    color: #F7F7F7;
    letter-spacing: 0.5px;
    text-decoration: none;
    will-change: border-color, background-color;
    transition: all 150ms ease-in;
}

#s-trabalheconosco > div > a:is(:hover, :focus, :active){
    border-color: #101010;
    background-color: #131313;
}

footer#footer {
    border-bottom: 25px solid #000;
    padding-top: 25px;
    width: 100%;
    min-height: 250px;
    background-color: #080808;
}

footer#footer > div.content {
    padding: 25px;
    width: 100%;
    min-height: 250px;
    color: #F7F7F7;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Menu Links */
footer#footer > div.content > div.menu-links {
    min-width: 160px;
    flex: 1 1 160px;
}

footer#footer > div.content > div.menu-links h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #eb353e;
}

footer#footer > div.content > div.menu-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer#footer > div.content > div.menu-links ul li {
    margin-bottom: 10px;
}

footer#footer > div.content > div.menu-links ul li a {
    color: #f7f7f7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer#footer > div.content > div.menu-links ul li a:hover {
    color: #eb353e;
}

/* Info Section (logo, social, email) */
footer#footer > div.content > div.info-section {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Slogan */
footer#footer > div.content > div.info-section > div.slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

footer#footer > div.content > div.info-section > div.slogan > p {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #f7f7f7;
}

/* Social */
footer#footer > div.content > div.info-section > div.social {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer#footer > div.content > div.info-section > div.social > ul {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
}

footer#footer > div.content > div.info-section > div.social > ul > li > a {
    font-size: 1.5rem;
    color: #eb353e;
}

/* Email */
footer#footer > div.content > div.info-section > div.email {
    text-align: center;
}

footer#footer > div.content > div.info-section > div.email > h2 {
    font-size: 0.85rem;
    color: #F7F7F7;
    margin-bottom: 5px;
}

footer#footer > div.content > div.info-section > div.email > p {
    font-size: 0.75rem;
    color: #AAAAAA;
}

/* Pagamentos */
footer#footer > div.content > div.payments {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer#footer > div.content > div.payments h3 {
    color: #eb353e;
    font-size: 1rem;
    margin-bottom: 10px;
    width: 100%;
}

footer#footer > div.content > div.payments .payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

footer#footer > div.content > div.payments .payment-icons img {
    width: 35px;
    height: auto;
    object-fit: contain;
}

/* Copy */
footer#footer > div.content > div.copy {
    flex-basis: 100%;
    text-align: center;
    margin-top: 25px;
}

footer#footer > div.content > div.copy > small {
    font-size: 0.75rem;
    color: #888888;
}



#whatsapp{
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 75px;
    height: 75px;
}

#whatsapp > div#whatsapp-icon{
    border-radius: 50%;
    width: 75px;
    height: 75px;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    display: flex;
    cursor: pointer;
}

#whatsapp > div#whatsapp-icon > img{
    width: 50px;
    height: 50px;
}

#whatsapp > div#whatsapp-icon.hide, #whatsapp > div#whatsapp-content.hide{
    display: none;
}

div#whatsapp-content{
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 2px solid #4CAF50;
    border-bottom-width: 3px;
    width: 330px;
    min-height: 330px;
    background-color: #F7F7F7;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: column wrap;
    display: flex;
}

div#whatsapp-content > div:first-child{
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    padding: 11px 15px 15px 15px;
    width: 100%;
    height: 45px;
    background-color: #4CAF50;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
    display: flex;
}

div#whatsapp-content > div:first-child > p{
    font-size: 0.8rem;
    color: #F7F7F7;
    user-select: none;
}

div#whatsapp-content > div:first-child > button{
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    font-size: 1.15rem;
    color: #F7F7F7;
    cursor: pointer;
    user-select: none;
}

div#whatsapp-content > div:last-child{
    width: 100%;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column wrap;
    display: flex;
}

div#whatsapp-content > div:last-child > div{
    padding: 5px 25px;
    width: 100%;
    height: 50px;
    background-color: #F7F7F7;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap;
    gap: 15px;
    display: flex;
    cursor: pointer;
}

div#whatsapp-content > div:last-child > div > div > p{
    font-size: 0.8rem;
    text-align: center;
    user-select: none;
}

div#whatsapp-content > div:last-child > div:hover{
    background-color: #EEEEEE;
}

 .video-GP2 {
    width: 100%;
    max-width: 580px; 
    margin: 0 auto;   
}

  .video-GP2 video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2%; 
    overflow: hidden;
  }

/*====pneus====*/

#s-pneus {
    padding: 40px;
    background: url(../image/pattern_grandpneus.svg);
    background-repeat: repeat;
    background-size: 150px 150px;
}

#s-pneus h1,
#s-pneus p {
    text-align: center;
    margin-bottom: 20px;
}

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

.card-pneus {
  display: flex;
  width: calc(25% - 15px);
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.card-foto {
  width: 60%;
}

.card-foto img {
  width: 110%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 5px;

}

.card-info {
  width: 60%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-info h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #e2121d;
}

.card-info p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.card-info a {
  background: #e2121d;
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: bold;
  width: fit-content;
}

#google-reviews {
  margin-top: 50px;
  background: #f9f9f9;
    background-repeat: repeat;
    background-size: 150px 150px;
}

a[href*="elfsight.com/google-reviews-widget"] {
    display: none !important;
  }


  .card-pneus {
  width: calc(25% - 15px);
}



/* Media Queries */

@media (max-width: 1230px) {
  .card-pneus {
    width: calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .card-pneus {
    width: 100%;
  }
}