* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
  }

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

  .logo {
    width: 200px;
    height: auto;
  }

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

  .navbar ul {
    list-style: none;
    display: flex;
  }

  .navbar li {
    margin-left: 20px;
  }

  .navbar a {
    text-decoration: none;
    color: #333;
  }

  .navbar .desactivado {
      cursor: default;
  }

  .hero {
    height: calc(100vh - 202px);
  }

  .title {
    font-size: 36px;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .offers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }

  .offer {
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: white;
    padding: 15px;
  }

  .offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
  }

  .offer-title {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
  }

  .offer-description {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
  }

  .offer-company {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
  }

  .offer-contact {
    font-size: 14px;
    color: #1661ee;
    margin-top: 10px;
  }

  footer {
    display: flex;
    justify-content: center;
    background-color: rgb(62, 62, 62);
    padding: 0;
    color: aliceblue;

}

  .social-icons {
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .social-icons li {
      display: inline-block;
      margin: 5px;
  }

  .social-icons li img {
      width: 35px;
      margin: 0 10px;
  }

  .social-icons a {
      color: #333;
      text-decoration: none;
      margin: 0 right;
  }

  .social-icons a:hover {
       color: #007bff;
  }

  .fab {
      font-size: 24px;
  }

  .footer-container {
    width: 1150px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(62, 62, 62);
}

.footer-container p {
    font-size: 15px;
}