/*--------------------------------------------------------------
# trabalhe-conosco.css - Estilos para página Trabalhe Conosco
--------------------------------------------------------------*/

:root {
  --primary-color: #2e7bbf;
  --primary-dark: #1a5a8f;
  --text-color: #363f40;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --error-color: #dc3545;
  --bg-light: #f8f9fa;
}

/* Hero Section */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 120px 0 60px;
  text-align: center;
  margin-top: 80px;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.page-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 100px 0 40px;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .page-hero p {
    font-size: 1rem;
  }
}

/* Formulário Section */
.trabalhe-conosco-section {
  padding: 80px 0;
  background: #fff;
}

.intro-text {
  text-align: center;
  margin-bottom: 50px;
}

.intro-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.intro-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Formulário */
.trabalhe-form {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .trabalhe-form {
    padding: 25px;
  }
}

/* Seções do Formulário */
.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--bg-light);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  font-size: 1.75rem;
}

/* Labels e Inputs */
.trabalhe-form label {
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 8px;
  display: block;
  font-size: 0.95rem;
}

.required {
  color: var(--error-color);
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  background: #fff;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 123, 191, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23363f40' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

input[type="file"].form-control {
  padding: 10px;
  cursor: pointer;
}

.form-text {
  display: block;
  margin-top: 5px;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Status Messages */
.form-status {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-weight: 500;
  display: none;
  animation: slideDown 0.3s ease;
}

.form-status.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  display: block;
}

.form-status.error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  display: block;
}

.form-status.loading {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botão de Envio */
.btn-submit {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 15px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(46, 123, 191, 0.3);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 123, 191, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-submit i {
  font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .trabalhe-conosco-section {
    padding: 50px 0;
  }

  .intro-text {
    margin-bottom: 30px;
  }

  .intro-text h2 {
    font-size: 1.5rem;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 12px 30px;
  }
}

/* Animações */
.trabalhe-form {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estados de validação */
.form-control:invalid:not(:placeholder-shown) {
  border-color: var(--error-color);
}

.form-control:valid:not(:placeholder-shown) {
  border-color: var(--success-color);
}

/* Placeholder */
.form-control::placeholder {
  color: #adb5bd;
}

/* Focus no botão */
.btn-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 123, 191, 0.3);
}

/* Botão Adicionar Experiência */
.btn-add-experience {
  background: transparent;
  color: var(--primary-color);
  border: 2px dashed var(--primary-color);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-add-experience:hover {
  background: var(--primary-color);
  color: #fff;
  border-style: solid;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 123, 191, 0.3);
}

.btn-add-experience:active {
  transform: translateY(0);
}

.btn-add-experience i {
  font-size: 1.2rem;
}

/* Animação para as seções de experiência */
#experiencia-2-section,
#experiencia-3-section {
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botão Remover Experiência */
.btn-remove-experience {
  background: transparent;
  color: var(--error-color);
  border: 2px solid var(--error-color);
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-remove-experience:hover {
  background: var(--error-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-remove-experience i {
  font-size: 1rem;
}

/* Animação de saída */
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Container de experiências */
.experiencia-adicional {
  margin-bottom: 20px;
}













/* ===== HEADER - DESKTOP (trabalhe-conosco) ===== */
@media (min-width: 1200px) {
  
  /* Logo normal sempre visível */
  body .logo-normal {
    display: block !important;
    opacity: 1 !important;
    height: 130px !important;
    max-height: 130px !important;
    width: auto !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-top: 25px !important;
    position: relative !important;
    z-index: 20 !important;
  }
  
  /* Esconde logo branca */
  body .logo-home {
    display: none !important;
  }
  
  /* Header com fundo branco */
  .header {
    background: #ffffff !important;
    padding: 10px 0 !important;
    min-height: 90px !important;
  }
  
 /* Container do header - UNIFICADO */
.header .container {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  padding: 10px 150px !important;  /* ← SIMPLIFIQUE */
}
  
/* Logo à esquerda */
.header .logo {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  margin: 0 !important;
  margin-left: -380px !important;  /* ← ADICIONE VALOR NEGATIVO AQUI */
  margin-right: 0 !important;
  margin-top: 8px !important;
}
  
  /* Menu ao lado da logo */
  .navmenu-wrapper {
    margin-left: 50px !important;
    display: flex !important;
    align-items: center !important;
  }

  /* Espaçamento entre itens do menu */
.navmenu ul li {
  margin-right: 6px !important;  /* Aumenta o espaço entre os itens */
}

.navmenu ul li:last-child {
  margin-right: 40px !important;  /* Remove margem do último item */
}
}