
  .servicos {
    font-family: 'Poppins', sans-serif;
    background-color: #bb2227;
    width: 100%;
    height: 740px;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;     
    padding: 35px 15px; 
    box-sizing: border-box;
  }
  
  .servicos h1{
    font-weight: 450;
    color: #fff;
    
  }
  .containerCarrossel {
    max-width: 1100px;
    width: 100%;
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    box-sizing: border-box;
  }
  
  
  .carrossel {
    overflow: hidden;
    border-radius: 30px;
  }
  
  .faixaCarrossel {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
  }
  
  .faixaCarrossel > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    min-width: 100%;
    padding: 25px;
    box-sizing: border-box;
    
  }
  
  .faixaCarrossel img {
    width: 350px;
    height: auto;
    border-radius: 13px;
    object-fit: cover;
  }
  
  .faixaCarrossel h3 {
    color: #191919;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 450;
  }
  
  .faixaCarrossel p {
    color: #565656;
    font-size: 16px;
    line-height: 1.6;
  }
  

  .indicadores {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }
  
  .indicadores button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .indicadores button.ativo {
    background-color: #565656;
  }
  
  
  .linhaBotoes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .linhaBotoes button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  
  .linhaBotoes button img {
    width: 45px;
    height: 43px;
    transition: transform 0.2s;
  }
  
  .linhaBotoes button:hover img {
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
  .servicos {
    height: auto;
    padding: 20px 10px;
  }

  .servicos h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
  }

  .containerCarrossel {
    padding: 20px 10px;
    border-radius: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
  }

  .faixaCarrossel > div {
    flex-direction: column-reverse;
    gap: 10px;
    padding: 0;
    margin-top: -20px;
  }

  .faixaCarrossel img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 10px;
    margin-top: -10px;
  }

  .faixaCarrossel h3 {
    font-size: 18px;
    margin-bottom: 6px;
    text-align: center;
  }

  .faixaCarrossel p {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin: 0 5px;
  }

  .linhaBotoes {
    margin-top: 20px;
    gap: 10px;
  }

  .linhaBotoes button img {
    width: 35px;
    height: 33px;
  }

  .indicadores {
    margin-top: 10px;
  }

  .indicadores button {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 768px) {
  .faixaCarrossel img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    margin-top: -10px;
  }

  .faixaCarrossel > div {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
    padding: 0;
  }
}
