@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;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --cor-branca: #fff;
  --cor-cinza: #2f2f2f;
  --cor-preta: #0b0b0b;
  --cor-verde: #28c70d;
  --fonte-poppins: "Poppins", sans-serif;
}

.green-text {
  display: inline;
  background: linear-gradient(to right, #28c70d 0%, #69fd00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.appointments__container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;

   
}

.appointments__container h1 {
    font-size: 4.75rem;
    text-align: center;

    @media (max-width: 600px) {
        font-size: 2.5rem;
    }
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Poppins", sans-serif;
  outline: none;
}

body {
  max-width: 1600px;
  background-image: linear-gradient(120deg, #fdfbfb 0%, #dcdddd 100%);
}


.services-btn {
    background-color: var(--cor-preta);
    width: 20em;
    height: 4em;
    border-radius: 30em;
    font-size: 15px;
    font-family: inherit;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--cor-branca);
    cursor: pointer;
  }
  
  .small {
    width: 10em;
  }
  
  .small:hover::before {
    width: 10em;
  }
  
  .services-btn::before {
    content: "";
    width: 0;
    height: 4em;
    border-radius: 30em;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #28c70d 0%, #69fd00 100%);
    transition: 0.5s ease;
    display: block;
    z-index: -1;
  }
  
  .services-btn:hover::before {
    width: 20em;
  }