/* ========================================
   que-buscamos Page - Specific Styles
   ======================================== */

:root {
  --primary: #7b61ff;
  --secondary: #ff6fb1;
  --accent: #0ea5e9;
  --dark: #0f172a;
  --light: #f0f9ff;
  --gradient: linear-gradient(135deg, #7b61ff 0%, #ff6fb1 50%, #0ea5e9 100%);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: var(--font) !important;
  margin: 0;
  padding: 0;
  background: var(--dark) !important;
  color: #f0f0f5 !important;
  line-height: 1.6;
}

/* ========================================
   Main Content Area
   ======================================== */

#main {
  min-height: 100vh;
  background: var(--dark);
  margin-top: 60px;
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ========================================
   Mission, Vision, Values Section
   ======================================== */

.mvv-section {
  background: var(--dark);
  padding: 60px 20px;
  position: relative;
}

.mvv-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.03;
  z-index: 0;
}

.section-title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 15px 0;
}

.section-title p {
  font-size: 16px;
  color: #f0f0f5;
  margin: 0;
}

/* MVV Grid */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* MVV Card */
.mvv-card {
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.08) 0%, rgba(255, 107, 177, 0.08) 100%);
  border: 1.5px solid rgba(123, 97, 255, 0.15);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mvv-card:hover {
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.15) 0%, rgba(255, 107, 177, 0.15) 100%);
  border-color: rgba(123, 97, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(123, 97, 255, 0.2);
}

.mvv-card:hover::before {
  transform: scaleX(1);
}

.mvv-card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(123, 97, 255, 0.2);
}

.mvv-card:hover .mvv-card-icon-wrapper {
  transform: scale(1.1) rotateY(5deg);
  box-shadow: 0 12px 30px rgba(123, 97, 255, 0.35);
}

.mvv-card-icon {
  font-size: 36px;
  color: #fff;
}

.mvv-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.mvv-card p {
  font-size: 14px;
  color: #f0f0f5;
  line-height: 1.8;
  margin: 0;
}

/* ========================================
   Vacancies Section
   ======================================== */

.vacancies-section {
  background: var(--dark);
  padding: 80px 20px;
  position: relative;
}

.vacancies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.03;
  z-index: 0;
}

.vacancies-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.badge-pill {
  display: inline-block;
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.2), rgba(255, 107, 177, 0.2));
  border: 1px solid rgba(123, 97, 255, 0.3);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.vacancies-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.vacancies-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient);
}

.vacancies-header p {
  font-size: 16px;
  color: #f0f0f5;
  margin-top: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Vacancies Grid */
.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

/* Job Card */
.job-card {
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.08) 0%, rgba(255, 107, 177, 0.08) 100%);
  border: 1.5px solid rgba(123, 97, 255, 0.15);
  border-radius: 16px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.job-card:hover {
  background: linear-gradient(135deg, rgba(123, 97, 255, 0.15) 0%, rgba(255, 107, 177, 0.15) 100%);
  border-color: rgba(123, 97, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(123, 97, 255, 0.2);
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.job-card-icon {
  font-size: 40px;
}

.job-card-badge {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.job-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.job-card-subtitle {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.job-card-description {
  font-size: 14px;
  color: #f0f0f5;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.job-requirements {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.job-requirements-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: block;
}

.job-requirement-tag {
  display: inline-block;
  background: rgba(123, 97, 255, 0.1);
  border: 1px solid rgba(123, 97, 255, 0.2);
  color: #f0f0f5;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.job-card:hover .job-requirement-tag {
  background: rgba(123, 97, 255, 0.2);
  border-color: rgba(123, 97, 255, 0.4);
}

.job-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(123, 97, 255, 0.1);
  position: relative;
  z-index: 1;
}

.job-benefit {
  font-size: 13px;
  color: #f0f0f5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-benefit i {
  color: var(--primary);
  font-size: 16px;
}

.job-card-footer {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.apply-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.apply-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 97, 255, 0.3);
}

.apply-button i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.job-card:hover .apply-button i {
  transform: translateX(3px);
}

/* ========================================
   Header Styles
   ======================================== */

header {
  background: rgba(15, 23, 42, 0.98) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(123, 97, 255, 0.1);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header .logo a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  color: #f0f0f5;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(123, 97, 255, 0.2);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav-item:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  color: #f0f0f5 !important;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
}

.dropdown-item:hover,
.dropdown-item.active {
  color: var(--primary) !important;
  background: rgba(123, 97, 255, 0.1);
  padding-left: 25px;
}

.get-started-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.get-started-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 97, 255, 0.3);
}

/* ========================================
   Providers/Clients Section
   ======================================== */

#main {
  min-height: 100vh;
  background: var(--dark);
  margin-top: 60px;
  padding: 80px 0;
}

.clients {
  background: var(--dark);
  padding: 60px 20px;
  position: relative;
}

.clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.05;
  z-index: 0;
}

.section-title {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px 0;
}

.section-title p {
  font-size: 16px;
  color: #f0f0f5;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.provider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(123, 97, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 140px;
  position: relative;
  overflow: hidden;
}

.provider-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.provider-item:hover {
  background: rgba(123, 97, 255, 0.08);
  border-color: rgba(123, 97, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(123, 97, 255, 0.2);
}

.provider-item:hover::before {
  opacity: 1;
}

.provider-img {
  max-width: 85%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.provider-item:hover .provider-img {
  filter: grayscale(0%);
}

/* ========================================
   Footer Styles - CLEAN SLATE
   ======================================== */

footer {
  background: linear-gradient(135deg, #0f172a 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  color: #ccc !important;
  padding: 60px 0 30px !important;
  margin: 0 !important;
  border: none !important;
  margin-top: 60px !important;
}

footer * {
  border: none !important;
  box-shadow: none !important;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
  border: none !important;
  position: relative !important;
}

.footer-col h4::after {
  content: '' !important;
  display: block !important;
  width: 40px !important;
  height: 2px !important;
  background: var(--primary) !important;
  margin-top: 12px !important;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #f0f0f5 !important;
  text-decoration: none !important;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-col ul a:hover {
  color: var(--primary) !important;
  padding-left: 3px;
}

.footer-col ul a i {
  color: var(--primary);
  font-size: 12px;
}

.footer-col p {
  color: #f0f0f5;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-col p strong {
  color: var(--primary);
}

.social-links {
  display: flex !important;
  gap: 10px !important;
  margin-top: 20px !important;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(123, 97, 255, 0.1) !important;
  color: var(--primary) !important;
  transition: all 0.3s ease !important;
  font-size: 18px !important;
  padding: 0 !important;
  text-align: center !important;
  text-decoration: none !important;
  border: none !important;
  line-height: 36px !important;
}

.social-links a:hover {
  background: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #d8d8e0;
  font-size: 13px;
}

/* ========================================
   Preloader
   ======================================== */

#preloader {
  display: none;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1200px) {
  .mvv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vacancies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 36px;
  }

  .vacancies-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .mvv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vacancies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 0;
  }

  .nav-menu {
    display: none !important;
  }

  #main {
    padding: 60px 0;
    margin-top: 60px;
  }

  .mvv-section {
    padding: 40px 0;
  }

  .vacancies-section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .vacancies-header {
    margin-bottom: 40px;
  }

  .vacancies-header h2 {
    font-size: 28px;
  }

  .vacancies-header p {
    font-size: 14px;
    margin-top: 15px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mvv-card {
    padding: 30px 25px;
  }

  .mvv-card-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .mvv-card-icon {
    font-size: 28px;
  }

  .mvv-card h3 {
    font-size: 20px;
  }

  .vacancies-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .job-card {
    padding: 25px;
  }

  .job-card-title {
    font-size: 20px;
  }

  .job-card-description {
    font-size: 13px;
  }

  .job-card-icon {
    font-size: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  #main {
    padding: 40px 0;
    margin-top: 60px;
  }

  .mvv-section {
    padding: 30px 0;
  }

  .vacancies-section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 22px;
  }

  .section-title span {
    font-size: 11px;
  }

  .vacancies-header h2 {
    font-size: 22px;
  }

  .vacancies-header h2::after {
    width: 50px;
  }

  .badge-pill {
    font-size: 10px;
    padding: 6px 12px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mvv-card {
    padding: 20px;
  }

  .mvv-card-icon-wrapper {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .mvv-card-icon {
    font-size: 24px;
  }

  .mvv-card h3 {
    font-size: 18px;
  }

  .mvv-card p {
    font-size: 13px;
  }

  .vacancies-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .job-card {
    padding: 20px;
  }

  .job-card-header {
    margin-bottom: 15px;
  }

  .job-card-icon {
    font-size: 32px;
  }

  .job-card-title {
    font-size: 18px;
    margin-bottom: 3px;
  }

  .job-card-subtitle {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .job-card-description {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .job-requirement-tag {
    font-size: 11px;
    padding: 5px 10px;
  }

  .job-benefits {
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .job-benefit {
    font-size: 12px;
  }

  .apply-button {
    font-size: 12px;
    padding: 10px 20px;
  }

  .footer-col {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}




