
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* Realize Vagas design system color palette variables */
:root {
  --primary: #00162e;       /* Azul Marinho */
  --bg-color: #ffffff;
  --action: #8a2a9c;        /* Laranja */
  --accent: #ff2f92;        /* Rosa */
  --success: #32d6c5;       /* Verde Água */
  --text-dark: #1f2937;
  --text-light: #f3f4f6;
  --white: #ffffff;

  /* Restored variables from backup */
  --primary-hover: #062446;
  --primary-light: #edf8fa;
  --secondary: #8a2a9c;
  --secondary-hover: #6f2080;
  --dark: #00162e;
  --dark-light: #082b4d;
  --light: #f5f7fc;
  --grey: #6c757d;
  --grey-light: #e1ebfc;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px rgba(0, 33, 71, 0.08);
  --shadow-lg: 0 15px 35px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Status Colors */
  --status-applied: #00162e;
  --status-reviewing: #ff9f43;
  --status-interview: #9b5de5;
  --status-approved: #32d6c5;
  --status-rejected: #ea5455;
  --status-hired: #00cfe8;
  }

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: var(--font-title) !important;
}

body p,
body a,
body span,
body button,
body input,
body select,
body textarea {
  font-family: var(--font-body) !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.main-header {
  background: linear-gradient(100deg, #00162e 0%, #082b4d 72%, #32124c 100%);
  color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  position: relative;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
}
.brand-symbol {
  width: 235px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 12px rgba(50, 214, 197, 0.2));
}

@media (max-width: 768px) {
  .brand-symbol {
    width: 178px;
    height: 54px;
  }
}
.logo-text {
  display: none !important;
}
.logo span {
  color: #ffffff; /* Override logo cyan color to white */
}
.logo-icon circle {
  fill: var(--action);
}
.nav-menu {
  display: flex;
  gap: 20px;
}
.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--action);
}

/* Hero Section */
.hero-section {
  padding: 5rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(226, 91, 141, 0.15), transparent 50%), 
              radial-gradient(circle at 20% 80%, rgba(116, 198, 157, 0.15), transparent 50%);
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  background: rgba(226, 91, 141, 0.15);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-text-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  color: var(--primary);
  line-height: 1.2;
}
.hero-text-content h1 span.highlight {
  color: var(--action);
}
.hero-text-content p {
  color: #4b5563;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background-color: var(--action);
  color: var(--white);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(138, 42, 156, 0.3);
}
.btn-outline {
  border: 2px solid var(--action);
  color: var(--action);
  background: transparent;
}
.btn-outline:hover {
  background: var(--action);
  color: var(--white);
}

/* Cookie consent banner styling */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(0, 33, 71, 0.95);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: all 0.5s ease;
}
.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn-accept {
  background-color: var(--success);
  color: var(--primary);
  font-weight: 700;
}
.cookie-btn-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hidden {
  display: none !important;
}

/* Legal & Form Cards */
.legal-card, .contact-form-panel, .contact-info-panel {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.w-100 { width: 100%; }
.form-group { margin-bottom: 1.25rem; }
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
}
.form-input:focus {
  outline: 2px solid var(--action);
}

.legal-section {
  margin-top: 2rem;
}
.legal-section h2 {
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .hero-container, .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Reconstrução da Home - Realize Vagas v5.2 */
.header-banner {
  background: linear-gradient(135deg, rgba(0, 33, 71, 0.9) 0%, rgba(226, 91, 141, 0.7) 100%), url('/banner_recrutamento.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 4rem 2rem;
  border-radius: 16px;
  margin: 20px auto;
  max-width: 1200px;
  box-shadow: 0 10px 25px -5px rgba(0, 33, 71, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.header-banner h2 {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}
.header-banner p {
  font-size: 1.1rem;
  max-width: 600px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Carousel de vagas recentes com Grid Responsivo */
.recent-jobs-carousel-section {
  padding: 4rem 0;
  background-color: #ffffff;
}
.carousel-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

/* 4 colunas no Desktop, 2 no Tablet, 1 no Mobile */
@media (min-width: 1024px) {
  .carousel-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .carousel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .carousel-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.job-card-premium {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
}
.job-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0,33,71,0.1);
  border-color: var(--action);
}
.job-card-tag {
  background: rgba(138, 42, 156, 0.1);
  color: var(--action);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
}

/* Seção de encorajamento para candidatos */
.encourage-candidate-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, #fff 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.encourage-candidate-card {
  background: var(--primary);
  color: white;
  border-radius: 20px;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.encourage-candidate-card h2 {
  color: white;
  font-size: 2.25rem;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 16px;
}
.encourage-candidate-card p {
  opacity: 0.85;
  line-height: 1.6;
  max-width: 500px;
}

/* Seção de contratação de serviços para empresas */
.company-hire-section {
  padding: 5rem 0;
  background-color: #ffffff;
}
.company-hire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.company-hire-img-wrapper img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}
.company-hire-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.company-hire-content p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .encourage-candidate-card, .company-hire-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    padding: 2rem;
    text-align: center;
  }
  .encourage-candidate-card p {
    max-width: 100%;
  }
}


/* ==========================================================================
   RESTORED APPLICATION STYLES (DASHBOARD, MODALS, OTHER PAGES)
   ========================================================================== */

  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.job-main-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.job-company-logo {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  background-color: var(--light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid var(--border-color);
}

.job-details-title h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--dark);
}

.job-details-title h3:hover {
  color: var(--primary);
  cursor: pointer;
}

.job-card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: var(--grey);
}

.job-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-tags-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.job-badge {
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.badge-full-time {
  background-color: rgba(25, 103, 210, 0.08);
  color: var(--primary);
}

.badge-part-time {
  background-color: rgba(255, 159, 67, 0.08);
  color: var(--status-reviewing);
}

.badge-contract {
  background-color: rgba(155, 93, 229, 0.08);
  color: var(--status-interview);
}

.badge-internship {
  background-color: rgba(40, 199, 111, 0.08);
  color: var(--status-approved);
}

.salary-text {
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
}

.job-actions {
  display: flex;
  gap: 10px;
}

.loading-spinner {
  text-align: center;
  padding: 40px;
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
}

/* RECRUITER CTA SECTION */
.recruiter-cta-section {
  padding: 80px 0;
}

.recruiter-cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.recruiter-cta-text {
  padding: 60px;
}

.recruiter-cta-text h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 20px;
}

.recruiter-cta-text p {
  opacity: 0.9;
  margin-bottom: 30px;
}

.recruiter-cta-graphic {
  background-color: rgba(0, 0, 0, 0.15);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.graphic-box {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  max-width: 400px;
  backdrop-filter: blur(10px);
}

.graphic-box i {
  font-size: 40px;
  margin-bottom: 20px;
}

.graphic-box h4 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 12px;
}

.graphic-box p {
  opacity: 0.85;
  font-size: 14px;
  margin-bottom: 24px;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.testimonial-card .stars {
  color: var(--secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: var(--grey);
  font-style: italic;
  font-size: 15px;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info strong {
  display: block;
  font-size: 16px;
  color: var(--dark);
}

.author-info span {
  font-size: 13px;
  color: var(--grey);
}

/* LATEST ARTICLES / BLOG HOME */
.latest-articles-section {
  padding: 100px 0;
}

.articles-home-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.large-article-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.large-article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.article-img-wrapper {
  position: relative;
  height: 280px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 50px;
}

.article-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-title);
  box-shadow: var(--shadow-sm);
}

.article-content {
  padding: 30px;
}

.article-meta {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 12px;
}

.article-meta span {
  margin-right: 15px;
}

.article-content h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.article-content p {
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-link {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-title);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more-link:hover {
  gap: 12px;
}

.articles-side-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-article-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  align-items: center;
  transition: var(--transition);
}

.side-article-item:hover {
  transform: translateX(4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.side-article-thumb {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.side-article-info {
  display: flex;
  flex-direction: column;
}

.side-article-info h4 {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.side-article-info p {
  font-size: 13px;
  color: var(--grey);
}

/* JOBS PAGE LAYOUT */
.page-title-banner {
  background: linear-gradient(135deg, #132238 0%, #1c355e 100%);
  padding: 60px 0;
  color: var(--white);
}

.page-title-banner h1 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 10px;
}

.page-title-banner p {
  font-size: 14px;
  opacity: 0.7;
}

.jobs-page-container {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.jobs-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.filter-box {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.filter-box h3 {
  font-size: 20px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 12px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--dark);
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-wrapper i {
  position: absolute;
  left: 15px;
  color: var(--primary);
}

.input-icon-wrapper input {
  padding-left: 45px !important;
}

.filter-box input, .filter-box select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}

.filter-box input:focus, .filter-box select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(25, 103, 210, 0.1);
}

.jobs-main-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.results-header {
  background-color: var(--light);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--grey);
}

.jobs-grid-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* JOB DETAILS LAYOUT */
.job-details-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.job-header-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.job-meta-header h2 {
  font-size: 30px;
  margin: 10px 0;
}

.company-sub {
  font-size: 16px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.job-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--grey);
}

.job-header-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-description-body {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.job-description-body h3 {
  font-size: 22px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
  padding-left: 15px;
}

.desc-content {
  font-size: 15px;
  color: #4a5568;
  white-space: pre-line;
  margin-bottom: 30px;
}

.job-details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-info-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.sidebar-info-card h3 {
  font-size: 18px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 12px;
}

.job-summary-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.job-summary-list i {
  color: var(--primary);
  font-size: 18px;
  width: 25px;
  margin-top: 3px;
}

.job-summary-list div {
  display: flex;
  flex-direction: column;
}

.job-summary-list strong {
  font-size: 14px;
  color: var(--dark);
}

.job-summary-list span {
  font-size: 13px;
  color: var(--grey);
}

/* BLOG PAGE LAYOUT */
.blog-page-container {
  display: grid;
  grid-template-columns: 2.15fr 0.85fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.blog-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
}

.sidebar-search {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 50px;
}

.sidebar-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 14px;
}

.sidebar-search button {
  background-color: var(--primary);
  border: none;
  color: var(--white);
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

.widget-categories li {
  margin-bottom: 12px;
}

.widget-categories li:last-child {
  margin-bottom: 0;
}

.widget-categories a {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-light);
}

.widget-categories a span {
  background-color: var(--light);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
}

.widget-categories a:hover {
  color: var(--primary);
}

.widget-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.widget-recent-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.widget-recent-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
  background-color: var(--primary-light);
}

.widget-recent-info h5 {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 5px;
}

.widget-recent-info span {
  font-size: 11px;
  color: var(--grey);
}

.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.widget-tags .tag {
  background-color: var(--light);
  color: var(--dark-light);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.widget-tags .tag:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ABOUT PAGE LAYOUT */
.about-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.about-hero-text h2 {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.about-hero-text p {
  color: var(--grey);
  margin-bottom: 20px;
  font-size: 16px;
}

/* DASHBOARD COMMON LAYOUT */
.dashboard-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.dashboard-sidebar {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.user-avatar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 24px;
}

.avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 15px;
}

.user-avatar-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.user-role-badge {
  background-color: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-light);
}

.dashboard-menu a i {
  font-size: 16px;
}

.dashboard-menu a:hover, .dashboard-menu a.active {
  background-color: var(--primary);
  color: var(--white);
}

.dashboard-main-content {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  min-height: 500px;
}

.dashboard-tab-content {
  display: none;
}

.dashboard-tab-content.active {
  display: block;
}

.tab-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Tables styling */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table th, .table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.table th {
  background-color: var(--light);
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--dark);
}

.status-pill {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
}

.status-applied { background-color: rgba(25, 103, 210, 0.08); color: var(--status-applied); }
.status-reviewing { background-color: rgba(255, 159, 67, 0.08); color: var(--status-reviewing); }
.status-interview { background-color: rgba(155, 93, 229, 0.08); color: var(--status-interview); }
.status-approved { background-color: rgba(40, 199, 111, 0.08); color: var(--status-approved); }
.status-rejected { background-color: rgba(234, 84, 85, 0.08); color: var(--status-rejected); }
.status-hired { background-color: rgba(0, 207, 232, 0.08); color: var(--status-hired); }

/* Dashboard Forms */
.dashboard-form {
  margin-top: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dashboard-form .form-group {
  margin-bottom: 24px;
}

.dashboard-form input, .dashboard-form select, .dashboard-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}

.dashboard-form input:focus, .dashboard-form select:focus, .dashboard-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(25, 103, 210, 0.1);
}

.file-upload-zone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  position: relative;
  background-color: var(--light);
}

.file-upload-zone i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.file-upload-zone input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.selected-file-name {
  margin-top: 15px;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
}

/* FOOTER */
.main-footer {
  background-color: var(--dark);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Newsletter bar */
.newsletter-bar {
  background-color: var(--primary);
  padding: 40px 0;
  color: var(--white);
}

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

.newsletter-container h3 {
  color: var(--white);
  font-size: 24px;
}

.newsletter-form {
  display: flex;
  width: 450px;
  background-color: var(--white);
  padding: 6px;
  border-radius: var(--radius-sm);
}

.newsletter-form input {
  flex: 1;
  width: 100%;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0 15px;
  font-family: var(--font-body);
  font-size: 14px;
}

.newsletter-form button {
  white-space: nowrap;
}

/* Footer links area */
.footer-links-area {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-col-about .logo-text {
  color: var(--white);
}

.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(255,255,255,0.65);
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
  background-color: #0b1524;
}

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

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
}

/* MODAL SYSTEM */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 28, 48, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.85);
  transition: var(--transition);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--grey);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--dark);
}

.modal-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 30px;
}

.modal-tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 12px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--grey);
  cursor: pointer;
  position: relative;
}

.modal-tab-btn.active {
  color: var(--primary);
}

.modal-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

.modal-tab-content {
  display: none;
}

.modal-tab-content.active {
  display: block;
}

/* RESPONSIVE STYLING */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-image-content {
    display: none;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .banner-image {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .articles-home-layout {
    grid-template-columns: 1fr;
  }
  .jobs-page-container {
    grid-template-columns: 1fr;
  }
  .job-details-container {
    grid-template-columns: 1fr;
  }
  .blog-page-container {
    grid-template-columns: 1fr;
  }
  .dashboard-container {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
  }
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: block !important;
  }
  .nav-menu {
    display: none;
  }
  .header-actions {
    display: none;
  }
  
  /* Flow-based vertical expansion for mobile menu */
  .nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    height: 180px; /* Fixed height to align perfectly without gaps */
    background: #082b4d;
    padding: 20px 20px 0 20px;
    gap: 12px;
    box-shadow: none;
    border-bottom: none;
    z-index: 999;
  }
  .header-actions.active {
    display: flex !important;
    position: absolute;
    top: 256px; /* Positioned exactly at 76px + 180px */
    left: 0;
    right: 0;
    background: #082b4d;
    padding: 0 20px 20px 20px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.3);
    border-bottom: 2px solid #32d6c5;
    z-index: 999;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions {
    display: none;
  }
  .hero-search-bar {
    flex-direction: column;
    padding: 15px;
  }
  .search-input-group.separator {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .newsletter-form {
    width: 100%;
    max-width: 100%;
  }
  .newsletter-form input {
    min-width: 0;
  }
  .newsletter-form button {
    flex: 0 0 auto;
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .bottom-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .recruiter-cta-container {
    grid-template-columns: 1fr;
  }
  .recruiter-cta-text {
    padding: 40px 24px;
  }
  .recruiter-cta-graphic {
    padding: 40px 24px;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .job-actions {
    width: 100%;
  }
  .job-actions .btn {
    flex: 1;
  }
}

/* SPA View Toggling */
.view-section {
  display: none;
}
.view-section.active {
  display: block;
}


/* ==========================================================================
   REALIZE VAGAS DASHBOARDS AND PREMIUM UI ELEMENTS
   ========================================================================== */

/* Kanban Selection Funnel */
.kanban-board {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
  align-items: flex-start;
}

.kanban-column {
  flex: 1;
  min-width: 220px;
  background-color: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.kanban-column-header {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-applied { background-color: #3b82f6; }
.bg-reviewing { background-color: #f59e0b; }
.bg-approved { background-color: #10b981; }
.bg-hired { background-color: #8b5cf6; }

.kanban-cards-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  min-height: 100px;
}

.kanban-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
}

.kanban-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.kanban-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
}

.kanban-card-sub {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 8px;
}

.kanban-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 8px;
  margin-top: 8px;
}

.kanban-card-actions {
  display: flex;
  gap: 4px;
}

.btn-card-action {
  background: #f1f5f9;
  border: none;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #475569;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-card-action:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Timeline Elements */
.resume-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .resume-split-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-column {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}

.timeline-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-orange { color: #f97316; }
.text-blue { color: #2563eb; }

.timeline-connector-container {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid #cbd5e1;
  margin-left: 10px;
}

.connector-orange { border-left-color: rgba(249, 115, 22, 0.3); }
.connector-blue { border-left-color: rgba(37, 99, 235, 0.3); }

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.timeline-dot.bg-orange { background-color: #f97316; box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2); }
.timeline-dot.bg-blue { background-color: #2563eb; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2); }

.timeline-content {
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
}

.timeline-date {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

.timeline-content h4 {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.timeline-content h5 {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin: 0 0 6px 0;
}

.timeline-content p {
  font-size: 11px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Candidate Detail Modal */
#candidate-detail-modal .candidate-detail-card {
  background: #ffffff;
  border-radius: 12px;
  width: 90%;
  max-width: 850px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

.candidate-detail-header-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 20px;
}

.avatar-big {
  width: 64px;
  height: 64px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #1e293b;
}

.candidate-detail-header-info h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.candidate-detail-header-info .subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 8px 0;
}

.header-metadata {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #64748b;
}

.header-metadata span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-display {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.thumbs-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.thumbs-wrapper {
  display: flex;
  gap: 8px;
}

.btn-thumb {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #94a3b8;
  transition: all 0.2s;
}

.btn-thumb:hover {
  background: #f1f5f9;
  color: #475569;
}

.btn-thumb-up.active {
  background: #dcfce7;
  color: #16a34a;
  border-color: #bbf7d0;
}

.btn-thumb-down.active {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fecaca;
}

/* Cand Tabs inside Modal */
.cand-modal-tabs {
  display: flex;
  border-bottom: 2px solid #cbd5e1;
  gap: 15px;
  margin-bottom: 20px;
}

.cand-tab-btn {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.cand-tab-btn.active {
  color: #2563eb;
}

.cand-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #2563eb;
}

.cand-tab-content {
  display: none;
}

.cand-tab-content.active {
  display: block;
}

/* Feedback layout */
.feedback-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .feedback-layout {
    grid-template-columns: 1fr;
  }
}

.comments-log-container {
  display: flex;
  flex-direction: column;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 5px;
}

.comment-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid #f1f5f9;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 11px;
}

.comment-author {
  font-weight: 700;
  color: #1e293b;
}

.comment-date {
  color: #94a3b8;
}

.comment-content {
  font-size: 12px;
  color: #334155;
  margin: 0;
  line-height: 1.5;
}

/* Map radius search styles */
.map-radius-slider-group {
  background: #f8fafc;
  border-radius: 8px;
  padding: 10px 15px;
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.slider-container input[type="range"] {
  flex-grow: 1;
}

.slider-value-display {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  min-width: 60px;
}

/* ==========================================================================
   MODERN AUTH SPLIT-PANE MODAL REDESIGN
   ========================================================================== */

.auth-card {
  display: flex !important;
  flex-direction: row !important;
  background-color: var(--white) !important;
  border-radius: 16px !important;
  width: 90% !important;
  max-width: 900px !important;
  min-height: 580px !important;
  box-shadow: 0 25px 50px -12px rgba(0, 33, 71, 0.25) !important;
  border: 1px solid rgba(0, 33, 71, 0.08) !important;
  overflow: hidden !important;
  padding: 0 !important; /* Remove padding legado */
}

/* Painel Esquerdo: Banner com Imagem, Overlay e Tipografia */
.auth-card-banner {
  flex: 1;
  background-image: linear-gradient(135deg, rgba(0, 33, 71, 0.92) 0%, rgba(138, 42, 156, 0.8) 100%), url('/home_professional.png');
  background-size: cover;
  background-position: center;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  position: relative;
}

.auth-card-banner::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  pointer-events: none;
}

.auth-banner-content {
  position: relative;
  z-index: 2;
}

.auth-banner-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white) !important;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.auth-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Painel Direito: Formulário com fundo branco e detalhes azul marinho e laranja */
.auth-card-form-container {
  flex: 1.25;
  padding: 48px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.auth-card-header h2 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0 0 6px 0;
  letter-spacing: -0.5px;
}

.auth-card-header p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0 0 24px 0;
}

/* Formulário e Inputs */
.auth-card-form-container label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}

.auth-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0, 33, 71, 0.15) !important;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background-color: #f9fafb;
}

.auth-input:focus {
  border-color: var(--action) !important;
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(138, 42, 156, 0.15) !important;
}

/* Metadados e Checkbox */
.auth-form-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-top: 14px;
}

.auth-forgot-link {
  color: var(--action);
  font-weight: 600;
}

.auth-forgot-link:hover {
  color: #e0531c;
  text-decoration: underline;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #4b5563;
}

/* Botão de Envio Laranja */
.auth-submit-btn {
  background-color: var(--action) !important;
  color: var(--white) !important;
  padding: 14px !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  width: 100% !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin-top: 20px !important;
}

.auth-submit-btn:hover {
  background-color: #e0531c !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(138, 42, 156, 0.3) !important;
}

/* Footer do Modal e Troca de Aba */
.auth-card-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: #4b5563;
}

.auth-card-footer a {
  color: var(--action);
  font-weight: 700;
  text-decoration: none;
}

.auth-card-footer a:hover {
  text-decoration: underline;
  color: #e0531c;
}

/* Divisor Social */
.auth-social-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 500;
}

.auth-social-divider::before,
.auth-social-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e5e7eb;
}

.auth-social-divider::before {
  margin-right: 12px;
}

.auth-social-divider::after {
  margin-left: 12px;
}

/* Ícones Sociais Premium */
.auth-social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0, 33, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary) !important;
  transition: all 0.3s ease;
  background-color: var(--white);
  text-decoration: none;
}

.social-icon:hover {
  border-color: var(--action) !important;
  color: var(--action) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(138, 42, 156, 0.15);
}

/* Responsividade do Modal */
@media (max-width: 768px) {
  .auth-card {
    flex-direction: column !important;
    max-width: 480px !important;
    min-height: auto !important;
  }
  .auth-card-banner {
    display: none !important;
  }
  .auth-card-form-container {
    padding: 32px !important;
  }
}

/* ==========================================================================
   HELPER STYLES FOR PAGES (ABOUT, JOBS, JOB DETAILS)
   ========================================================================== */

.company-card-details {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.company-card-logo {
  width: 70px;
  height: 70px;
  background-color: #e8f0fe;
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 1px solid rgba(0, 33, 71, 0.08);
}

.company-card-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 4px 0;
}

.company-card-info div span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-contact-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}

.sidebar-contact-card h3 {
  font-family: 'Outfit';
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
}

#job-details-map {
  height: 220px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  z-index: 10;
}

.job-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-summary-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.job-summary-list li i {
  color: var(--action);
  font-size: 18px;
  margin-top: 4px;
}

.job-summary-list li div strong {
  display: block;
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
}

.job-summary-list li div span {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}


/* Brand Symbol Glowing Animation */
@keyframes brandSymbolGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(50, 214, 197, 0.4)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(138, 42, 156, 0.85)) brightness(1.2);
  }
  100% {
    filter: drop-shadow(0 0 5px rgba(50, 214, 197, 0.4)) brightness(1);
  }
}
.brand-symbol {
  animation: brandSymbolGlow 3.5s infinite ease-in-out !important;
}

/* Global Smooth Transitions */
.btn, .nav-link, .hp-step, .hp-cat-card, .hp-job-card, .job-item, .job-card-premium, .sidebar-search-btn {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn:hover {
  transform: translateY(-2px) scale(1.02) !important;
}
