* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f5f5;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 9%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.logo img {
  width: 140px;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 31px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.menu a:hover {
  color: #e30613;
}

.menu i {
  font-size: 11px;
  margin-left: 4px;
}

.btn-presupuesto {
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 13px 25px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.btn-presupuesto:hover {
  background: #e30613;
  border-color: #e30613;
}

/* HERO */

.trabaja-hero {
  padding: 130px 8% 72px;
  background: #000;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 850px;
  margin: auto;
}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero-content p {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}

/* FORMULARIO */

.form-section {
  padding: 55px 8%;
  background: linear-gradient(180deg, #f5f5f5, #ffffff);
}

.form-container {
  max-width: 1135px;
  min-height: 560px;
  margin: auto;
  display: grid;
  grid-template-columns: 36% 64%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .14);
}

.form-info {
  background: #090909;
  color: #fff;
  padding: 48px 42px;
  position: relative;
  overflow: hidden;
}

.form-info::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: #e30613;
  border-radius: 50%;
  top: -70px;
  right: -70px;
  opacity: .95;
}

.form-info h2 {
  font-size: 34px;
  line-height: 1.12;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.form-info p {
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 320px;
  position: relative;
  z-index: 1;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.info-item i {
  width: 42px;
  height: 42px;
  background: #e30613;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 17px;
  flex-shrink: 0;
}

.info-item span {
  font-size: 15px;
  line-height: 1.4;
}

.trabaja-form {
  padding: 44px 54px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.input-group {
  margin-bottom: 17px;
}

.input-group label,
.file-box label {
  display: block;
  color: #020617;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  outline: none;
  color: #111827;
  transition: .3s;
}

.input-group textarea {
  height: 112px;
  resize: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #e30613;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(227, 6, 19, .10);
}

.file-box {
  border: 2px dashed #d1d5db;
  background: #f9fafb;
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: .3s;
}

.file-box:hover {
  border-color: #e30613;
  background: #fff5f5;
}

.file-box-heading {
  margin-bottom: 14px;
}

.file-box-heading p,
.file-upload p {
  color: #6b7280;
  font-size: 14px;
}

.file-box-heading p {
  margin-bottom: 0;
}

.file-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.file-upload {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 14px;
}

.file-upload label {
  font-size: 14px;
  margin-bottom: 6px;
}

.file-upload p {
  margin-bottom: 10px;
}

.file-box input {
  width: 100%;
  font-size: 14px;
}

.btn-enviar {
  width: 100%;
  border: none;
  background: #e30613;
  color: #fff;
  padding: 14px;
  border-radius: 13px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: .3s;
}

.btn-enviar:hover {
  background: #b9000b;
  transform: translateY(-2px);
}

/* FOOTER */

.footer {
  background: #000;
  color: #fff;
}

.footer-top {
  padding: 55px 9%;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 55px;
  background: #111;
}

.footer-brand img {
  width: 175px;
  display: block;
  margin-bottom: 25px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.5;
  max-width: 270px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.socials a {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #e30613;
  display: grid;
  place-items: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  transition: .3s;
}

.socials a:hover {
  background: #e30613;
  color: #fff;
}

.socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  margin: 0;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.footer-contact a:hover {
  color: #e30613;
}

.footer h3 {
  font-size: 21px;
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 9px;
  font-size: 15.5px;
  line-height: 1.25;
}

.footer li::before {
  content: "›";
  color: #e30613;
  font-size: 27px;
  margin-right: 10px;
  vertical-align: -2px;
}

.footer-contact {
  padding: 50px 9%;
  display: grid;
  grid-template-columns: 1fr 1.7fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.footer-contact p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 15px;
}

.footer-bottom {
  padding: 26px 9%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 27px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #e30613;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .menu {
    display: none;
  }

  .form-container {
    grid-template-columns: 1fr;
  }

  .form-info {
    padding: 40px 35px;
  }

  .footer-top,
  .footer-contact {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 0 6%;
  }

  .logo img {
    width: 130px;
  }

  .btn-presupuesto {
    display: none;
  }

  .trabaja-hero {
    padding: 115px 6% 55px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .form-section {
    padding: 40px 5%;
  }

  .trabaja-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .file-grid {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-contact {
    grid-template-columns: 1fr;
  }
}
