/* Reset e Fonte */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* estilo geral */
html {
  scroll-behavior: smooth;
  font-size: 16px; /* base para tamanhos relativos */
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-color: #111111;
  color: #fff;
  line-height: 1.5;
}
/* estilo geral */



/*↓ Cabeçalho principal ↓*/
/*↓ geral ↓*/
header {
  animation: slideDown 0.6s ease-in-out;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(to right, #111, #1a0f0f);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  z-index: 1000;
  flex-wrap: wrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/*↑ geral ↑*/

/*↓ Logo ↓*/
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-size: 17px;
  color: white;
  letter-spacing: 1px;
}

.logo-text span:last-child {
  font-size: 17px;
  color: #ff6a00;
  letter-spacing: 1px;
}

/*↑ Logo ↑*/

/*↓ Navegação ↓*/
nav {
  display: flex;
  margin-right: 230px;
  gap: 30px;
  align-items: center;
  transition: all 0.3s ease;
}

nav a {
  color: white;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 5px;
  transition: 0.3s;
}

nav a:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
}

nav .highlight {
  color: white;
  padding: 6px 12px;
  border-radius: 5px;
  
}

nav .highlight:hover {
  background-color: #e55e00;
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
}

/*↑ Navegação ↑*/

/*↓ Animação ↓*/
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*↑ Animação ↑*/

/*↓ Menu toggle (mobile) ↓*/
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}
/*↑ Menu toggle (mobile) ↑*/

/*↓ Fale Conosco Dropdown ↓*/
.dropdown {
  position: relative;
  background-color: #ff6a00;
  color: black;
  font-weight: bold;
  border-radius: 5px;
}

#menuDropdownBtn {
  background-color: transparent;
  border: none;
  color: black;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 5px;
  transition: 0.3s;
}

#menuDropdownBtn:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: #ffffff;
}

.dropdown-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  background-color: #1a1a1a;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
  min-width: 180px;
}

.dropdown-options a {
  color: white;
  padding: 10px;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s, color 0.3s;
}

.dropdown-options a:hover {
  background-color: rgba(255, 106, 0, 0.1);
  color: #ff6a00;
}
/*↑ Fale Conosco Dropdown ↑*/
/*↑ cabeçario ↑*/


/* Botão principal do WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 50px;
  background-color: #25D366;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 35px;
  height: 35px;
}

/* Opções que aparecem ao clicar */
.whatsapp-options {
  position: fixed;
  bottom: 90px;
  right: 100px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.whatsapp-options a {
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s, transform 0.2s;
  font-size: 14px;
}

.whatsapp-options a:hover {
  background-color: #1eb95f;
  transform: scale(1.05);
}

/* Botão principal do WhatsApp */


.container {
  display: flex;
  width: 100%;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

.form-txt {
  color: #555;
}

#file-name {
  color: #000;
}

form {
  background: #fff;
  padding: 2rem;
  margin: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
  height: auto;
}

/* Título */
form h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #333;
}

/* Campos */
form input[type="text"],
form input[type="email"],
form input[type="file"],
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Textarea */
form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox + texto LGPD */
form label {
  font-size: 0.9rem;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

form input[type="checkbox"] {
  transform: scale(1.2);
  margin-top: 2px;
}

/* Botão */
form button {
  background-color: #ff6a00;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #e55e00;
  color: #000;
}

/* Upload customizado */
.file-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.custom-file-btn {
  background-color: #ff6a00;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  display: block;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  box-sizing: border-box;
}

.custom-file-btn:hover {
  background-color: #ff6a00;
  color: #222;
}

#curriculo {
  display: none;
}

#file-name {
  margin-top: 10px;
  color: #000;
  font-size: 14px;
  word-break: break-word;
}

/* Responsivo */
@media (max-width: 768px) {
  form {
    padding: 1rem;
    margin: 1rem;
  }

  form h2 {
    font-size: 1.25rem;
  }

  .custom-file-btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  #file-name {
    font-size: 13px;
  }
}

select[name="assunto"] {
  width: 100%;
  padding: 16px 16px;
  margin-bottom: 1%;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: white;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none; /* Remove estilo padrão (setinha) no Chrome/Safari */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='10'%20height='6'%3E%3Cpath%20fill='%23333'%20d='M0%200l5%206%205-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  line-height: 1.5rem;
}

select[name="assunto"]:hover {
  border-color: #888;
}

select[name="assunto"]:focus {
  border-color: #FFA500;
  box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.3);
}


select[name="assunto"]:hover {
  border-color: #888;
}

select[name="assunto"]:focus {
  border-color: #FFA500;
  box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.3);
}





/* footer */
footer {
  height: auto;
  padding: 10px 150px;
}

.top-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}


.top-footer a {
  text-decoration: none;
  color: #ff6a00;
}

.top-footer p {

  font-weight: bold;
}

.top-footer span {
  color: #ff6a00;
}

.footer {
  border: 2px solid #ff6a00;
  width: 100%;
}

.bottom-footer {
  text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
  footer {
    padding: 10px 20px; /* diminui padding lateral */
  }

  .top-footer {
    flex-direction: column; /* empilha os itens verticalmente */
    padding: 0 10px;
    gap: 10px; /* espaçamento entre os itens */
  }

  .top-footer p {
/* diminui a fonte para caber melhor */
    text-align: center;
  }
}

@media (max-width: 400px) {
  footer {
    padding: 10px 10px;
  }

  .top-footer p {
    font-size: 16px;
  }

  .top-footer i {
    font-size: 16px;
  }
}


