@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Orbitron:wght@400;700;900&family=Roboto+Mono:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;700&family=Righteous&display=swap");
:root {
  /* Cores originais */
  --primary: #2f193d; /* Deep purple */
  --tertiary: #d9c411;
  --secondary: #0e6875; /* Teal blue */
  --white: #fff;
  --dark: #191919;
  --light: #f8f5f2;
  --grey-light: #e2e0dc;
  --grey-dark: #424242;
  --accent-1: #e94f37; /* Bright coral for accents */
  --accent-2: #39a0ed; /* Bright blue for highlights */
  /* Novas cores */
  --primary-light: #5e3d6e; /* Versão mais clara do roxo */
  --primary-dark: #1e0f28; /* Versão mais escura do roxo */
  --secondary-light: #f0db4f; /* Amarelo mais claro */
  --secondary-dark: #b19e0e; /* Amarelo mais escuro/mostarda */
  --tertiary-light: #2a9eb2; /* Teal mais claro */
  --tertiary-dark: #085058; /* Teal mais escuro */
  /* Cores complementares */
  --violet: #9d4edd; /* Roxo vibrante */
  --magenta: #d81b60; /* Magenta retro */
  --mint: #61e8a1; /* Verde-menta */
  --sage: #8aa899; /* Verde sálvia */
  --peach: #ffb996; /* Pêssego suave */
  --orange: #ff8847; /* Laranja vibrante */
  --navy: #1a3a6c; /* Azul marinho */
  --indigo: #4a3f81; /* Índigo */
  --mauve: #c77dff; /* Malva/roxo claro */
  --burgundy: #913152; /* Bordô retro */
  --emerald: #03b898; /* Verde-esmeralda */
  --sky: #74c0fc; /* Azul-céu */
  /* Gradientes predefinidos */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary), var(--tertiary-dark));
  --gradient-purple: linear-gradient(135deg, var(--primary), var(--violet));
  --gradient-sunset: linear-gradient(135deg, var(--accent-1), var(--orange));
  --gradient-ocean: linear-gradient(135deg, var(--tertiary), var(--accent-2));
  --gradient-mint: linear-gradient(135deg, var(--tertiary-light), var(--mint));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  background-image: radial-gradient(var(--grey-light) 1px, transparent 1px), radial-gradient(var(--grey-light) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 0 0, 25px 25px;
}

.top-bar {
  background-color: var(--dark);
  padding: 8px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
}

.top-bar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(to right, var(--primary), var(--primary) 10px, var(--tertiary) 10px, var(--tertiary) 20px);
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
}

.top-bar a {
  color: var(--light);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: transform 0.2s;
  padding: 0 5px;
}

.top-bar a:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.top-bar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.top-bar a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

main {
  position: relative;
}

.main-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(47, 25, 61, 0.8) 1px, transparent 1px), linear-gradient(to bottom, rgba(47, 25, 61, 0.8) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.15;
  pointer-events: none;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1;
}

.logo img {
  height: 45px;
  margin-right: 10px;
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.3));
}

.logo-text {
  font-family: "VT323", monospace;
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary);
  text-shadow: var(--pixel-shadow);
  letter-spacing: 1px;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin-left: 25px;
}

.main-nav ul li a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 5px 0;
}

.main-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}

.main-nav ul li a:hover {
  color: var(--white);
  font-weight: 500;
}

.main-nav ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.link-title {
  color: var(--secondary);
}

/* Retro Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: "Space Mono", monospace;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  border: none;
  position: relative;
  box-shadow: var(--retro-shadow);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

/* Hero Section with Retro Design */
.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--grey-light) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
  z-index: -1;
}

.hero-content {
  width: 50%;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Space Mono", monospace;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 5px;
  background-color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--grey-dark);
  max-width: 90%;
}

.hero-image {
  width: 45%;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary);
}

.chat-bubble {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background-color: var(--tertiary);
  color: white;
  border-radius: var(--radius-sm);
  padding: 15px;
  box-shadow: var(--retro-shadow);
  max-width: 280px;
  border: 2px solid var(--dark);
}

.chat-bubble::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12px 10px 0;
  border-color: transparent var(--tertiary) transparent transparent;
}

.chat-bubble-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: "Space Mono", monospace;
}

.ai-badge {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-weight: bold;
  font-size: 12px;
}

.chat-bubble-content {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.chat-bubble-footer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  font-family: "Space Mono", monospace;
  letter-spacing: 0.5px;
}

/* Email Form with Retro Styling */
.email-form {
  display: flex;
  margin-top: 30px;
  max-width: 500px;
  position: relative;
}

.email-input {
  flex-grow: 1;
  padding: 15px 20px;
  border: 2px solid var(--primary);
  background-color: var(--light);
  font-family: "Space Mono", monospace;
  font-size: 16px;
  color: var(--primary);
  box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.email-input:focus {
  outline: none;
  border-color: var(--tertiary);
}

.email-form .btn {
  margin-left: 10px;
}

/* What is ATS Section - Retro Style */
.what-is-ats-section {
  padding: 100px 0;
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
}

.what-is-ats-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--tertiary) 1px, transparent 1px), linear-gradient(to right, var(--tertiary) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
  z-index: 0;
  top: 0;
  left: 0;
}

.what-is-ats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.what-is-ats-header {
  text-align: center;
  margin-bottom: 70px;
}

.what-is-ats-header h2 {
  font-family: "Space Mono", monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.what-is-ats-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--tertiary);
  transform: translateX(-50%);
}

.what-is-ats-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--light);
  max-width: 800px;
  margin: 0 auto;
}

.what-is-ats-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.what-is-ats-image {
  flex: 1;
  position: relative;
}

.what-is-ats-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--secondary);
  position: relative;
  z-index: 1;
}

.what-is-ats-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--tertiary);
  border-radius: var(--radius-md);
  top: 15px;
  left: 15px;
  z-index: 0;
}

.what-is-ats-text {
  flex: 1;
  color: var(--light);
}

.ats-benefits {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ats-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--secondary);
  transition: transform 0.3s ease;
}

.ats-benefit-item:hover {
  transform: translateX(5px);
}

.benefit-icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  box-shadow: var(--shadow-sm);
}

.benefit-icon-circle svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.ats-benefit-item p {
  margin: 0;
  font-size: 1.05rem;
}

strong {
  color: var(--primary);
  font-weight: 700;
}

.ats-cta {
  margin-top: 40px;
}

/* Products Section with Retro Styling */
.products-section {
  padding: 100px 0;
  background-color: var(--light);
  position: relative;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(to right, var(--primary), var(--primary) 30px, var(--tertiary) 30px, var(--tertiary) 60px, var(--secondary) 60px, var(--secondary) 90px);
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-title h2 {
  font-family: "Space Mono", monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  transform: translateX(-50%);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--grey-dark);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--retro-shadow);
  border: 2px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--secondary);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.feature-title {
  font-family: "Space Mono", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-list {
  list-style: none;
  margin-bottom: auto;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--grey-dark);
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

.feature-more {
  margin-top: 20px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: "Space Mono", monospace;
}

.feature-more svg {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  transition: transform 0.3s;
  fill: var(--secondary);
}

.feature-more:hover svg {
  transform: translateX(5px);
}

.center-btn {
  text-align: center;
  margin-top: 50px;
}

/* Testimonials Section with Retro Style */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--tertiary);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--primary) 1px, transparent 1px), linear-gradient(to right, var(--primary) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
  z-index: 0;
  top: 0;
  left: 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.testimonials-section .section-title h2 {
  color: white;
}

.testimonials-section .section-title h2::after {
  background-color: var(--secondary);
}

.testimonials-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
  margin-bottom: 70px;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 30px;
  min-width: 350px;
  max-width: 350px;
  box-shadow: var(--retro-shadow);
  border: 2px solid var(--primary);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
  margin-bottom: 15px;
}

.star {
  color: var(--secondary);
  font-size: 24px;
  letter-spacing: 2px;
}

.testimonial-content {
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial-content p {
  font-size: 1rem;
  color: var(--grey-dark);
  font-style: italic;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.testimonial-content p::before {
  content: "";
  font-size: 50px;
  color: var(--tertiary);
  position: absolute;
  left: -5px;
  top: -20px;
  font-family: "Space Mono", monospace;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
  border: 3px solid var(--secondary);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary);
}

.author-info p {
  font-size: 0.9rem;
  color: var(--grey-dark);
}

.testimonials-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  position: relative;
}

.testimonials-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  padding: 0 20px;
}

.stat-item h3 {
  font-family: "Space Mono", monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  color: white;
}

/* Contact Section - Retro Style */
.contact-section {
  padding: 100px 0;
  background-color: var(--light);
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(to right, var(--secondary), var(--secondary) 30px, var(--tertiary) 30px, var(--tertiary) 60px, var(--primary) 60px, var(--primary) 90px);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--retro-shadow);
  border: 2px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--tertiary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.contact-card h4 {
  font-family: "Space Mono", monospace;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}

.contact-card p {
  font-size: 1rem;
  color: var(--grey-dark);
}

.contact-form-wrapper {
  flex: 2;
  background-color: white;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--retro-shadow);
  border: 2px solid var(--primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: "Space Mono", monospace;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--grey-dark);
  transition: border-color 0.3s;
  background-color: var(--light);
  font-family: "Rubik", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tertiary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 10px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
}

/* Footer with Retro Style */
.main-footer {
  background-color: var(--primary);
  color: white;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--tertiary) 1px, transparent 1px), linear-gradient(to right, var(--tertiary) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
  z-index: 0;
  top: 0;
  left: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo .logo-text {
  font-family: "VT323", monospace;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary);
  text-shadow: var(--pixel-shadow);
}

.footer-logo p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
  line-height: 1.6;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-links-column {
  flex: 1;
  min-width: 120px;
}

.footer-links-column h4 {
  font-family: "Space Mono", monospace;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary);
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: var(--tertiary);
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
}

.footer-links-column ul li {
  margin-bottom: 12px;
}

.footer-links-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  position: relative;
  padding-left: 0;
}

.footer-links-column ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: var(--secondary);
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
  }
  .hero-content, .hero-image {
    width: 100%;
  }
  .hero-image {
    margin-top: 40px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .what-is-ats-content {
    flex-direction: column;
  }
  .what-is-ats-image {
    margin-bottom: 40px;
  }
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-card {
    flex: 1;
    min-width: 250px;
  }
}
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
  }
  .main-nav {
    margin-top: 20px;
  }
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-nav ul li {
    margin: 5px 10px;
  }
  .cta-buttons {
    margin-top: 20px;
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .email-form {
    flex-direction: column;
  }
  .email-input {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .email-form .btn {
    margin-left: 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .what-is-ats-header h2,
  .section-title h2 {
    font-size: 2rem;
  }
  .testimonial-card {
    min-width: 100%;
    max-width: 100%;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .contact-info {
    flex-direction: column;
  }
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 15px;
  }
}
/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* Animation Classes */
.animate-fadeIn {
  animation: fadeIn 0.8s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Additional Retro Elements */
.pixel-corner {
  position: relative;
}

.pixel-corner::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: var(--secondary);
  z-index: 1;
}

.pixel-corner::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background-color: var(--tertiary);
  z-index: 1;
}

.retro-gradient-border {
  position: relative;
  z-index: 1;
}

.retro-gradient-border::before {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(to right, var(--secondary), var(--tertiary));
  z-index: -1;
  border-radius: calc(var(--radius-md) + 3px);
}

/* Retro-futuristic accent elements */
.retro-accent {
  position: absolute;
  background-color: var(--secondary);
  z-index: 0;
}

.accent-1 {
  width: 50px;
  height: 300px;
  top: 20%;
  left: -25px;
  transform: rotate(45deg);
  opacity: 0.1;
}

.accent-2 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  right: 5%;
  border-radius: 50%;
  opacity: 0.2;
}

.accent-3 {
  width: 200px;
  height: 20px;
  top: 30%;
  right: 0;
  opacity: 0.1;
}

.lvjob-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background-color: var(--light);
}

.lvjob-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--grey-light) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
  z-index: 0;
  top: 0;
  left: 0;
}

.lvjob-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.lvjob-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.lvjob-col-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.lvjob-col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .lvjob-col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
.lvjob-col-lg-8 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.lvjob-col-lg-10 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 992px) {
  .lvjob-col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .lvjob-col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}
.lvjob-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.lvjob-text-center {
  text-align: center;
}

.lvjob-mt-5 {
  margin-top: 3rem;
}

.lvjob-hero-title {
  font-family: "Space Mono", monospace;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.lvjob-hero-title::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -5px;
  height: 5px;
  background-color: var(--secondary);
}

.lvjob-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--grey-dark);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Email Form */
.lvjob-email-form {
  display: flex;
  margin: 30px auto;
  max-width: 600px;
  position: relative;
}

.lvjob-email-input {
  flex-grow: 1;
  padding: 15px 20px;
  border: 2px solid var(--primary);
  background-color: var(--light);
  font-family: "Space Mono", monospace;
  font-size: 16px;
  color: var(--primary);
  box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.lvjob-email-input:focus {
  outline: none;
  border-color: var(--tertiary);
}

.lvjob-email-form .lvjob-btn {
  margin-left: 10px;
}

.lvjob-popular-searches {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--grey-dark);
}

.lvjob-popular-searches a {
  color: var(--tertiary);
  text-decoration: none;
  transition: all 0.2s;
  margin: 0 5px;
}

.lvjob-popular-searches a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Stat Cards */
.lvjob-stat-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 25px;
  text-align: center;
  box-shadow: var(--retro-shadow);
  border: 2px solid var(--primary);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.lvjob-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
}

.lvjob-stat-number {
  font-family: "Space Mono", monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.lvjob-stat-label {
  font-size: 1rem;
  color: var(--grey-dark);
}

/* Chat Card */
.lvjob-chat-card {
  background-color: var(--tertiary);
  color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--retro-shadow);
  border: 2px solid var(--dark);
  overflow: hidden;
  animation: pulse 3s infinite;
}

.lvjob-chat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid var(--dark);
  font-family: "Space Mono", monospace;
}

.lvjob-ai-badge {
  background-color: var(--secondary);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-weight: bold;
  font-size: 12px;
}

.lvjob-chat-card-content {
  padding: 25px 20px;
  min-height: 80px;
}

.lvjob-chat-card-content p {
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.5;
}

.lvjob-chat-card-footer {
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.15);
  border-top: 2px solid var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
}

.lvjob-chat-btn {
  background-color: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: bold;
  cursor: pointer;
  font-family: "Space Mono", monospace;
  transition: all 0.2s;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.lvjob-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.lvjob-chat-btn:active {
  transform: translateY(1px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

/* Decorative elements */
.lvjob-retro-accent {
  position: absolute;
  background-color: var(--secondary);
  z-index: 0;
}

.lvjob-accent-1 {
  width: 50px;
  height: 300px;
  top: 20%;
  left: -25px;
  transform: rotate(45deg);
  opacity: 0.1;
}

.lvjob-accent-2 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  right: 5%;
  border-radius: 50%;
  opacity: 0.2;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
/* Media Queries */
@media (max-width: 991px) {
  .lvjob-hero {
    padding: 80px 0 60px;
  }
  .lvjob-hero-title {
    font-size: 2.5rem;
  }
  .lvjob-hero-subtitle {
    font-size: 1.1rem;
  }
  .lvjob-stat-card {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .lvjob-hero-title {
    font-size: 2rem;
  }
  .lvjob-email-form {
    flex-direction: column;
  }
  .lvjob-email-input {
    margin-bottom: 10px;
  }
  .lvjob-email-form .lvjob-btn {
    margin-left: 0;
  }
  .lvjob-chat-card-content p {
    font-size: 1.1rem;
  }
}
.lv-legal-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* Cabeçalho dos termos */
.lv-legal-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f2f5;
}

.lv-legal-logo {
  margin-bottom: 20px;
  max-width: 180px;
}

.lv-legal-title {
  font-size: 1.8rem;
  color: #2f193d;
  margin-bottom: 10px;
  font-weight: 700;
}

.lv-legal-subtitle {
  font-size: 1.2rem;
  color: #0e6875;
  font-weight: 500;
}

/* Introdução */
.lv-legal-intro {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #2f193d;
}

.lv-legal-intro-title {
  font-size: 1.3rem;
  color: #2f193d;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Principais pontos */
.lv-legal-key-points {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e2e0dc;
}

.lv-legal-key-points-title {
  font-size: 1.2rem;
  color: #2f193d;
  margin-bottom: 15px;
  font-weight: 600;
}

.lv-legal-key-point {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.lv-legal-key-point-number {
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #0e6875;
}

.lv-legal-key-point-title {
  font-weight: 600;
  color: #2f193d;
  margin-bottom: 5px;
}

/* Seções dos termos */
.lv-legal-section {
  margin-bottom: 30px;
  border-bottom: 1px solid #f0f2f5;
  padding-bottom: 20px;
}

.lv-legal-section:last-child {
  border-bottom: none;
}

.lv-legal-section-title {
  font-size: 1.2rem;
  color: #2f193d;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.lv-legal-section-number {
  background-color: #2f193d;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 0.9rem;
}

/* Subseções */
.lv-legal-subsection {
  margin-bottom: 15px;
  padding-left: 20px;
}

.lv-legal-subsection-title {
  font-weight: 600;
  color: #0e6875;
  margin-bottom: 10px;
}

/* Paragrafos */
.lv-legal-paragraph {
  margin-bottom: 15px;
  text-align: justify;
}

/* Lista não ordenada */
.lv-legal-list {
  list-style-type: none;
  margin-bottom: 15px;
  padding-left: 20px;
}

.lv-legal-list-item {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.lv-legal-list-item:before {
  content: "•";
  color: #0e6875;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Rodapé */
.lv-legal-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f2f5;
  color: #6c757d;
}

.lv-legal-contact {
  margin-top: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 6px;
  text-align: center;
}

.lv-legal-contact-title {
  font-weight: 600;
  color: #2f193d;
  margin-bottom: 10px;
}

.lv-legal-contact-email {
  color: #0e6875;
  font-weight: 500;
}

/* Tabelas */
.lv-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  overflow: hidden;
}

.lv-legal-table-row {
  display: flex;
  flex-wrap: wrap;
}

.lv-legal-table-header {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #2f193d;
}

.lv-legal-table-cell {
  padding: 10px;
  border-bottom: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  flex: 1;
}

.lv-legal-table-cell:first-child {
  flex: 0 0 30%;
}

.lv-legal-table-cell:last-child {
  border-right: none;
  flex: 0 0 20%;
}

.lv-legal-table-row:last-child .lv-legal-table-cell {
  border-bottom: none;
}

@media (max-width: 768px) {
  .lv-legal-table-row {
    flex-direction: column;
  }
  .lv-legal-table-cell {
    flex: 1 0 100% !important;
    border-right: none;
  }
  .lv-legal-table-cell:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
  }
}
/* Responsividade */
@media (max-width: 768px) {
  .lv-legal-container {
    padding: 20px 15px;
  }
  .lv-legal-title {
    font-size: 1.5rem;
  }
  .lv-legal-subtitle {
    font-size: 1rem;
  }
  .lv-legal-section-title {
    font-size: 1.1rem;
  }
}
/* Estilos específicos da página de visualização de vaga */
.job-view-header {
  background-color: var(--primary);
  padding: 60px 0 80px;
  position: relative;
  color: var(--light);
}

.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  margin: 0 10px;
  color: var(--light);
  opacity: 0.5;
}

.header-accent {
  position: absolute;
  background-color: var(--secondary);
  z-index: 0;
}

.header-accent-1 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  opacity: 0.1;
}

.header-accent-2 {
  width: 50px;
  height: 300px;
  top: 10%;
  right: 10%;
  transform: rotate(45deg);
  opacity: 0.1;
}

.job-header-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  margin-bottom: -50px;
  border: 2px solid var(--primary);
}

.job-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.job-header-left {
  display: flex;
  flex-direction: column;
}

.job-company-logo {
  width: 60px;
  height: 60px;
  background-color: var(--grey-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.job-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: "Space Mono", monospace;
}

.job-company {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--grey-dark);
}

.job-company i {
  color: var(--accent-2);
  margin-right: 8px;
}

.job-badges {
  display: flex;
  gap: 12px;
}

.job-badge {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: var(--light);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.job-badge i {
  margin-right: 6px;
}

.job-badge-remote {
  background-color: #E8F5E9;
  color: #2E7D32;
}

.job-badge-pcd {
  background-color: #E3F2FD;
  color: #1565C0;
}

.job-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.job-urgent-tag {
  display: flex;
  align-items: center;
  background-color: #FFF3E0;
  color: #E65100;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.job-urgent-tag i {
  margin-right: 6px;
}

.job-salary {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  font-family: "Space Mono", monospace;
}

.job-apply-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--primary);
  box-shadow: var(--retro-shadow);
  font-family: "Space Mono", monospace;
}

.job-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.job-apply-btn:active {
  transform: translateY(0);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.job-share-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  border-radius: 50%;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--primary);
}

.job-share-btn:hover {
  background-color: var(--primary);
  color: var(--light);
}

.job-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid var(--grey-light);
}

.job-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.job-meta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
}

.job-meta-label {
  font-size: 13px;
  color: var(--grey-dark);
  margin-bottom: 5px;
}

.job-meta-value {
  font-weight: 600;
  color: var(--primary);
}

/* Conteúdo Principal */
.main-content {
  padding: 80px 0;
  background-color: var(--light);
}

.job-content-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.job-detail-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary);
  overflow: hidden;
}

.job-section {
  padding: 30px;
  border-bottom: 1px solid var(--grey-light);
}

.job-section:last-child {
  border-bottom: none;
}

.job-section-title {
  display: flex;
  align-items: center;
  font-family: "Space Mono", monospace;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
}

.job-section-title i {
  margin-right: 10px;
  background-color: var(--light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-description {
  color: var(--grey-dark);
  line-height: 1.6;
}

.job-description p {
  margin-bottom: 15px;
}

.job-description ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.job-description li {
  margin-bottom: 8px;
}

.job-list {
  list-style: none;
  padding: 0;
}

.job-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed var(--grey-light);
}

.job-list li:last-child {
  border-bottom: none;
}

.job-list li i {
  color: var(--tertiary);
  margin-right: 10px;
  font-size: 14px;
  flex-shrink: 0;
}

.job-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}

.job-benefits li {
  display: flex;
  align-items: center;
  background-color: var(--light);
  padding: 12px 15px;
  border-radius: var(--radius-md);
}

.job-benefits li i {
  color: var(--tertiary);
  margin-right: 10px;
}

.job-cta {
  padding: 30px;
  text-align: center;
  background-color: var(--light);
}

/* Company Card e Summary */
.company-card, .job-summary-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary);
  margin-bottom: 30px;
}

.company-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.company-logo {
  width: 50px;
  height: 50px;
  background-color: var(--grey-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.company-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary);
}

.company-location {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--grey-dark);
}

.company-location i {
  margin-right: 5px;
  font-size: 14px;
}

.company-details {
  margin-bottom: 20px;
}

.company-detail {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--grey-dark);
}

.company-detail i {
  width: 25px;
  color: var(--tertiary);
  margin-right: 10px;
}

.company-btn {
  display: block;
  padding: 12px 20px;
  background-color: var(--light);
  color: var(--primary);
  text-align: center;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--primary);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.company-btn:hover {
  background-color: var(--grey-light);
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.summary-title {
  display: flex;
  align-items: center;
  font-family: "Space Mono", monospace;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 20px;
}

.summary-title i {
  margin-right: 10px;
}

.summary-list {
  list-style: none;
  padding: 0;
}

.summary-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--grey-light);
}

.summary-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.summary-icon {
  width: 35px;
  height: 35px;
  background-color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--tertiary);
  flex-shrink: 0;
}

.summary-label {
  font-size: 13px;
  color: var(--grey-dark);
  margin-bottom: 3px;
}

.summary-value {
  font-weight: 600;
  color: var(--primary);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.job-tag {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background-color: var(--light);
  border-radius: 20px;
  font-size: 13px;
  color: var(--tertiary);
}

.job-tag i {
  margin-right: 6px;
}

/* Similar Jobs Section */
.similar-jobs {
  margin-top: 50px;
}

.similar-jobs-title {
  font-family: "Space Mono", monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--grey-light);
  position: relative;
}

.similar-jobs-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background-color: var(--secondary);
}

.similar-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.similar-job-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--retro-shadow);
  border: 2px solid var(--primary);
  transition: all 0.3s;
}

.similar-job-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
}

.similar-job-company {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.similar-job-logo {
  width: 40px;
  height: 40px;
  background-color: var(--grey-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.similar-job-company-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-dark);
}

.similar-job-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.similar-job-title a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.similar-job-title a:hover {
  color: var(--tertiary);
}

.similar-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--grey-dark);
}

.similar-job-meta-item {
  display: flex;
  align-items: center;
}

.similar-job-meta-item i {
  margin-right: 5px;
  font-size: 14px;
}

.similar-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.similar-job-tag {
  background-color: var(--light);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  color: var(--grey-dark);
}

.similar-job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--grey-light);
}

.similar-job-salary {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
}

.similar-job-link {
  padding: 8px 15px;
  background-color: var(--light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--primary);
}

.similar-job-link:hover {
  background-color: var(--primary);
  color: var(--light);
}

/* Newsletter CTA */
.job-newsletter {
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--retro-shadow);
  border: 2px solid var(--primary);
}

.job-newsletter::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--primary) 1px, transparent 1px), linear-gradient(to right, var(--primary) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: 0;
  top: 0;
  left: 0;
}

.newsletter-title {
  font-family: "Space Mono", monospace;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.newsletter-description {
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-input {
  flex-grow: 1;
  padding: 15px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 16px;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-button {
  padding: 15px 25px;
  background-color: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  border: 2px solid var(--primary);
  border-left: none;
  border-radius: var(--radius-md);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Space Mono", monospace;
}

.newsletter-button:hover {
  background-color: var(--primary);
  color: var(--light);
}

/* Item Card - Experiências e Formações */
.item-card {
  background: #fff;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}
.item-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.item-card:last-child {
  margin-bottom: 0;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 4px 0;
}

.item-subtitle {
  font-size: 13px;
  color: var(--grey-dark);
  margin: 0 0 6px 0;
}

.item-meta {
  font-size: 12px;
  color: var(--grey-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.item-meta i {
  font-size: 11px;
  color: var(--tertiary);
}

.item-description {
  font-size: 13px;
  color: var(--grey-dark);
  line-height: 1.5;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--grey-light);
  margin-top: 10px;
}

.item-actions {
  display: flex;
  gap: 8px;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--grey-dark);
  cursor: pointer;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.btn-icon:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--accent-1);
}
.btn-icon i {
  font-size: 14px;
}

/* Responsividade */
@media (max-width: 992px) {
  .job-content-container {
    grid-template-columns: 1fr;
  }
  .job-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .job-header-top {
    flex-direction: column;
    gap: 30px;
  }
  .job-header-right {
    align-items: flex-start;
  }
  .job-meta {
    grid-template-columns: 1fr;
  }
  .similar-jobs-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }
  .newsletter-input {
    border-radius: var(--radius-md);
  }
  .newsletter-button {
    border-radius: var(--radius-md);
    border-left: 2px solid var(--primary);
  }
}
/* Estilos para a seção de automação */
.automation-section {
  padding: 100px 0;
  background-color: var(--tertiary-dark);
  position: relative;
  overflow: hidden;
}

.automation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(to right, var(--primary), var(--primary) 30px, var(--tertiary) 30px, var(--tertiary) 60px);
}

.automation-title {
  margin-bottom: 70px;
  color: white;
}

.automation-title h2 {
  line-height: 1.3;
  color: var(--tertiary) !important;
}

.automation-title p {
  color: white !important;
}

.automation-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.automation-text {
  flex: 1;
}

.automation-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.automation-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
  padding: 20px;
  border-radius: 8px;
  background-color: white;
  border-left: 4px solid var(--secondary);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.automation-item:hover {
  transform: translateX(5px);
}

.automation-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.automation-icon svg {
  width: 25px;
  height: 25px;
  fill: white;
}

.automation-info h3 {
  font-family: "Space Mono", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}

.automation-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--grey-dark);
}

.automation-cta {
  margin-top: 30px;
}

.what-is-ats-image {
  flex: 1;
  position: relative;
}

.what-is-ats-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.what-is-ats-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 8px;
  top: 15px;
  left: 15px;
  z-index: 0;
}

/* Estilos responsivos */
@media (max-width: 992px) {
  .automation-content {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .automation-text,
  .what-is-ats-image {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .automation-section {
    padding: 70px 0;
  }
  .automation-title h2 {
    font-size: 2rem;
  }
  .automation-item {
    padding: 15px;
  }
  .automation-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  .automation-icon svg {
    width: 20px;
    height: 20px;
  }
  .automation-info h3 {
    font-size: 1.1rem;
  }
}
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  align-items: center;
  gap: 6px;
}

.dropdown-toggle i {
  font-size: 10px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Mega Menu Container */
.retro-mega-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  max-width: calc(100vw - 40px);
  background: white;
  border-radius: var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: rgba(228, 228, 228, 0.3) 0px 1px 2px 0px, rgba(79, 81, 82, 0.15) 0px 1px 3px 1px;
}

.nav-dropdown:hover .retro-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Arrow */
.retro-mega-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: white;
  border-top: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  transform: translateX(-50%) rotate(45deg);
}

/* Menu Layout */
.menu-container {
  padding: 30px;
}

.menu-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Section Heading */
.section-heading {
  font-family: "Space Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
}

/* Menu Links */
.menu-link {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.menu-link:hover {
  background: var(--light);
  border-radius: 4px;
  transform: translateX(5px);
  padding: 10px;
  border: 1px solid transparent !important;
}

.link-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.link-icon i {
  font-size: 18px;
  color: var(--white);
}

.menu-link:hover .link-icon {
  background: var(--secondary);
  transform: rotate(-5deg);
}

.link-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 4px 0;
  font-family: "Space Mono", monospace;
}

.link-content p {
  font-size: 13px;
  color: var(--grey-dark);
  margin: 0;
  line-height: 1.4;
}

/* Featured Section */
.featured-section {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.featured-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.featured-image {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, var(--secondary), var(--tertiary));
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--primary);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content h4 {
  font-family: "Space Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.featured-content p {
  font-size: 14px;
  color: var(--grey-dark);
  line-height: 1.5;
  margin: 0 0 15px 0;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary) !important;
  font-weight: 600;
  text-decoration: none;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  transition: all 0.3s;
}

.featured-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.featured-link i {
  font-size: 12px;
  transition: transform 0.3s;
}

.featured-link:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .retro-mega-menu {
    width: 95vw;
  }
  .menu-content {
    grid-template-columns: 1fr 1fr;
  }
  .featured-section {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .retro-mega-menu {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    border-radius: 0;
    box-shadow: none;
  }
  .retro-mega-menu::before {
    display: none;
  }
  .menu-container {
    padding: 20px;
  }
  .menu-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .menu-link {
    padding: 10px;
  }
}
.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 4px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.form-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.form-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.section-header {
  margin-bottom: 20px;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #172b4d;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title i {
  color: #5169d2;
  font-size: 14px;
}

.section-subtitle {
  font-size: 13px;
  color: #5e6c84;
  margin: 0;
}

.required-note {
  font-size: 12px;
  color: #5e6c84;
  margin-bottom: 20px;
  padding: 8px 12px;
  background-color: #f4f5f7;
  border-radius: 4px;
}
.required-note .star {
  color: #de350b;
  font-weight: 600;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field-grid.cols-1 {
  grid-template-columns: 1fr;
}
.field-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.field-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.span-full {
  grid-column: 1/-1;
}

.field {
  margin-bottom: 0;
}

.field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #172b4d;
  margin-bottom: 8px;
  line-height: 1.4;
}

.req {
  color: #de350b;
  margin-left: 2px;
  font-weight: 600;
}

.opt {
  font-weight: 400;
  color: #5e6c84;
  font-size: 12px;
  margin-left: 4px;
}

.field-input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #172b4d;
  background-color: #ffffff;
  border: 1.5px solid #e5e5e5;
  border-radius: 4px;
  transition: all 0.2s ease;
  outline: none;
}
.field-input::placeholder {
  color: #5e6c84;
}
.field-input:hover:not(:disabled):not(:focus) {
  border-color: #c9c7c5;
  background-color: #F4F5F7;
}
.field-input:focus {
  border-color: #5169d2;
  background-color: #ffffff;
}
.field-input:disabled {
  background-color: #f4f5f7;
  color: #a5adba;
  cursor: not-allowed;
}
.field-input.error {
  border-color: #de350b;
  background-color: #ffebe6;
}
.field-input.success {
  border-color: #00875a;
}

.field-textarea {
  min-height: 100px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.5;
  height: auto;
}

.field-select {
  padding-right: 36px;
  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='%235E6C84' d='M3.5 4.5L6 7l2.5-2.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.input-with-icon {
  position: relative;
}
.input-with-icon .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #5e6c84;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.input-with-icon .field-input {
  padding-left: 42px;
}

.field-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5e6c84;
  margin-top: 6px;
}
.field-hint i {
  font-size: 11px;
}

.date-selects {
  display: flex;
  gap: 8px;
}
.date-selects .field-select {
  flex: 1;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: #172b4d;
}
.checkbox-option input[type=checkbox] {
  width: 18px;
  height: 18px;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  cursor: pointer;
  accent-color: #5169d2;
}
.checkbox-option:hover input[type=checkbox] {
  border-color: #5169d2;
}

.smart-import {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1.5px solid black;
  border-radius: 10px;
  margin-bottom: 24px;
}

.smart-import-icon {
  width: 48px;
  height: 48px;
  background: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.smart-import-icon i {
  font-size: 20px;
  color: white;
}

.smart-import-content {
  flex: 1;
}
.smart-import-content strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #172b4d;
  margin-bottom: 2px;
}
.smart-import-content span {
  font-size: 13px;
  color: #42526e;
}

.smart-import-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #1A1A1A;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.smart-import-btn:hover {
  background-color: #333333;
  transform: translateY(-1px);
}
.smart-import-btn i {
  font-size: 14px;
}

.form-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}
.form-alert i {
  font-size: 18px;
  flex-shrink: 0;
}
.form-alert span {
  line-height: 1.4;
}

.form-alert-success {
  background-color: #e3fcef;
  color: #00875a;
  border: 1px solid rgba(0, 135, 90, 0.2);
}

.form-alert-error {
  background-color: #ffebe6;
  color: #de350b;
  border: 1px solid rgba(222, 53, 11, 0.2);
}

.form-alert-info {
  background-color: #deebff;
  color: #0065ff;
  border: 1px solid rgba(0, 101, 255, 0.2);
}

.form-alert-warning {
  background-color: #fffae6;
  color: #ffab00;
  border: 1px solid rgba(255, 139, 0, 0.2);
}

.dynamic-section {
  background-color: #FAFBFC;
  border: 1px solid #EBECF0;
  border-radius: 8px;
  overflow: hidden;
}

.dynamic-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background-color: #F4F5F7;
  border-bottom: 1px solid #EBECF0;
}
.dynamic-header span {
  font-size: 14px;
  font-weight: 500;
  color: #172b4d;
}
.dynamic-header span small {
  font-weight: 400;
  color: #5e6c84;
}

.btn-add {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background-color: #5169d2;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-add:hover {
  background-color: #3851c0;
}

.entry-form {
  display: none;
  padding: 20px;
  background-color: white;
  border-bottom: 1px solid #EBECF0;
}
.entry-form.active {
  display: block;
}

.entry-form-title {
  font-size: 14px;
  font-weight: 600;
  color: #5169d2;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.entry-form-title i {
  font-size: 14px;
}

.entry-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #EBECF0;
}

.empty-state {
  padding: 40px 20px;
  text-align: center;
  color: #5e6c84;
}
.empty-state i {
  font-size: 32px;
  margin-bottom: 12px;
  opacity: 0.5;
}
.empty-state p {
  margin: 0;
  font-size: 14px;
}

.item-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: white;
  border-bottom: 1px solid #EBECF0;
}
.item-card:last-child {
  border-bottom: none;
}

.item-card-content {
  flex: 1;
}

.item-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #172b4d;
  margin: 0 0 4px 0;
}

.item-card-subtitle {
  font-size: 13px;
  color: #42526e;
  margin: 0 0 6px 0;
}

.item-card-meta {
  font-size: 12px;
  color: #5e6c84;
  display: flex;
  align-items: center;
  gap: 8px;
}
.item-card-meta i {
  font-size: 11px;
}

.item-card-description {
  font-size: 13px;
  color: #42526e;
  margin-top: 8px;
  line-height: 1.5;
}

.item-card-actions {
  display: flex;
  gap: 8px;
  margin-left: 16px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  min-height: 44px;
  background-color: #ffffff;
  border: 1.5px solid #e5e5e5;
  border-radius: 4px;
  margin-bottom: 10px;
}
.tags-container:empty {
  display: none;
}
.tags-container:focus-within {
  border-color: #5169d2;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 13px;
  background-color: rgba(81, 105, 210, 0.1);
  color: #5169d2;
  border-radius: 16px;
  font-weight: 500;
}
.tag .tag-remove {
  cursor: pointer;
  font-size: 10px;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.tag .tag-remove:hover {
  opacity: 1;
  color: #de350b;
}

.language-block {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FAFBFC;
  border: 1px solid #EBECF0;
  border-radius: 8px;
}
.language-block:last-child {
  margin-bottom: 0;
}

.language-block-title {
  font-size: 14px;
  font-weight: 600;
  color: #172b4d;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-block-title i {
  color: #5169d2;
  font-size: 14px;
}

.level-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.level-option input[type=radio] {
  display: none;
}
.level-option label {
  display: inline-block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #42526e;
  background-color: white;
  border: 1.5px solid #e5e5e5;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.level-option label:hover {
  border-color: #5169d2;
  color: #5169d2;
}
.level-option input[type=radio]:checked + label {
  background-color: #5169d2;
  border-color: #5169d2;
  color: white;
}

.pcd-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.pcd-toggle-option {
  flex: 1;
}
.pcd-toggle-option input[type=radio] {
  display: none;
}
.pcd-toggle-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #42526e;
  background-color: #ffffff;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.pcd-toggle-option label i {
  font-size: 16px;
}
.pcd-toggle-option label:hover {
  border-color: #5169d2;
}
.pcd-toggle-option input[type=radio]:checked + label {
  background-color: rgba(81, 105, 210, 0.1);
  border-color: #5169d2;
  color: #5169d2;
}

.pcd-details {
  display: none;
  padding: 20px;
  background-color: #FAFBFC;
  border: 1px solid #EBECF0;
  border-radius: 8px;
  margin-top: 16px;
}
.pcd-details.active {
  display: block;
}

.file-upload {
  border: 2px dashed #e5e5e5;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
}
.file-upload:hover {
  border-color: #5169d2;
  background-color: rgba(81, 105, 210, 0.03);
}
.file-upload.drag-over {
  border-color: #5169d2;
  background-color: rgba(81, 105, 210, 0.05);
}

.file-upload-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background-color: rgba(81, 105, 210, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.file-upload-icon i {
  font-size: 24px;
  color: #5169d2;
}

.file-upload-content .link {
  color: #5169d2;
  font-weight: 500;
  cursor: pointer;
}
.file-upload-content .link:hover {
  text-decoration: underline;
}

.file-upload-text {
  font-size: 14px;
  color: #172b4d;
  margin: 0 0 6px 0;
}

.file-upload-hint {
  font-size: 12px;
  color: #5e6c84;
  margin: 0;
}

.formats {
  font-size: 12px;
  color: #5e6c84;
}

.file-preview {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background-color: #F4F5F7;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-top: 12px;
}
.file-preview.active {
  display: flex;
}

.file-preview-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.file-preview-info i {
  font-size: 20px;
  color: #5169d2;
}
.file-preview-info span {
  font-size: 14px;
  font-weight: 500;
  color: #172b4d;
}

.references-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reference-card-horizontal {
  background-color: #FAFBFC;
  border: 1px solid #EBECF0;
  border-radius: 8px;
  overflow: hidden;
}

.reference-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: #F4F5F7;
  border-bottom: 1px solid #EBECF0;
}

.reference-badge {
  font-size: 12px;
  font-weight: 600;
  color: #5169d2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reference-fields-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
}

.btn-remove-reference {
  background: none;
  border: none;
  color: #5e6c84;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.15s;
}
.btn-remove-reference:hover {
  color: #de350b;
  background-color: #ffebe6;
}

.btn-add-reference {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: transparent;
  color: #5169d2;
  border: 1.5px dashed #5169d2;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
}
.btn-add-reference:hover {
  background-color: rgba(81, 105, 210, 0.05);
}
.btn-add-reference:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn i {
  font-size: 14px;
}

.btn-primary {
  background-color: #5169d2;
  color: white;
}
.btn-primary:hover:not(:disabled) {
  background-color: #3851c0;
  transform: translateY(-1px);
}
.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-secondary {
  background-color: #F4F5F7;
  color: #172b4d;
  border: 1px solid #e5e5e5;
}
.btn-secondary:hover:not(:disabled) {
  background-color: #EBECF0;
}

.btn-success {
  background-color: #00875a;
  color: white;
}
.btn-success:hover:not(:disabled) {
  background-color: #006644;
  transform: translateY(-1px);
}

.btn-danger {
  background-color: #de350b;
  color: white;
}
.btn-danger:hover:not(:disabled) {
  background-color: #BF2600;
}

.btn-small {
  height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

.btn-large {
  height: 52px;
  padding: 0 28px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.form-actions {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #EBECF0;
}

.divider {
  height: 1px;
  background-color: #EBECF0;
  margin: 24px 0;
}

.phone-wrapper {
  position: relative;
}

@media (max-width: 768px) {
  .form-container {
    padding: 20px;
    margin: 0 10px;
    border-radius: 8px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .field-grid.cols-3, .field-grid.cols-4 {
    grid-template-columns: 1fr;
  }
  .reference-fields-horizontal {
    grid-template-columns: 1fr;
  }
  .smart-import {
    flex-direction: column;
    text-align: center;
  }
  .smart-import-content {
    text-align: center;
  }
  .level-selector {
    justify-content: center;
  }
  .pcd-toggle {
    flex-direction: column;
  }
  .date-selects {
    flex-direction: column;
  }
  .form-actions .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .form-container {
    padding: 16px;
    margin: 0;
    border-radius: 0;
  }
  .section-title {
    font-size: 16px;
  }
  .entry-form-actions {
    flex-direction: column;
  }
  .entry-form-actions .btn {
    width: 100%;
  }
}
.select2-container {
  width: 100% !important;
  box-sizing: border-box;
}

.select2-container--default .select2-selection--single {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 6px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #172b4d;
  background-color: #ffffff;
  border: 1.5px solid #e5e5e5;
  border-radius: 4px;
  transition: all 0.2s ease;
  outline: none;
  box-sizing: border-box;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  display: block;
  flex: 1;
  padding: 0;
  padding-right: 20px;
  line-height: 40px;
  color: #172b4d;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #5e6c84;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #5e6c84 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.select2-container--default .select2-selection--single:hover {
  border-color: #c9c7c5;
  background-color: #F4F5F7;
}
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #5169d2;
  background-color: #ffffff;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #5e6c84 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: #5169d2;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #f4f5f7;
  cursor: not-allowed;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
  color: #a5adba;
}
.select2-container--default.select2-container--disabled .select2-selection--single:hover {
  border-color: #e5e5e5;
  background-color: #f4f5f7;
}

.select2-dropdown {
  border: 1.5px solid #e5e5e5;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 9999;
}

.select2-results {
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-container--default .select2-results__option {
  padding: 10px 14px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #172b4d;
  cursor: pointer;
  transition: background-color 0.15s;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: rgba(81, 105, 210, 0.1);
  color: #1A1A1A;
}
.select2-container--default .select2-results__option--highlighted, .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #1A1A1A;
  color: white;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #a5adba;
  cursor: not-allowed;
}

.select2-search--dropdown {
  padding: 10px;
  border-bottom: 1px solid #EBECF0;
}
.select2-search--dropdown .select2-search__field {
  width: 100%;
  height: 36px;
  padding: 0 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #172b4d;
  background-color: #ffffff;
  border: 1.5px solid #e5e5e5;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field:focus {
  border-color: #5169d2;
  background-color: #ffffff;
}

.select2-results__message {
  padding: 10px 14px;
  font-size: 14px;
  color: #5e6c84;
  text-align: center;
}

.form-container,
.field,
.field-grid {
  overflow-x: hidden;
}

.app-footer {
  background: transparent;
  padding: 24px 5%;
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}

.footer-link {
  color: #42526e;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #172b4d;
}

.footer-copyright {
  color: #5e6c84;
  font-size: 12px;
}

@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
html, body {
  overflow-x: hidden;
}

.select2-container--open .select2-dropdown {
  max-width: 100vw;
  box-sizing: border-box;
}

.select2-selection__arrow {
  display: none !important;
}

.select2-results__option--highlighted,
.select2-results__option:hover {
  background-color: #0052CC !important;
  color: #fff !important;
}

.select2-results__option--selected,
.select2-results__option[aria-selected=true] {
  background-color: #172B4D !important;
  color: #fff !important;
}

/*# sourceMappingURL=base-jobs.css.map */
