.button{
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 1.9rem);
    border-radius: 30px;
    border: none;
    font-weight: bold;
    font-size: clamp(.6rem, 2vw, 1.125rem);
    min-width: 12rem;
    cursor: pointer;
}

#logo{
    width: 150px;
}


#mobile-menu{
    width: 100%;
    height: calc(100% - 100px);
    background-image: url('../assets/images/retangle.png');
    background-position: center;
    z-index: 10000000;
    position: fixed;
    top: 100px;
    right: -2000px;
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    ul{
      li{
        margin: 1.5rem 0;
        text-align: left;
        font-size: 1.8rem;
      }
    }

}

#menu-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100000000000000 !important;

  .menu-icon-line {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--primary-text-color);
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.3s ease, background-color 0.3s ease;
    transform-origin: center;
  }

  .line1 {
    top: 13.5px;
    transform: translateY(-10px);
  }

  .line2 {
    top: 13.5px;
    transform: translateY(0);
  }

  .line3 {
    top: 13.5px;
    transform: translateY(10px);
  }

  &.open {
    .line1 {
      transform: rotate(45deg);
    }

    .line2 {
      opacity: 0;
    }

    .line3 {
      transform: rotate(-45deg);
    }
  }

  &:hover .menu-icon-line {
    background-color: var(--orange-color);
  }
}

.carousel-item{
  transition: all 0.5s ease-in-out;
}

.divisor{
  width: 100%;
  height: 2px;
  background-color: rgb(46, 46, 53);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}

.divisor-color-fill::after {
  content: '';
  display: block;
  width: 50%;
  height: 2px;
  background-color: var(--orange-color);
}

.card {
    padding: 1.2rem;
    border-radius: 2rem;
    flex: 1;
    width: 200px;
    .card-header{
        max-height: 10rem;
        min-height: 5.8rem;
        overflow-x: hidden;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .card-block{
      max-height: 10rem;
      min-height: 5rem;
    }

    .card-block-lg{
      max-height: 11rem !important;
      min-height: 6rem !important;
    }
}

.input-group{
  width: 100%;

  label{
    font-size: var(--font-size-p);
    font-weight: bold;
    color: #212127;
  }

  .input{
    width: 100%;
    margin: .7rem 0;
    padding: 1.5rem 1.2rem;
    border: 1px solid #a9a9a9;
    border-radius: 15px;
    color: #212127;
  }

  .input:focus{
    border-color: var(--orange-color);
    outline: none;
  }

  .input-textarea{
    resize: none
  }
}


  i.social-icon{
    font-size: 1.3rem !important;
  }

  .scrolltoUp{
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: var(--orange-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    opacity: 0;
    i{
      color: #fff;
      font-size: 1rem;
    }

  }

  .alert-box{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 1rem 1rem;
    /* opacity: 0; */
  }
  .alert{
    width: 300px;
    padding: 1rem;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
  }

  .alert.error{
    background-color: #ff4d4d;
  }
  .alert.success{
    background-color: #4caf50;
  }


@media (max-width: 915px) {
    .button{
        padding: 0.8rem 1.5rem;
        font-size: 14px;
    }

    #logo{
        width: 100px;
    }

    .card {
      padding: 1.1rem;
      width: 100%;
      .card-header{
          min-height: 2.6rem;
      }
      .card-block{
          min-height: 2.6rem;
      }
  }
  .input-group{

    label{
      font-size: var(--font-size-p-mobile);
    }

    .input{
      width: 100%;
    }
  }

    i.social-icon{
      font-size: .9rem !important;
    }

      .alert-box{
        justify-content: center;
      }

}
