
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}
.header {
  background: #000000;
  color: white;
  padding: 20px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: top 0.4s ease;
}

.logo img {
  height: 300px;
  display: block;
  padding: 10px 0;
  margin: 10px 0px 10px 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: auto; /* empurra para o canto direito */
  padding-right: 50px; /* afasta da borda direita */
}

.social-icons a {
  color: #c46e00; /* laranja queimado */
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff9933; /* tom mais claro no hover */
}


.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.menu {
  display: flex;
  color: #fff;
  gap: 30px;
  justify-content: center;
  flex: 1; /* ocupa espaço central */
}

.menu a {
  margin: 0 15px;
  color: #ff9933;
  text-decoration: none;
}

.menu a:hover {
  margin: 0 15px;
  color: #ffffff;
  text-decoration: none;
}


.banner {
  margin-top: 60px;
  height: 600px;
  background: url('../imgs/rxnaweb_Ativo.png') no-repeat top center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  color: white;
  text-align: center;
}

.busca-section {
  text-align: center;
  padding: 30px 15px;
  background-color: #f9f9f9;
}

#input-busca {
  width: 90%;
  max-width: 500px;
  padding: 12px 20px;
  border: 2px solid #c46e00;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

#input-busca:focus {
  border-color: #ff9933;
}

.intro {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
}
.carousel {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  gap: 10px;
  padding: 20px;
}
.carousel img {
  height: 200px;
  border-radius: 8px;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 80px;
  gap: 20px;
  padding: 20px;
}
.card {
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
}
.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.card h3 {
  color: #c46e00;
}
.card a {
  background: #c46e00;
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 10px;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.contato {
  padding: 20px;
  text-align: center;
}
.contato input, .contato textarea {
  width: 80%;
  max-width: 400px;
  margin: 10px 0;
  padding: 10px;
}
footer {
  background: #111;
  color: #ff9933;
  text-align: center;
  padding: 20px;
}
.foto-footer {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.contato form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp-float {
  position: fixed;
  width: 48px;               /* menor largura */
  height: 48px;              /* menor altura */
  bottom: 20px;
  right: 20px;
  background-color: #c46e00; /* laranja queimado */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;           /* ícone menor */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;     /* remove sublinhado */
  transition: background-color 0.3s;
}

.whatsapp-float:hover {
  background-color: #ff9933; /* hover laranja claro */
  text-decoration: none;     /* garan*/
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scrollCarousel 20s linear infinite;
}

.carousel-track img {
  max-height: 200px;
  margin-right: 10px;
  flex-shrink: 0;
  width: auto;
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hamburger {
  display: none;
  font-size: 26px;
  color: #c46e00;
  cursor: pointer;
  margin-right: 80px; /* distância da borda direita */
  padding: 10px;
}


@media (max-width: 768px) {
  .menu,
  .social-icons {
    display: none;
    flex-direction: column;
    background: #fff;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    border-top: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100vw;
  }

  .menu.show,
  .social-icons.show {
    display: flex;
  }

  .hamburger {
    display: block;
    margin-right: 50px;
    font-size: 26px;
    padding: 10px;
    z-index: 1000;
  }

  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
  }
}


@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    height: 60px;
  }

  .card {
    width: 100%;
    margin: 10px 0;
  }

  .social-icons {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .formulario-contato {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .menu,
  .social-icons {
    display: none;
    flex-direction: row;
    position: absolute;
    top: 70px; /* abaixo do header */
    right: 80px;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 10px;
    width: 20%;
  }

  .menu.show,
  .social-icons.show {
    display: flex;
  }

  .social-icons {
    margin-top: 10px;
    gap: 10px;
  }

  .hamburger {
    display: block;
  }

  .menu a {
  font-size: 10px;
  }


}

.paginacao {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.paginacao button {
  background-color: #c46e00;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.paginacao button:hover {
  background-color: #ff9933;
}

.footer-post a{
  color: #fff;

}
/* --- Estilos para a Seção de Curriculum Vitae (CV) --- */

.curriculum-vitae {
  background: #f4f4f4; /* Fundo cinza claro para destacar */
  padding: 60px 20px;
  text-align: center;
  border-top: 5px solid #c46e00; /* Linha laranja para elegância */
}

.cv-container {
  max-width: 800px;
  margin: 0 auto;
}

.cv-title {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 15px;
}

.cv-description {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.cv-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.cv-thumbnail {
  max-width: 300px; /* Tamanho da miniatura */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.cv-thumbnail:hover {
  transform: scale(1.03); /* Efeito sutil ao passar o mouse */
}

.download-button {
  background: #c46e00; /* Laranja do seu tema */
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.2em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.download-button:hover {
  background: #a35a00; /* Tom mais escuro no hover */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .curriculum-vitae {
    padding: 40px 15px;
  }
  .cv-title {
    font-size: 1.8em;
  }
}


