.container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 50px;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  height: 55px;
}

nav a {
  margin-left: 20px;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, #fff, var(--secondary));
  text-align: center;
  padding: 110px 0 120px;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  max-width: 700px;
  margin: auto;
  color: var(--muted);
}

footer {
  background: #fff;
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 30px 20px;
  color: var(--muted);
}
/* ===== Header ===== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

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

/* ===== Brand ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 90px; /* más presencia */
}
.logo-footer {
  height: 120px; /* más presencia */
}
.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #1f2933;
  letter-spacing: -0.5px;
}


.hero {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f3f4f6 100%
  );
  padding: 90px 0 100px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 30px;
}

.btn-primary {
  background: #ffffff;
  color: #b5bac9;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.section {
  padding: 70px 0;
}

.section.light {
  background: #f4f6f9;
}
.section h2 {
  font-size: 30px;
  margin-bottom: 16px;
  color: #0f172a;
}

.section p {
  color: #475569;
  max-width: 800px;
}

.section.light {
  background: #f8fafc;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
  margin-top: 30px;
}

.step {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 30px 0;
  text-align: center;
}
/* ===== Navigation ===== */
.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  color: #374151;
  position: relative;
  padding: 6px 0;
}

/* hover elegante */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2b6cb0;
  transition: width 0.25s ease;
}

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

/* activo */
.main-nav a.active {
  color: #F2C94C;
  font-weight: 600;
}

.main-nav a.active::after {
  width: 100%;
}
/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #1e40af, #2b6cb0);
  color: #ffffff;
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-text h1 span {
  color: var(--primary); /* protagonista */
}

.hero-subtitle {
  font-size: 18px;
  color: #f8fafc;
  opacity: 0.9;
}


.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-text {
  max-width: 560px; /* define el ancho del bloque de texto */
}

.hero-actions.center-with-text {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-text {
    text-align: center;
  }
}


/* Botones */
.btn-primary {
  background: #ffffff;
  color: #1e40af;
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* Visual cards */
.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-left: 4px solid #C55B11;
}

.hero-card strong {
  color: #0f172a;
  font-size: 15px;
}

.hero-card p {
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-visual {
    margin-top: 40px;
  }
}
.hero-card p {
  color: #334155;
  opacity: 0.9;
}
.hero-card strong {
  color: #334155;
}
.hero-card {
  background: rgba(255,255,255,0.18);
}

/* footer */
.site-footer {
  background: #e5e7eb; /* azul grisáceo oscuro */
  color: #e5e7eb;      /* gris claro */
  margin-top: 80px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff; /* blanco suave */
}

.footer-brand p {
  line-height: 1.6;
  color: var(--accent3); /* dorado suave */
}

.footer-owner {
  margin-top: 15px;
  color: var(--accent1); /* azul lavanda suave */
}

.footer-contact h4,
.footer-social h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000000;
}

.site-footer a {
  color: #000000; /* azul suave */
  text-decoration: none;
}

.site-footer a:hover {
  color: #ff4f9a;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #9ca3af; /* gris medio */
  font-size: 13px;
}


/* ===== HERO ===== */

.hero {
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef2f7 100%
  );
  padding: 80px 0 90px;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

.hero-text h1 span {
  color: #C55B11; /* naranja profesional */
}

.hero-text p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
}

/* ===== BOTÓN ===== */

.hero-actions.center {
  margin-top: 35px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .hero-actions.center {
    justify-content: center;
  }
}

.btn-primary {
  background: #2563eb;
  color: #fcfcfc;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

/* Botón más protagonista */
.btn-large {
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(37,99,235,0.25);
}


/*boton fino y elegante*/

.btn-elegante {
  display: inline-block;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #111;
  background: transparent;
  border: 1.5px solid #111;
  border-radius: 30px;

  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover */
.btn-elegante:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

/* Active */
.btn-elegante:active {
  transform: translateY(0);
  opacity: 0.85;
}

.btn-elegante.dark {
  border-color: #fff;
  color: #fff;
}

.btn-elegante.dark:hover {
  background: #fff;
  color: #000;
}
.btn-elegante.shadow:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.vacantes-lista {
  max-width: 900px;
  margin: 0 auto;
}

.vacante-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  transition: 0.3s ease;
}

.vacante-header {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  transition: 0.3s;
}

.vacante-header:hover {
  background: #f2f2f2;
}

.vacante-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.vacante-ciudad {
  font-size: 14px;
  color: #666;
}

.arrow {
  font-size: 18px;
  font-weight: bold;
  color: #C55B11;
}

.vacante-body {
  display: none;
  padding: 18px 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

.vacante-body p {
  margin-bottom: 10px;
}