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

    body {
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      color: #222;
      background-color: #f7f9fc;
    }

    .contenedor {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero {
      background: linear-gradient(135deg, #0d3b66, #145da0);
      color: #fff;
      padding: 70px 20px;
      text-align: center;
    }

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

    .hero p {
      max-width: 850px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    .seccion {
      padding: 60px 0;
    }

    .bloque {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 60px;
      background: #fff;
      padding: 30px;
      border-radius: 14px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .bloque:last-child {
      margin-bottom: 0;
    }

    .bloque.imagen-derecha {
      flex-direction: row-reverse;
    }

    .bloque-imagen,
    .bloque-texto {
      width: 50%;
    }

    .bloque-imagen img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      border-radius: 12px;
      display: block;
    }

    .bloque-texto h2 {
      font-size: 2rem;
      color: #0d3b66;
      margin-bottom: 18px;
    }

    .bloque-texto p {
      margin-bottom: 16px;
      font-size: 1.02rem;
      color: #444;
    }

    .bloque-texto ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .bloque-texto ul li {
      margin-bottom: 10px;
      color: #444;
    }

    .boton {
      display: inline-block;
      background-color: #145da0;
      color: #fff;
      text-decoration: none;
      padding: 12px 22px;
      border-radius: 8px;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .boton:hover {
      background-color: #0d3b66;
    }

            .footer {
            background-color: #1c4c74;
            color: #fff;
            text-align: center;
            padding: 25px 15px;
            margin-top: 40px;
            }
            .footer a,
        .footer a:visited,
        .footer a:hover,
        .footer a:active,
        .footer a:focus {
        color: #ffffff;
        text-decoration: none;
        }
    @media (max-width: 900px) {
      .bloque,
      .bloque.imagen-derecha {
        flex-direction: column;
      }

      .bloque-imagen,
      .bloque-texto {
        width: 100%;
      }

      .bloque-imagen img {
        height: 280px;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .bloque-texto h2 {
        font-size: 1.7rem;
      }
    }

    @media (max-width: 600px) {
      .hero {
        padding: 50px 15px;
      }

      .hero h1 {
        font-size: 1.7rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .bloque {
        padding: 20px;
      }

      .bloque-imagen img {
        height: 220px;
      }
    }
    .cabecera-empresa {
  width: 100%;
  background: #ffffff;
  border-bottom: 3px solid #1f4e79;
  padding: 15px 30px;
}

header.hero {
  padding: 0 20px;
}

.cabecera-contenido {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 160px;
}

.logo-empresa {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 20px;
}

.logo-empresa img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.boton-contratar {
    display: inline-block;
    background-color: orange;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .boton-contratar:hover {
        background-color: #e69500;
        transform: scale(1.05);
    }
