@import "./partials/general.css";
@import "./partials/nav.css";
@import "./partials/home.css";
@import "./partials/button.css";
@import "./partials/logos.css";
@import "./partials/popular.css";
@import "./partials/value.css";
@import "./partials/contact.css";
@import "./partials/appointment.css";
@import "./partials/footer.css";
@import "./partials/scroll.css";


@font-face {
    font-family: Montserrat;
    src: url('./fonts/Montserrat-Bold.otf')
}

@font-face {
    font-family: Montserrat-light;
    src: url(./fonts/Montserrat-Light.otf);
}

@font-face {
    font-family: Montserrat-s;
    src: url(./fonts/Montserrat-Regular.otf);
}




html, body {
  overflow-x: hidden !important;
}


.btn-primary {
background: var(--first-color-lighten);
padding: 0.85rem 1rem;
display: block;
width: 100%;
border-radius: 0.4rem;
resize: none;
appearance: none;
border: none;
font-family: var(--body-font);
outline: none;
border: none;
cursor: pointer;
}

.btn-primary:hover {
    background: hsl(197, 55%, 24%);
    color: white;
    
}

.back-bo {
    z-index: -1;
    background-color: black;
}

@media (max-width: 440px) {
    #frame {
        width: ;
        height: ;
    }
}

@media (min-width: 992px) {
    #frame {
        width: ;
        height: ;
    }
}

@media only screen and (max-width:1370px) {
   #frame {
    height: 850px;
    }
}

@media only screen and (min-width:1440px) {
    #frame {
        height: 1600px;
    }
}

@media only screen and (min-width:1650px) {
    #frame {
        height: 1067px;
    }
}

@media only screen and (min-width:1920px) {
    #frame {
        height: 1080px;
    }
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
    #frame {
        width: ;
        height: ;
    }
}


@media all and (device-width: 300px) and (device-height: 990px) and (orientation:portrait) {
    #frame {
        width: ;
        height: ;
    }
}

#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; 
    z-index:999; 
}
#preloader .inner {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);  
}
.bolas > div {
  display: inline-block;
  background-color: #9bbe51;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 3px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: animarBola;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
   
}
.bolas > div:nth-child(1) {
    background-color: #8bc75a; /* Cor para a primeira bola */
    animation-duration: 0.75s ;
    animation-delay: 0;
}

.bolas > div:nth-child(2) {
    background-color: #fff212; /* Cor para a segunda bola */
    animation-duration: 0.75s ;
    animation-delay: 0.12s;
}

.bolas > div:nth-child(3) {
    background-color: #91d8f7; /* Cor para a terceira bola */
    animation-duration: 0.75s  ;
    animation-delay: 0.24s;
}

.loading-text {
    position: absolute;
    bottom: -40px; /* Ajuste conforme necessário para a posição do texto */
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #8bc75a; /* Cor do texto igual à cor da primeira bola */
    width: 100%; /* Garante que o texto ocupa 100% da largura da .inner */
    display: flex;
    justify-content: center;
    left: 18px;
}

.loading-text span {
    margin: 0 5px;
}

.loading-text .bola-text-1 {
    color: black;
}

.loading-text .bola-text-2 {
    color: black;
}

.loading-text .bola-text-3 {
    color: black;
}
 
@keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; 
  } 
}