.funnel-display {
  font-family: "Funnel Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}



    body {
      font-family: "Funnel Display", sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #333;
    }
    
    .container {
      max-width: 900px;
      margin: auto;
      
    }
    .logo {
        height: 200px;
        margin-top: 20px;
    }
    .hero {
        background-image: linear-gradient(45deg, #368394, #bbb9b9, #ffffff );
        background-size: cover;
        padding: 0 30px;
    }
    

    .hero h1 {
      font-size: 40px;
      margin-bottom: 10px;
      text-align: start;
    }
    span{
      color: #b32c2c;
    }
    .hero p {
      font-size: 18px;
      margin-bottom: 25px;
      color: #fffdfd;
    }
    
    .hero-info{
        display: flex ;
    }
    .hero-info img{
      display: none;
    }

    .buttons a {
      display: inline-block;
      margin: 10px;
      padding: 15px 25px;
      text-decoration: none;
      color: #fff;
      border-radius: 6px;
      font-weight: bold;
    }

    .btn-whatsapp {
      background: #25D366;
    }

    .btn-instagram {
      background: #b32c2c;
    }
   
    .numbs{
        display: flex;
        justify-content: space-between;
        
    }
    .numbs h2{
        color: yellow;
    }
    .numbs p{
        margin-top: -20px;
        font-size: 12px;
    }

    .back-img{
        position: absolute;
        width: 400px;
        height: 400px;
        background-image: url('./assets/cachorro.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .section {
      margin-top: 20px;
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .section h2 {
      margin-bottom: 20px;
      font-size: 26px;
    }

    .services {
        align-items: center;
    }
    .services ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
    }

    .services li {
      margin: 10px auto;  
      width: 200px;
      background: #ffffff;  
      padding: 10px;
      border-bottom: 1px solid #eee;
      font-size: 18px;
      transition: all 0.5s ease-in-out;
    }
    .services li:hover {
      background: #b32c2c;
      color: #ffffff;
      scale: 1.2;  
      border-radius: 20px;
      font-size: 18px;
        
    }
    
    .services p{
      color: transparent;
      font-size: 5px;
    }
    .services p:hover{
      color: #ffffff;
      font-size: 18px;
    }


    .social{
       background-image: linear-gradient(45deg, #368394, #bbb9b9, #ffffff );
       padding: 30px;
       margin-top: 20px;
    }
    .slider{
        margin: 0 auto;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        width: 100%;         
        height: 300px;
        cursor:grab;
    }
    .sliders{
      flex: 0 0 100%;               /* Cada slide ocupa 100% da largura */
      height: 200px;
      scroll-snap-align: start;     /* Define onde o slide deve "grudar" */
      object-fit: cover; 
      list-style-type: none;
      margin: 10px; 
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      border-radius: 20px;
      padding: 10px;
      font-size: 15px;
      animation: scroll 7s linear infinite;
    }
    .sliders img{
      width: 30px;
      margin-right: 20px;
    }
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); } /* Move até a metade (fim do primeiro set) */
    }


    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      margin-top: 20px;
    }

    .gallery img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
    }

    .location {
      text-align: center;
      font-size: 18px;
    }
    .location img {
      width: 150px;
    }

    footer {
      text-align: center;
      margin: 40px 0 10px;
      font-size: 14px;
      color: #777;
    }

    @media (min-width: 400px) {
    .hero p {
      width: 50%;
    }
    .hero-info img{
      display: block;
      width: 400px;
      position: absolute;
      right: 28vw;
      top: 15vh
    }
    .numbs {
      width: 50%;
    }
    .sliders {
      flex: 0 0 30%;               /* Cada slide ocupa 100% da largura */
    }

    
}