/*
Theme Name: Zona Limpia Modern
Author: Antigravity
Description: Un tema moderno, limpio y premium para Zona Limpia, con glassmorphism y colores de la marca.
Version: 1.1
*/

:root {
  --primary-cyan: #00AEEF;
  --primary-cyan-rgb: 0, 174, 239;
  --primary-green: #8DC63F;
  --primary-green-rgb: 141, 198, 63;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-light: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.7);
  --white: #ffffff;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-lg: 20px;
  --border-radius-md: 12px;
  --border-radius-pill: 50px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.1);
}

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

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
}

/* Headings typography using Outfit */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
  line-height: 1.15;
}

/* Navbar: Floating Glassmorphism Style */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 5%;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  position: fixed;
  width: 90%;
  max-width: 1400px;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-lg);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-cyan);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-cyan);
}

.nav-phone {
  background: rgba(141, 198, 63, 0.1);
  color: var(--primary-green) !important;
  font-weight: 800 !important;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-phone::after {
  display: none !important;
}

.nav-phone:hover {
  background: rgba(141, 198, 63, 0.2);
  transform: translateY(-2px);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
  color: var(--primary-cyan);
}

@media (max-width: 768px) {
  .navbar {
    width: 95%;
    top: 1rem;
    border-radius: 24px;
    padding: 0.75rem 1.5rem;
  }

  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    margin: 0;
    padding: 0.85rem 2rem;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.02);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .nav-phone {
    margin-top: 0.5rem;
    width: 80%;
    justify-content: center;
  }
}

/* Hero Section: Asymmetric Design */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%),
              url('assets/hero-bg.jpg') center/cover no-repeat;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text-side {
  text-align: left;
}

.hero-headline {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-headline span {
  color: var(--primary-cyan);
  background: none;
  -webkit-text-fill-color: var(--primary-cyan);
}

.hero-subtext {
  font-size: 1.25rem;
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-cyan) 0%, #0082B3 100%);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.25);
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 174, 239, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-smooth);
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}

.hero-visual-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glass card inside Hero */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  transition: var(--transition-smooth);
}

.hero-glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-cyan);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-card-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(141, 198, 63, 0.15);
  border: 1px solid rgba(141, 198, 63, 0.3);
  padding: 0.85rem 1.25rem;
  border-radius: var(--border-radius-md);
}

.badge-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.badge-text {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text-side {
    text-align: center;
  }

  .hero-headline {
    font-size: 3rem;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* Services Section */
.services {
  padding: 7rem 5%;
  background-color: var(--bg-light);
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-cyan) 0%, var(--primary-green) 100%);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.service-card {
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 2.25rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 174, 239, 0.2);
}

.service-image {
  height: 180px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Ventajas Section --- */
.ventajas-section {
  padding: 7rem 5%;
  background-color: var(--white);
}

.ventajas-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}

.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ventaja-card {
  background: var(--bg-light);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(15, 23, 42, 0.03);
}

.ventaja-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(141, 198, 63, 0.2);
  background: var(--white);
}

.ventaja-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 174, 239, 0.08);
  color: var(--primary-cyan);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.ventaja-card:hover .ventaja-icon {
  background: var(--primary-cyan);
  color: var(--white);
  transform: rotateY(180deg);
}

.ventaja-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.ventaja-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 7rem 5%;
  background: var(--bg-light);
}

.contact-form {
  max-width: 700px;
  margin: 3rem auto 0;
  background: var(--white);
  padding: 3.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.02);
}

.contact-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--border-radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary-cyan);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.contact-form button[type=submit] {
  grid-column: span 2;
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .contact-form {
    padding: 2rem 1.5rem;
  }
  .contact-form form {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .contact-form button[type=submit] {
    grid-column: span 1;
  }
}

/* Footer */
footer {
  background: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

footer a {
  transition: var(--transition-smooth);
}

footer a:hover {
  color: var(--primary-green) !important;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Empleo Page Styles
   ========================================================================== */

/* Header styling */
.empleo-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 5%;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-zl {
  height: 50px;
  width: auto;
}

.logo-mel {
  height: 36px;
  width: auto;
}

.logo-separator {
  font-size: 1.5rem;
  color: #cbd5e1;
  font-weight: 300;
}

/* Hero Section */
.empleo-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.8) 100%),
              url('assets/hero-bg.jpg') center/cover no-repeat;
  padding: 6rem 5% 5rem;
  color: var(--white);
  text-align: center;
}

.empleo-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.empleo-hero-content {
  text-align: left;
}

.empleo-hero-content h1 {
  font-size: 3.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--primary-cyan);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(241, 245, 249, 0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.empleo-hero-visual {
  display: flex;
  justify-content: center;
}

.empleo-glass-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 320px;
}

.empleo-badge {
  display: inline-block;
  background: var(--primary-cyan);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.quick-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-benefits li {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quick-benefits li span {
  color: var(--primary-green);
  font-weight: 800;
  font-size: 1.2rem;
}

/* Offers section */
.empleo-offers {
  padding: 6rem 5%;
  background: var(--white);
}

.container-small {
  max-width: 800px;
  margin: 0 auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  margin-top: 3rem;
}

.offer-card {
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.offer-card.featured {
  border: 2px solid var(--primary-cyan);
  background: rgba(0, 174, 239, 0.02);
}

.offer-badge-card {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-cyan);
  color: var(--white);
  padding: 0.35rem 1rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 174, 239, 0.08);
  color: var(--primary-cyan);
  border-radius: 50%;
}

.offer-card.featured .offer-icon {
  background: var(--primary-cyan);
  color: var(--white);
}

.offer-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.salary-box {
  margin-bottom: 1.5rem;
}

.salary-amount {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
}

.salary-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.offer-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Benefits Box */
.benefits-box {
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefits-box h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.benefits-list li {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  color: var(--primary-green);
  font-weight: 800;
  font-size: 1.15rem;
}

/* Form Section */
.empleo-form-section {
  padding: 6rem 5%;
  background: var(--bg-light);
}

/* Document Checklist */
.document-checklist {
  margin-top: 1.5rem;
  grid-column: span 2;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
}

.document-question {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.question-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.radio-options {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.25rem;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.radio-option input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  cursor: pointer;
  accent-color: var(--primary-cyan);
  margin: 0 !important;
}

/* Media Queries for Empleo Page */
@media (max-width: 991px) {
  .empleo-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .empleo-hero-content {
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .empleo-hero-content h1 {
    font-size: 2.5rem;
  }
  .document-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .logo-container {
    gap: 1rem;
  }
  .logo-zl {
    height: 40px;
  }
  .logo-mel {
    height: 28px;
  }
}

