/*! stylize.css v1.0.0 | License MIT | https://github.com/vasanthv/stylize.css */
:root {
  --text: #333333;
  --text-med: #888888;
  --text-light: #cccccc;
  --text-lighter: #eeeeee;
  --blue: #3469db;
  --dark-blue: #2980b9;
  --yellow: #ffeaa7;
  --red: #c0392b;
  --border-radius: 3px;
  --color-border:var(--dark-blue)
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth; /* Desplazamiento suave para toda la página */
}
body {
  position: relative;
  font-family: "Poppins", sans-serif; /* To use the system default font. */
  line-height: 1.6;
  font-size: 1em;
  color: var(--text);
  -webkit-text-size-adjust: 100%;
}

/* Headings */
h1 {
  font-size: 2em; /* h1 inside section is treated different in some browsers */
  margin: 0.67em 0;
}
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
h4 {
  font-size: 1em;
  margin: 1.17em 0;
}
h5 {
  font-size: 0.83em;
  margin: 1.5em 0;
}
h6 {
  font-size: 0.67em;
  margin: 2em 0;
}

/* Links */
a {
  color: var(--blue);
  background-color: transparent;
}
/* a:visited {
  color: var(--dark-blue);
} */

/* Navigation Links*/
nav {
  background-color: var(--text-lighter);
  padding: 1em;
  margin: -10px;
}
nav a {
  padding: 0.5em;
  border-radius: var(--border-radius);
  text-decoration: none;
}

/* Horizontal Line */
hr {
  border: 1px solid var(--text-med);
  border-bottom: 0px;
  height: 0px;
}

mark {
  background-color: var(--yellow);
  color: #333333;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
}

/* Quotation and Citation tags*/
blockquote {
  border-left: 4px solid var(--text-light);
  margin: 1em 0;
  padding: 0.6em 1em;
}
pre {
  font-family: monospace;
  border: 1px solid var(--text-light);
  background-color: var(--text-lighter);
  padding: 0.8em;
  border-radius: var(--border-radius);
  font-size: 1em;
  white-space: pre-wrap;
  word-wrap: break-word;
}
code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}
code,
kbd {
  border-radius: var(--border-radius);
  padding: 0px 2px;
}
code {
  border: 1px solid var(--text-light);
  background-color: var(--text-lighter);
  color: var(--red);
}
kbd {
  border: 1px solid var(--text);
  background-color: var(--text);
  color: var(--text-lighter);
}

/* List items */
ul,
ol {
  padding-left: 2em;
}

/* Form elements */

fieldset {
  border: 1px solid var(--text);
  border-radius: var(--border-radius);
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M00h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 50%;
}
button,
input,
select,
textarea,
a[role="button"] {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  padding: 0.33em;
  border: 1px solid var(--text-light);
  border-radius: var(--border-radius);
  box-sizing: border-box;
}
input[type="checkbox"],
input[type="radio"] {
  border: none;
  border: 0;
}

button,
input[type="button"],
input[type="submit"],
a[role="button"] {
  padding: 0.33em 0.66em;
  cursor: pointer;
  background-color: var(--text-lighter);
  color: var(--text);
  text-decoration: none;
}
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
a[role="button"]:hover {
  background-color: var(--text-light);
}
a[role="button"] {
  padding: 0.5em 0.66em;
}
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
a[role="button"]:disabled {
  background-color: var(--text-lighter);
  color: var(--text-light);
  cursor: not-allowed;
}
/* Progress Bar */

progress[value] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  border: none;
  width: 15em;
  height: 0.75em;
  background-color: var(--text-light);
  color: var(--blue);
}
progress[value]::-webkit-progress-bar {
  background-color: var(--text-light);
}
progress[value]::-webkit-progress-value {
  background-color: var(--blue);
}

/* Table Elements */
table {
  border-collapse: collapse;
}
table,
table th,
table td {
  border-bottom: 1px solid var(--text-light);
  padding: 0.33em 0.66em;
  text-align: left;
  vertical-align: middle;
}
table[border="1"],
table[border="1"] th,
table[border="1"] td {
  border: 1px solid var(--text-light);
}

/* Utility classes */
.left {
  float: left;
}
.right {
  float: right;
}
.center {
  text-align: center;
}
.clear {
  clear: both;
}
.hide {
  display: none;
}
.spacer {
  display: block;
  height: 1em;
  border: none;
  clear: both;
}
.wrap {
  width: 100%;
  max-width: 40em;
  margin: auto;
}
.reset {
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  text-decoration: none;
}
ol.reset,
ul.reset {
  list-style: none;
}

/* custom */
.poppins-thin {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: italic;
}

.nunito-normal {
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.nunito-bold {
  font-family: "Nunito", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.navbar {
  background-color: #f8f9fa; /* Color de fondo de la barra */
  /* padding: 0.5rem; */
  height: 90px; /* Espacio interno de la barra */
}
.navbar .container {
  display: flex;
  place-items: center;
  place-content: space-between;
  /* background-color: red;height: 100%; */
  padding: 0 10px;
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  width: 40px;
  margin-bottom: 12px;
}
.navbar-brand a {
  font-weight: bold; /* Texto de la marca en negrita */
  color: #343a40; /* Color del texto de la marca */
  text-decoration: none; /* Quitar subrayado del enlace de la marca */
  font-size: 1.8rem;
}
.navbar-nav {
  display: flex; /* Alinear los elementos de la lista horizontalmente */
  list-style: none; /* Quitar los puntos de la lista */
  margin: 0; /* Quitar márgenes de la lista */
  padding: 0; /* Quitar relleno de la lista */
  gap: 1rem;
}
.destacado {
  color: rgb(56, 12, 206);
}
/* .nav-item {
  margin-left: 1rem; /* Espacio entre los elementos de la lista */
/* } */
.nav-link {
  color: #343a40; /* Color del texto de los enlaces */
  text-decoration: none; /* Quitar subrayado de los enlaces */
  font-weight: 600;
}
.hero {
  padding: 10px;
  margin: 0;
  width: 100%;
  height: calc(100vh - 200px);
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(101, 67, 163, 0.35)
    ),
    url(../assets/hero1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 4rem;
  text-shadow: #333333 2px 0 7px;
}
.hero p {
  padding: 10px;
  margin: 10px 0;
  font-size: 2.5rem;
  text-shadow: #333333 2px 0 10px;
  font-weight: 500;
}
.hero .buttons-container {
  margin-top: 30px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.btn-primary,
.btn-secondary {
  box-shadow: 1px 1px 4px #000;
  text-decoration: none;
  padding: 15px;
  background-color: rgb(114, 114, 212);
  border: 0;
  border-radius: 4px;
  color: var(--text-lighter);
  font-size: 1.125rem;
  font-weight: 600;
}


.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

.navbar {
  background-color: #f0f0f0; /* Color de fondo de la barra de navegación */
  padding: 10px 0 !important;
  height: 90px;
}

.navbar .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 100%;
  margin-right: 10px;
  margin-top: 10px;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-item {
  margin-left: 20px;
}

.nav-link {
  text-decoration: none;
  color: #333; /* Color de enlace de navegación */
  font-weight: 500;
}

.hero {
  background-image: url("../assets/hero1.jpg"); /* Imagen de fondo del hero */
  background-size: cover;
  background-position: center;
  color: #fff; /* Color de texto del hero */
  padding: 100px 0;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

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

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.buttons-container {
  display: flex;
  justify-content: center;
}

.btn-primary {
  background-color: #007bff; /* Color de fondo del botón primario */
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1em;
  cursor: pointer;
  transition: ease .35s;
}

.btn-secondary {
  background-color: #6c757d; /* Color de fondo del botón secundario */
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1em;
  cursor: pointer;
}
.btn-primary:hover{
   background-color: #035dbe; /* Color de fondo del botón primario */
}
.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  ); /* Ajusta el ancho mínimo según tus necesidades */
  grid-gap: 20px;
}

.service {
  padding: 20px;
  border: 1px solid #ddd; /* Borde opcional para los servicios */
  text-align: center; /* Texto centrado en los servicios */
}

.service h3 {
  margin-bottom: 10px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(150px, 1fr)
  ); /* Ajusta el ancho mínimo para los logos */
  grid-gap: 20px;
  justify-items: center; /* Centrar horizontalmente los logos */
}

.clients-grid img {
  height: auto;
}

.footer {
  background-color: #333; /* Color de fondo del footer */
  color: #fff; /* Color de texto del footer */
  padding: 20px 0;
  text-align: center;
}

/* Estilos para el formulario de contacto */
#contacto form {
  display: flex;
  flex-direction: column;
}

#contacto input,
#contacto textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contacto textarea {
  height: 120px !important;
}

#contacto button {
  align-self: center; /* Centrar el botón */
}
/* register */

form input,
form textarea {
  width: calc(100% - 22px); /* Ajuste para el padding y el borde */
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Incluir el padding y el borde en el ancho total */
}

form button:hover {
  background-color: #0056b3;
}

/* Estilos para mensajes de error */
.error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}
.testimonials {
  padding: 10px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
}
.testimonials img {
  width: 120px;
  border-radius: 50%;
}
.testimonials p {
  text-align: center;
  padding: 5px;
}
.testimonials small {
  align-content: left;
  font-style: italic;
  color: #919191;
}
.not-found {
  /* margin-top: 40px; */
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
}
.not-found h1 {
  font-size: 10rem;
}
.input-error {
  border: 2px solid #e74c3c;
  background-color: #fff0f0;
}
.error {
  color: #e74c3c;
  font-size: 0.9em;
  margin: 4px 0 10px;
}
.page-top {
  position: fixed;
  bottom: 20px;
  right: 24px;
  z-index: 100;
  background-color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.35s;
  opacity: 0;
  visibility: hidden;
}
.page-top:hover {
  background-color: #0056b3;
}
.page-top.btn-primary {
  width: 50px !important;
  height: 50px !important;
  border-radius: 8px;
}
.page-top i {
  font-size: 2rem;
}
.page-top.show {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-toggle {
  display: none;
}

.pass-box {
  position: relative;
}
.pass-box svg {
  position: absolute;
  top: 20%;
  right: 30px;
  cursor: pointer;
}
.search-container {
  margin-bottom: 2rem;
}
#search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Nunito", sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#search-input:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(252, 211, 77, 0.5);
}
#ofertas-container {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.job-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.job-card h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.job-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}
.job-card .modality {
  font-style: italic;
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.job-card p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}
.job-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.job-card ul li {
  background-color: #e2e8f0;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-dark);
}
.no-results {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-top: 3rem;
}

.container.container-form{
  width: 50%;
}
