:root {
  --cor-principal: #FDA52D; 
  --cor-background: black;
  --cor-text: white;
}

main {
  margin-top: 60px;
  background-color: #fff;
}

* {
  margin: 0;
  box-sizing: border-box;
}


.elevacao {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.elevacao:hover {
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.font-small {
  font-size: 12px;
  margin: 0px -10px;
}

.row-col {
  flex-direction: row;
  display: flex;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .row-col {
    flex-direction: column;
    /* justify-content: center; */
  }

  #artigos-home {
    display: block!important;
  }

}

.row-col-small {
  flex-direction: row;
  display: flex;
  justify-content: space-around;
}

@media (max-width: 668px) {
  .row-col-small {
    flex-direction: column;
  }
}

.row-col-gr {
  flex-direction: row;
  display: flex;
  justify-content: space-around;
}

@media (max-width: 1068px) {
  .row-col-gr {
    flex-direction: column;
    /* justify-content: center; */
  }
}

@media (max-width: 668px) {
  .sm-text-center {
    text-align: center;
  }
}
.up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 10vh;
  height: 10vh;
  z-index: 9999; 
}

.botao-vermelho-pequeno {
  margin-top: 10px;
  color: #fff;
  background-color: var(--cor-principal);
  border-radius: 20px;
  border: none;
  padding: 3px 8px;
  font-size: 14px;
  transition: background-color 0.4s ease;
}

.botao-vermelho-medio {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  color: #fff;
  background-color: var(--cor-principal);
  border-radius: 8px;
  border: none;
  padding: 8px 50px;
  transition: background-color 0.4s ease;
}
.botao-preto-grande {
  margin-top: 10px;
  color: #fff;
  background-color: #212529;
  border-radius: 10px;
  border: none;
  padding: 8px;
  width: 100%;
  transition: background-color 0.4s ease;
}
.botao-vermelho-medio:hover,
.botao-vermelho-pequeno:hover {
  color: #fff;
  background-color: #212529;
}

.botao-preto-grande:hover {
  color: #fff;
  background-color: var(--cor-principal);
}

h1,
h3 {
  font-family: "Montserrat", sans-serif;
}


/* header - nav */
nav {
  transition: all 0.5s;
  z-index: 10;
}

.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  z-index: 100;
  background-color: white;
  border-bottom: solid 2px transparent;
  box-shadow: rgba(50, 50, 93, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
  display: flex;
  justify-content: center;
}

.nav-items {
  display: flex;
  justify-content: space-around;
  width: 1200px;
  margin-bottom: 10px;
}

.header-line {
  font-size: 3.5rem;
}

.nav-link{
  font-size: 20px;
  color: var(--cor-principal);
  border-bottom: solid 1px transparent;
}

.nav-link:hover{
  color: black!important;
  border-bottom: solid 1px black;
  transition: all .5s;
}

/* seachbar */

#seachbar {
  padding-top: 60px;
}

#seachbar input {
  background-color: #eeeeee;
}

@media (max-width: 768px) {
  #seachbar {
    margin-top: -25px;
    padding: 0px 20px;
  }
}

/* artigo */
.card-artigo {
  position: relative;
  padding: 0;
  overflow: hidden;
  
}

.card-artigo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center center;
  transform: scale(1); /* Redefine o zoom da imagem para o tamanho original */
  transition: transform 0.3s ease;
}
.div-artigo{
  flex: 1;
  width: 100%;
}
.div-artigo:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

#cards {
  padding: 5% 7%;
  /* font-family: "Montserrat", sans-serif;   */
  /* margin: 20px 0px; */
}

#cards a, #destaque a {
  color: var(--cor-principal);
  font-weight: bold;
  font-family: "roboto", sans-serif;
  font-size: 18px;
}
#cards a:hover, #destaque a:hover {
  color: #373a3e;
  transition: all .5s;
}

#hero {
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), */
  background: ("../images/massage.jpg");
  background-size: cover;
  background-position: center;
  padding: 13% 7%;
}


#contact .col-md-6:nth-child(1) {
  padding: 5% 7%;
}

#contact .col-md-6:nth-child(2) {
  padding: 5% 7%;
}

@media only screen and (min-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}

@media only screen and (max-width: 768px) {
  #artigos {
    padding: 4rem 7%;
  }
}

@media only screen and (max-width: 600px) {
  .header-line {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 400px) {
  .header-line {
    font-size: 2rem;
  }
}

.artigos-rodape p{
  width: 100%;
  margin-botton: 0px;
  font-family: 'Orbitron', sans-serif;
}

@media (max-width: 570px) {
  .artigos-rodape {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Artigos  */

#artigos {
  padding: 5% 7%;
  position: relative;
  display: inline-block;
}

#artigos h3{
  color: var(--cor-principal);
}

.div-img-artigos {
  width: 333px;
  height: 250px;
  overflow: hidden;
}
#artigos img {
  width: 333px;
  height: 250px;
}

#resultados {
  z-index: 2;
  text-align: center;
  font-size: 20px;
}

.category {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--cor-principal);
  border-radius: 20px;
  padding: 2px 10px;
  color: white;
  z-index: 5;
}

/* TOP ARTIGOS */

.top-artigos h2 {
  color: var(--cor-principal);
}

.card-top-artigos {
  border-left: solid 3px var(--cor-principal);
  margin: 2px 0px;
  min-height: 100px;
}

.top-artigos p {
  color: gray;
  margin: -2px 0px;
}

.alinhamento-row-col:hover img {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.alinhamento-row-col {
  display: flex;
  flex-direction: row;
}

.artigos-rodape p {
  font-size: 12px;
}

@media (max-width: 1270px) {
  .alinhamento-row-col {
    flex-direction: column;
  }
  #artigos img {
    width: 100%;
  }
}
/* FOOTER */

footer {
  background-color: var(--cor-background);
}

.conteudos{
  display: flex;
  flex-direction: column;
  align-items: space-around;
}

.conteudos a {
  font-size: 18px;
  color: #cccccc;
  padding: 5px 0px;
}

.conteudos a:hover {
  color: var(--cor-principal);
  transition: all 0.4s;
}
.nav-link-footer{
  text-direction: none!important;
  color: green;

}

.icone-redes-sociais i {
  width: 30px;
  height: 30px;
  background-color: var(--cor-principal);
  color: #fff;
  border: solid 1px transparent;
  border-radius: 20px;
  padding: 6px;
}
.icone-redes-sociais i:hover {
  background-color: #373a3e;
  border: solid 1px #4d5053;
  /* color: #212529; */

  transition: all 0.4s;
}

.logo-footer {
  width: 8rem;
}
/* ICONE WHATSAPP */

.wa::after {
  animation-delay: 0.4s;
}
.wa::after,
.wa::before {
  content: "";
  position: absolute;
  opacity: 0;
  border: 3px solid #0ba360;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  -webkit-border-radius: 50%;
  animation: WaveWhatsApp 1.3s ease infinite;
}
*,
::after,
::before {
  box-sizing: border-box;
}
.wa {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 40px;
  width: 45px;
  height: 45px;
  bottom: 40px;
  text-align: center;
  border-radius: 50%;
  background: #0ba360;
  z-index: 1000;
}

.wa:hover {
  background: #128c7e;
  transition: background 0.3s ease;
}

@keyframes WaveWhatsApp {
  0% {
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* FIM ICONE WHATSAPP */

/* pagina ver mais */
#artigos-ver-mais h3{
  padding-top: 10px;
  color: #374349;
  font-size: 32px;
font-family: 'Montserrat', sans-serif;
}

#artigos-ver-mais p{
  padding-top: 10px;
  color: #374349;
  font-size: 20px;
font-family: 'Raleway', sans-serif;
}

#artigos-ver-mais h5{
  color: #374349;  
  padding-top: 10px;
  font-size: 30px;
  font-weight: bold;
}

/* PAGINA 404 */

.erro404 {
  margin-top: 25px;
  min-height: 237px;
  text-align: center;
}

.erro404 h1, h2{
  font-weight: bolder;
}